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

{
    "meta": {
        "count": 27030,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1170&registration__remaining_waiting_list_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1168&registration__remaining_waiting_list_capacity__isnull=true"
    },
    "data": [
        {
            "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>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "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?"
            },
            "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_"
            },
            "name": {
                "fi": "Sanapaja / Wordshop",
                "sv": "Sanapaja / Wordshop",
                "en": "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>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "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"
            },
            "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"
            },
            "name": {
                "fi": "HOW-radio | Global Club Nights – Helsinki Open Waves",
                "sv": "HOW-radio | Global Club Nights",
                "en": "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>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "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."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0863C8ECB2EBBEDDBFF109EE9C0361F0/Kuolleet_lehdet_7_"
            },
            "name": {
                "fi": "Kuolleet lehdet (7) – Kino Helios"
            },
            "@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>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "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."
            },
            "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_"
            },
            "name": {
                "fi": "Dancing queen (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Dancing queen (2023) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "@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>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "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."
            },
            "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"
            },
            "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"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60926/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60288",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4241,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:11.441855Z",
                    "last_modified_time": "2023-09-07T14:22:11.441877Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734658.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4241/?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:11.283845Z",
            "last_modified_time": "2023-11-14T06:13:07.659980Z",
            "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>Vaahteramatka on esityksellinen seikkailuretki lähiluonnossa 1.–2.-luokkalaisille.</p><p>Vaahteramatka on luonnossa kiertävä elämyksellinen esitys, joka herättää lapsen mielikuvituksen ja tuo uudenlaisia näkökulmia lähiluontoon. Vaahteramatka tukee lapsen luontosuhteen kehittymistä ja osallisuutta taiteeseen konkreettisella tavalla. Teoksen kulkeva muoto osallistaa lapset liikkumaan esityksen mukana.<br> <br>Säävaraus: Vaahteramatka toteutuu myös sadesäällä, mutta kovalla myrskyllä se joudutaan perumaan.<br> <br>Suunnittelu, ohjaus ja toteutus: Hanna Pihko ja Riikka Siirala<br>Musiikki: Charlotta Hagfors<br>Tuotanto: OSIRIS teatteri<br>Valokuvat: Ahmed Alalousi<br>Tukijat: Helsingin kaupunki ja Taiteen edistämiskeskus<br> <br>Kohderyhmä: 1.–2.-luokat<br>Paikka: Matokallion metsä<br>kesto: 60–75 min<br>kieli: suomi<br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Vaahteramatka on esityksellinen seikkailuretki lähiluonnossa 1.–2.-luokkalaisille."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/08E188A6DD66B5FE53174757658730AE/Osiris-teatteri_Vaahteramatka_"
            },
            "name": {
                "fi": "Osiris-teatteri: Vaahteramatka"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60288/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60409",
            "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": 4239,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:10.263740Z",
                    "last_modified_time": "2023-09-07T14:22:10.263769Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732129.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4239/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:09.571010Z",
            "last_modified_time": "2023-11-14T06:13:07.579002Z",
            "date_published": null,
            "start_time": "2023-09-20T05:00:00Z",
            "end_time": "2023-09-20T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "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>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "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."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3312EB35A96CBD12276D8BD0C294912F/Queer-lintukavelyt",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3312EB35A96CBD12276D8BD0C294912F/Queer-fagelpromenader",
                "en": "http://www.kanneltalo.fi/en/events/event/3312EB35A96CBD12276D8BD0C294912F/Queer_Bird_Walk"
            },
            "name": {
                "fi": "Queer-lintukävelyt",
                "sv": "Queer-fågelpromenader",
                "en": "Queer Bird Walk"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60409/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60747",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": "10 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kuolleet-lehdet-vuotalo-17586295/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4237,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:08.254660Z",
                    "last_modified_time": "2023-09-07T14:22:08.254692Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734796.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4237/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:08.097234Z",
            "last_modified_time": "2023-11-14T06:13:07.504384Z",
            "date_published": null,
            "start_time": "2023-09-19T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "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. 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><i>“Klassista Aki Kaurismäkeä parhaimmillaan. Hohtaa kuin jalokivi”</i> –David Rooney, The Hollywood Reporter</p><p><i>”Elokuva, jolla on suuri sydän”</i> –Peter Bradshaw, The Guardian</p><p><i>”Kauniisti näytelty elokuva. Hohkaa lämpöä”</i> –Jonathan Romney, Screen Daily</p><p><i>”Pöysti ja Vatanen ovat unelmakaksikko”</i> –Martyn Conterio, The London Economic</p><p><i>”Todellinen helmi”</i> –Pete Hammond, Deadline</p><p>Kesto: 1 t 21 min<br>Liput: 10 € / lippu.fi<br>Ikäraja: K7</p><p>Ohjaaja: Aki Kaurismäki<br>Pääosissa: Alma Pöysti, Jussi Vatanen, Janne Hyytiäinen, Nuppu Koivu, Matti Onnismaa, Martti Suosalo, Sakari Kuosmanen, Alina Tomnikov</p><p>Ensi-ilta: 15.9.2023</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "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."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F26C6743160FCAE3E46E5A4A5011A0E8/Kuolleet_lehdet_7_"
            },
            "name": {
                "fi": "Kuolleet lehdet (7) – Ensi-iltaviikon elokuva"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60747/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60455",
            "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-2/?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": 4236,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:07.885944Z",
                    "last_modified_time": "2023-09-07T14:22:07.885967Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725180.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4236/?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:07.736595Z",
            "last_modified_time": "2023-11-14T06:13:07.424158Z",
            "date_published": null,
            "start_time": "2023-09-19T10:30:00Z",
            "end_time": "2023-09-19T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "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>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "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."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/60A0D9921A811051580CFDACC36D5707/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers",
                "sv": "http://www.caisa.fi/sv/evenemang/event/60A0D9921A811051580CFDACC36D5707/Open_Art_Studio_for_Toddlers-verkstader_",
                "en": "http://www.caisa.fi/en/events/event/60A0D9921A811051580CFDACC36D5707/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers"
            },
            "name": {
                "fi": "Taidetta taaperoille – Open Art Studio for Toddlers",
                "sv": "Open Art Studio for Toddlers-verkstäder",
                "en": "Taidetta taaperoille – Open Art Studio for Toddlers"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60455/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60287",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4235,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:07.476348Z",
                    "last_modified_time": "2023-09-07T14:22:07.476370Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734656.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4235/?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:06.963712Z",
            "last_modified_time": "2023-11-14T06:13:07.350701Z",
            "date_published": null,
            "start_time": "2023-09-19T09: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>Vaahteramatka on esityksellinen seikkailuretki lähiluonnossa 1.–2.-luokkalaisille.</p><p>Vaahteramatka on luonnossa kiertävä elämyksellinen esitys, joka herättää lapsen mielikuvituksen ja tuo uudenlaisia näkökulmia lähiluontoon. Vaahteramatka tukee lapsen luontosuhteen kehittymistä ja osallisuutta taiteeseen konkreettisella tavalla. Teoksen kulkeva muoto osallistaa lapset liikkumaan esityksen mukana.<br> <br>Säävaraus: Vaahteramatka toteutuu myös sadesäällä, mutta kovalla myrskyllä se joudutaan perumaan.<br> <br>Suunnittelu, ohjaus ja toteutus: Hanna Pihko ja Riikka Siirala<br>Musiikki: Charlotta Hagfors<br>Tuotanto: OSIRIS teatteri<br>Valokuvat: Ahmed Alalousi<br>Tukijat: Helsingin kaupunki ja Taiteen edistämiskeskus<br> <br>Kohderyhmä: 1.–2.-luokat<br>Paikka: Matokallion metsä<br>kesto: 60–75 min<br>kieli: suomi<br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Vaahteramatka (Lönnresan) är en kreativ äventyrsutflykt för elever i årsklasserna 1 och 2.</p><p>Vaahteramatka (Lönnresan) är en upplevelsebaserad föreställning som sker i naturen och som väcker barnets fantasi och ger nya synsätt på naturen i närheten. Vaahteramatka stöder utvecklingen av barnets förhållande till naturen och delaktigheten i konst på ett konkret sätt. Verkets vandrande form inkluderar barnen i att röra sig i takt med föreställningen. Vaahteramatka (Lönnresan) ordnas även om det regnar, men om det är storm ställs den in.</p><p>Plats: Matokallioskogen<br>På finska</p>",
                "en": "<p>The Maple Journey is an educational adventure in local nature for 1st and 2nd graders.</p><p>The Maple Journey is an exciting performance in nature, which awakens the child’s imagination and brings new perspectives to the local nature. The Maple Journey supports the development of children’s relationship with nature and their participation in art in a concrete way. The form of the work engages children to move with the performance. The Maple Journey will also be performed in rainy weather, but it will have to be cancelled if there is heavy rain.</p><p>Location: Matokallio forest<br>In Finnish</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Vaahteramatka on esityksellinen seikkailuretki lähiluonnossa 1.–2.-luokkalaisille.",
                "sv": "Vaahteramatka (Lönnresan) är en kreativ äventyrsutflykt för elever i årsklasserna 1 och 2.",
                "en": "The Maple Journey is an educational adventure in local nature for 1st and 2nd graders."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4C5698D338AE7891E90C46C092C23F61/Osiris-teatteri_Vaahteramatka",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4C5698D338AE7891E90C46C092C23F61/Osiris-teatern_Vaahteramatka_",
                "en": "http://www.stoa.fi/en/events/event/4C5698D338AE7891E90C46C092C23F61/Osiris_Theatre_The_Maple_Journey_"
            },
            "name": {
                "fi": "Osiris-teatteri: Vaahteramatka",
                "sv": "Osiris-teatern: Vaahteramatka",
                "en": "Osiris Theatre: The Maple Journey"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60287/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59904",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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: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": 4234,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:06.233333Z",
                    "last_modified_time": "2023-09-07T14:22:06.233359Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731095.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4234/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:05.465212Z",
            "last_modified_time": "2023-11-14T06:13:07.274646Z",
            "date_published": null,
            "start_time": "2023-09-19T07:30:00Z",
            "end_time": "2023-09-19T08:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan, sään mukaan voidaan tanssia myös Stoan aukiolla.</p><p>Aiempaa osaamista et tarvitse eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona. Vapaa pääsy.      <br>  <br>Ohjauskieli: suomi</p>",
                "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas entré.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska   <br>Fritt inträde.</p>",
                "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish  <br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan, sään mukaan voidaan tanssia myös Stoan aukiolla.",
                "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas entré.",
                "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/F0E1A691A7379AE5665A4C72FCAE9AD8/Aamupaivatanssit",
                "sv": "http://www.stoa.fi/sv/evenemang/event/F0E1A691A7379AE5665A4C72FCAE9AD8/Formiddagsdans",
                "en": "http://www.stoa.fi/en/events/event/F0E1A691A7379AE5665A4C72FCAE9AD8/Dances_in_the_Morning"
            },
            "name": {
                "fi": "Aamupäivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa",
                "sv": "Förmiddagsdans",
                "en": "Dances in the Morning"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59904/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60286",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4233,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:05.055573Z",
                    "last_modified_time": "2023-09-07T14:22:05.055593Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734655.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4233/?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:04.900687Z",
            "last_modified_time": "2023-11-14T06:13:07.194024Z",
            "date_published": null,
            "start_time": "2023-09-19T06: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>Vaahteramatka on esityksellinen seikkailuretki lähiluonnossa 1.–2.-luokkalaisille.</p><p>Vaahteramatka on luonnossa kiertävä elämyksellinen esitys, joka herättää lapsen mielikuvituksen ja tuo uudenlaisia näkökulmia lähiluontoon. Vaahteramatka tukee lapsen luontosuhteen kehittymistä ja osallisuutta taiteeseen konkreettisella tavalla. Teoksen kulkeva muoto osallistaa lapset liikkumaan esityksen mukana.<br> <br>Säävaraus: Vaahteramatka toteutuu myös sadesäällä, mutta kovalla myrskyllä se joudutaan perumaan.<br> <br>Suunnittelu, ohjaus ja toteutus: Hanna Pihko ja Riikka Siirala<br>Musiikki: Charlotta Hagfors<br>Tuotanto: OSIRIS teatteri<br>Valokuvat: Ahmed Alalousi<br>Tukijat: Helsingin kaupunki ja Taiteen edistämiskeskus<br> <br>Kohderyhmä: 1.–2.-luokat<br>Paikka: Matokallion metsä<br>kesto: 60–75 min<br>kieli: suomi<br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Vaahteramatka (Lönnresan) är en kreativ äventyrsutflykt för elever i årsklasserna 1 och 2.</p><p>Vaahteramatka (Lönnresan) är en upplevelsebaserad föreställning som sker i naturen och som väcker barnets fantasi och ger nya synsätt på naturen i närheten. Vaahteramatka stöder utvecklingen av barnets förhållande till naturen och delaktigheten i konst på ett konkret sätt. Verkets vandrande form inkluderar barnen i att röra sig i takt med föreställningen. Vaahteramatka (Lönnresan) ordnas även om det regnar, men om det är storm ställs den in.</p><p>Plats: Matokallioskogen<br>På finska</p>",
                "en": "<p>The Maple Journey is an educational adventure in local nature for 1st and 2nd graders.</p><p>The Maple Journey is an exciting performance in nature, which awakens the child’s imagination and brings new perspectives to the local nature. The Maple Journey supports the development of children’s relationship with nature and their participation in art in a concrete way. The form of the work engages children to move with the performance. The Maple Journey will also be performed in rainy weather, but it will have to be cancelled if there is heavy rain.</p><p>Location: Matokallio forest<br>In Finnish</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Vaahteramatka on esityksellinen seikkailuretki lähiluonnossa 1.–2.-luokkalaisille.",
                "sv": "Vaahteramatka (Lönnresan) är en kreativ äventyrsutflykt för elever i årsklasserna 1 och 2.",
                "en": "The Maple Journey is an educational adventure in local nature for 1st and 2nd graders."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B1FBADA9DEF0399EF4697E406249FC22/Osiris-teatteri_Vaahteramatka",
                "sv": "http://www.stoa.fi/sv/evenemang/event/B1FBADA9DEF0399EF4697E406249FC22/Osiris-teatern_Vaahteramatka_",
                "en": "http://www.stoa.fi/en/events/event/B1FBADA9DEF0399EF4697E406249FC22/Osiris_Theatre_The_Maple_Journey_"
            },
            "name": {
                "fi": "Osiris-teatteri: Vaahteramatka",
                "sv": "Osiris-teatern: Vaahteramatka",
                "en": "Osiris Theatre: The Maple Journey"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60286/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59902",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?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": 4232,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:04.675186Z",
                    "last_modified_time": "2023-09-07T14:22:04.675208Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731045.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4232/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:22:04.522258Z",
            "last_modified_time": "2023-11-14T06:13:07.115795Z",
            "date_published": null,
            "start_time": "2023-09-19",
            "end_time": "2023-10-12",
            "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>Annantalon toisen kerroksen pohjoinen galleria muuttuu elokuvasaliksi, jossa nähdään animaatioita, videoita ja lyhytelokuvaa.</p><p>Perinteistä sekä kokeellista, uutta ja vanhaa sopivassa suhteessa. Esillä oleva kokoelma koostuu Annantalon oppilaiden tekemistä videoista vuosilta 2020–2023.</p><p>Yhden näytöskierroksen kokonaiskesto on noin 30 minuuttia. Videot pyörivät nonstoppina galleriatilassa.</p><p>Ota mukava asento sohvalta ja nauti!</p><p>Paikka: pohjoinen lasigalleria<br>Kielet: Suomi / sanaton<br>Kaikenikäisille</p><p>Elävät kuvat 2 Annantalossa 19.9.2023–12.10.2023 ja 8.11.2023–20.1.2024.</p>",
                "sv": "<p>Det norra galleriet på andra våningen i Annegården förvandlas till biosalong, där vi får se animationer, videor och en kortfilmer.</p><p>En lagom blandning av traditionellt och experimentellt, nytt och gammalt. Den utställda samlingen består av videor skapade av Annegårdens elever från åren 2020–2023.</p><p>Den totala längden på en utställningsrunda är cirka 30 minuter. Videorna rullar nonstop i gallerilokalen.</p><p>Inta en bekväm ställning på soffan och njut!</p><p>Språk: finska / ordlös<br>För alla åldrar</p>",
                "en": "<p>The northern gallery on the second floor of Annantalo is transformed into a cinema presenting animations, videos and short films.</p><p>It is an ecletic mix of traditional and experimental, new and old. The collection on display consists of videos made by the students of Annantalo between 2020 and 2023.</p><p>The total duration is approximately 30 minutes. The videos run non-stop in the gallery.</p><p>Take a seat on the couch, lie back and enjoy!</p><p>Language: Finnish / non-verbal<br>For all ages</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Annantalon toisen kerroksen pohjoinen galleria muuttuu elokuvasaliksi, jossa nähdään animaatioita, videoita ja lyhytelokuvaa.",
                "sv": "Det norra galleriet på andra våningen i Annegården förvandlas till biosalong, där vi får se animationer, videor och en kortfilmer.",
                "en": "The northern gallery on the second floor of Annantalo is transformed into a cinema presenting animations, videos and short films."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CC8CD4398C1077C994FA26B4213081EF/Annantalo_valkokankaalla_Elavat_kuvat_2",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CC8CD4398C1077C994FA26B4213081EF/Pa_vita_duken_i_Annegarden_Levande_bilder_2",
                "en": "http://www.annantalo.fi/en/events/event/CC8CD4398C1077C994FA26B4213081EF/Annantalo_on_the_Big_Screen_Moving_Pictures_2"
            },
            "name": {
                "fi": "Annantalo valkokankaalla: Elävät kuvat 2",
                "sv": "På vita duken i Annegården: Levande bilder 2",
                "en": "Annantalo on the Big Screen: Moving Pictures 2"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59902/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60440",
            "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": "15 € / 20 €",
                        "sv": "15 € / 20 €",
                        "en": "15 € / 20 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/vapaat-aeaenet-kiertue-2023-malmitalo-17268545/",
                        "sv": "https://www.lippu.fi/event/vapaat-aeaenet-kiertue-2023-malmitalo-17268545/",
                        "en": "https://www.lippu.fi/event/vapaat-aeaenet-kiertue-2023-malmitalo-17268545/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4231,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:04.264956Z",
                    "last_modified_time": "2023-09-07T14:22:04.264986Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728995.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4231/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:04.095344Z",
            "last_modified_time": "2023-11-14T06:13:07.041782Z",
            "date_published": null,
            "start_time": "2023-09-18T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Vapaat äänet -kiertue tarjoilee syyskuun lopussa kansainvälisen myräkän uutta jazzia ja improvisaatiota, kun tien päälle lähtevät amerikkalais-suomalainen Sir Garrison ja ranskalainen The Litany of The Peaks.</p><p>--</p><p>Syntymästään alkaen Sir Garrison on etsinyt ääntä, jota voisivat kutsua omakseen.</p><p>\"Numerossa kolme on voimaa,\" sanoo basisti Nathan Francis. \"Soittaessamme jokainen tukee toistaan synnyttäen hyvin persoonallisen ja aistittavan keskustelun bändin jäsenten välillä. Musiikkimme on heijastus kunnioituksesta luontoa ja toisiamme kohtaan.\"</p><p>Trion voima on havaittavissa heidän debyyttialbumiltaan Let's Call This (2022), joka äänitettiin Konneveden syrjäisellä saarella. \"Päätimme äänittää levyn kaukaisessa paikassa luonnon äärellä, jotta äänemme vapautuisi kaupungin kiireestä ja hulinasta. Halusimme tuottaa täysin akustista ja mahdollisimman inhimillistä ja luonnonläheistä soundia,\" kertoo rumpali Okko Saastamoinen.</p><p>Sir Garrisonin musiikki on yhtyeen jäsenten säveltämää, eniten musiikista on vastannut saksofonisti Sami Leponiemi. \"Sir Garrison yhdistää meidän kaikkien yksilölliset soittotyylit. Kaikki kunnioittavat toistensa ideoita ja näin yksilöt täydentävät toisiaan tuottaen intiimin, rehellisen ja mukaansatempaavan yhteissoundin.\"</p><p>--</p><p>The Litany of the Peaks (La Litanie des Cimes) – eli huippujen litania – on viulisti Clément Janinet’n 2019 perustama akustinen trio, jossa hänen kanssaan soittavat klarinetisti Elodie Pasquier ja sellisti Bruno Ducret. Janinet’n repetitiiviselle musiikille sukua olevat sävellykset rakentuvat toisiinsa kietoutuneista rytmikudoksista, joiden lähtökohta löytyy yhtä hyvin amerikkalaisesta minimalismista kuin kansanmusiikista. Kappaleet jättävät laajasti tilaa improvisoinnille.</p><p>Kolmikko viihtyy pitkissä kaarissa ja harmonisessa mietiskelyssä leikitellen näennäisesti hitaiden tempojen kanssa. La Litanie des Cimes oli yksi vuoden 2020 arvostetun Jazz Migration -kiertueohjelman voittajista. Heidän esikoislevynsä keräsi ylistäviä arvioita ja toisen albumin julkaisee syyskuussa 2023 unkarilainen Budapest Music Center.</p><p>Viulistilegenda Didier Lockwoodin koulusta 2007 valmistunut Clément Janinet on ranskalaisen jazzkentän monipuolinen muusikko, joka on viime vuosina saanut huomiota omaperäisten yhtyeidensä ansioista, esimerkikkinä vaikkapa vuonna 2017 perustettu kvartetti O.U.R.S. (Ornette Under The Repetitive Skies). Lahjakas solisti on pitkään soittanut afrikkalaisten muusikoiden kanssa, ehkä näkyvin heistä on basisti Etienne Mbappé & The Prophets. Janinet on soittanut yli 700 konserttia 35 maissa.</p><p>--</p><p>Kiertueen yhteistuotanto: Vapaat äänet & Suomen Jazzliito</p><p>Kierteutta tukevat: AJC, Ranskan Instituutti, Centre National de la Musique, Spedidam</p><p>Tapahtuman kokonaiskesto n. 1 tunti 50 min, sis. väliaika 15 min.</p>",
                "sv": "<p>I slutet av september erbjuder Turnén Vapaat äänet en internationell storm av ny jazz och improvisationer, då amerikansk-finländaren Sir Garrison och franska The Litany of The Pekas ger sig ut på vägarna.</p><p>Sir Garrison har sedan födelsen sökt en röst som han kan kalla sin egen. Sir Garrisons musik har komponerats av bandets medlemmar. När trion spelar, respekterar de varandras idéer och på det sättet kompletterar individerna varandra och skapar på så sätt ett gemensamt intimt, ärligt och medryckande sound.</p><p>The Litany of The Peaks (La Litanie des Cimes) – det vill säga topparnas litania – är en akustisk trio som 2019 bildades av violinisten Clément Janinet, i vilken han kompas av klarinetisten Elodie Pasquier och cellisten Bruno Ducret. Kompositionerna, som Janinets repetitiva musik är släkt med, byggs upp av en rytmvävnad, vars utgångspunkt återfinns likväl i den amerikanska minimalismen som folkmusiken. Låtarna lämnar stort rum för improvisation.</p>",
                "en": "<p>At the end of September, the Free Voices Tour will offer an international storm of new jazz and improvisation as American-Finnish Sir Garrison and The Litany of the Peaks from France hit the road.</p><p>Since its inception, jazz trio Sir Garrison has been chasing a sound to call its own Sir Garrison’s music is composed by the band members. When playing, the trio members respect each other’s ideas and, in this way, the individuals complement each other to produce an intimate, honest and captivating sound together.</p><p>La Litanie des Cimes – or The Litany of the Peaks –  is an acoustic trio founded by violinist Clément Janinet in 2019, with clarinettist Elodie Pasquier and cellist Bruno Ducret. The compositions, which are reminiscent of Janinet’s repetitive music, are built of interwoven rhythmic textures that are inspired as much by American minimalism as by folk music. The compositions leave ample room for improvisation.</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Vapaat äänet -kiertue tarjoilee syyskuun lopussa kansainvälisen myräkän uutta jazzia ja improvisaatiota, kun tien päälle lähtevät amerikkalais-suomalainen Sir Garrison ja ranskalainen The Litany of The Peaks.",
                "sv": "I slutet av september erbjuder Turnén Vapaat äänet en internationell storm av ny jazz och improvisationer, då amerikansk-finländaren Sir Garrison och franska The Litany of The Pekas ger sig ut på vägarna.",
                "en": "At the end of September, the Free Voices Tour will offer an international storm of new jazz and improvisation as American-Finnish Sir Garrison and The Litany of the Peaks from France hit the road."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5E44713A6E36B7B1223C197DF089C502/Sir_Garrison_FIN_US_The_Litany_of_the_Peaks_FR_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5E44713A6E36B7B1223C197DF089C502/Sir_Garrison_FIN_US_The_Litany_of_the_Peaks_FR_",
                "en": "http://www.malmitalo.fi/en/events/event/5E44713A6E36B7B1223C197DF089C502/Sir_Garrison_FIN_US_The_Litany_of_the_Peaks_FR_a"
            },
            "name": {
                "fi": "Sir Garrison (FIN, US) + The Litany of the Peaks (FR) – Vapaat äänet -kiertue 2023",
                "sv": "Sir Garrison (FIN, US) + The Litany of the Peaks (FR)",
                "en": "Sir Garrison (FIN, US) + The Litany of the Peaks (FR)a"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60440/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60427",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "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": 4230,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:03.626681Z",
                    "last_modified_time": "2023-09-07T14:22:03.626713Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730676.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4230/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:02.962786Z",
            "last_modified_time": "2023-11-14T06:13:06.960574Z",
            "date_published": null,
            "start_time": "2023-09-18T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Suomaa (Tammi, 2022) on lumoava episodiromaani metsän voimasta ja suomalaisten elävästä luontosuhteesta, joka kannattelee meitä sukupolvesta toiseen.</p><p>Haastattelijana FM Tuija Takala</p><p>Uurna sylissään nainen saapuu hiljaiseen taloon metsän keskellä. Kun viimeinenkin nokare äidin puolukkahillosta on syöty, on tyttären vuoro olla sukunsa vanhin. Ottaa haltuun talo ja maa sen ympärillä.</p><p>Maria Turtschaninoff on suomenruotsalainen fantasiakirjailija ja freelance-toimittaja. Nykyisin Turtschaninoff asuu Karjaalla ja työskentelee vapaana kirjailijana. Hän voitti vuonna 2014 Finland Junior -palkinnon teoksellaan Maresi: Punaisen luostarin kronikoita. Vuonna 2023 Turtschaninoff sai Kiitos kirjasta -palkinnon teoksellaan Suomaa (Arvejord).</p><p>Yhteistyössä Kannelmäen kirjaston ja Työväenopiston kanssa.</p><p>Kieli: Haastattelu tehdään suomeksi, mutta kirjailijan kanssa voi käydä yleisökeskustelua myös hänen äidinkielellään ruotsiksi. <br>Vapaa pääsy<br>Kahvilan stagella</p><p>Maksuttomat maanantait on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Tutustu tapahtumiin alempaa ja käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Suomaa (Tammi, 2022) är en förtrollande episodisk roman om skogens kraft och finländarnas levande naturförhållande, som bär oss från en generation till nästa.</p><p>FM Tuija Takala som intervjuare.</p><p>Maria Turtschaninoff är en finlandssvensk fantasyförfattare och frilansjournalist. Numera bor Turtschaninoff i Karis och arbetar som frilansskribent.<br>I samarbete med Gamlas bibliotek och Arbetarinstitutet.</p><p>Intervjun hålls på finska, men det går bra om publiken vill prata med henne på hennes modersmål svenska.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Läs mer om evenemangen nedan och starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Suomaa (Tammi, 2022) is an enchanting episodic novel about the power of the forest and the Finns’ living relationship with nature that carries us from generation to generation.</p><p>FM Tuija Takala som intervjuare.</p><p>Maria Turtschaninoff är en finlandssvensk fantasyförfattare och frilansjournalist. Numera bor Turtschaninoff i Karis och arbetar som frilansskribent.<br>I samarbete med Gamlas bibliotek och Arbetarinstitutet.</p><p>Intervjun hålls på finska, men det går bra om publiken vill prata med henne på hennes modersmål svenska.</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Explore the events in further detail below and start your week with a dose of culture at Kanneltalo!</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Suomaa (Tammi, 2022) on lumoava episodiromaani metsän voimasta ja suomalaisten elävästä luontosuhteesta, joka kannattelee meitä sukupolvesta toiseen.",
                "sv": "Suomaa (Tammi, 2022) är en förtrollande episodisk roman om skogens kraft och finländarnas levande naturförhållande, som bär oss från en generation till nästa.",
                "en": "Suomaa (Tammi, 2022) is an enchanting episodic novel about the power of the forest and the Finns’ living relationship with nature that carries us from generation to generation."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/DBE592D4AEA1AE8CC71FB6B42C88564B/Kirjailijavieraana_Maria_Turtschaninoff",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/DBE592D4AEA1AE8CC71FB6B42C88564B/Maria_Turtschaninoff_ar_forfattargast",
                "en": "http://www.kanneltalo.fi/en/events/event/DBE592D4AEA1AE8CC71FB6B42C88564B/Author_Guest_Maria_Turtschaninoff"
            },
            "name": {
                "fi": "Kirjailijavieraana Maria Turtschaninoff – Maksuttomat maanantait",
                "sv": "Maria Turtschaninoff är författargäst – Konstadsfria måndagar",
                "en": "Author Guest Maria Turtschaninoff – Free Mondays"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60427/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60492",
            "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:32/?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"
                }
            ],
            "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": 4229,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:02.228873Z",
                    "last_modified_time": "2023-09-07T14:22:02.228895Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731771.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4229/?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:01.881031Z",
            "last_modified_time": "2023-11-14T06:13:06.884374Z",
            "date_published": null,
            "start_time": "2023-09-18T07:15:00Z",
            "end_time": "2023-09-18T08: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>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.<br>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>",
                "sv": "<p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>",
                "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "en": "The dance and play workshop introduces children to the world of dance through movement, music and play."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/B99C750E15998DEBC2A4C2D777CF59C2/Tanssi_ja_leikki_-tyopajat_Leikki-ikaiset",
                "sv": "http://www.caisa.fi/sv/evenemang/event/B99C750E15998DEBC2A4C2D777CF59C2/Dans_och_lek_verkstad_Barn_i_lekaldern",
                "en": "http://www.caisa.fi/en/events/event/B99C750E15998DEBC2A4C2D777CF59C2/Dance_and_play_workshops_Play-age"
            },
            "name": {
                "fi": "Tanssi ja leikki -työpajat | Leikki-ikäiset – Leikki-ikäisille (3–5 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek verkstad | Barn i lekåldern – För barn i lekåldern (3–5 år) och deras föräldrar",
                "en": "Dance and play workshops | Play-age – For play-age children (3–5 years) and their parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60492/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60480",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@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"
                }
            ],
            "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": 4228,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:01.635294Z",
                    "last_modified_time": "2023-09-07T14:22:01.635360Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731755.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4228/?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:01.482961Z",
            "last_modified_time": "2023-11-14T06:13:06.801441Z",
            "date_published": null,
            "start_time": "2023-09-18T06:15:00Z",
            "end_time": "2023-09-18T07: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>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.</p><p>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>",
                "sv": "<p>Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>",
                "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "The dance and play workshop introduces children to the world of dance through movement, music and play."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/2B967BE880C93A0F764D25251C046B5F/Tanssi_ja_leikki_-tyopaja_Taaperot",
                "sv": "http://www.caisa.fi/sv/evenemang/event/2B967BE880C93A0F764D25251C046B5F/Dans_och_lek_verkstad_Smabarn",
                "en": "http://www.caisa.fi/en/events/event/2B967BE880C93A0F764D25251C046B5F/Dance_and_play_workshops_Toddlers"
            },
            "name": {
                "fi": "Tanssi ja leikki -työpaja | Taaperot – Taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek verkstad | Småbarn – För småbarn (1–3 år) och deras föräldrar",
                "en": "Dance and play workshops / Toddlers – For toddlers (1–3 years) and their parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60480/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60901",
            "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://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4227,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:01.167054Z",
                    "last_modified_time": "2023-09-07T14:22:01.167076Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737008.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4227/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:01.000594Z",
            "last_modified_time": "2023-11-14T06:13:06.722387Z",
            "date_published": null,
            "start_time": "2023-09-17T15: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>”Olkaa hiljaa!” Yhdysvaltalaisen rock’n’roll-artisti Little Richardin tapana oli napauttaa yleisö tai juontaja hiljaiseksi kesken haastatteluiden. Little Richard (1932–2020), viralliselta nimeltään Richard Wayne Penniman, antoi äänensä kuulua tv-studioissa, hittikappaleissaan ja esiintymislavoilla, mutta myös raivatessaan mustana homoseksuaalisena artistina itselleen arvostusta ja tunnustusta yhtenä rockmusiikin merkittävimmistä vaikuttajista.</p><p>Tuottaja Lisa Cortésin ohjaamassa dokumentissa tutustutaan ristiriitaiseen ja määrittelyjä väistävään artistiin. Little Richard esiintyi itsevarmana, meikeissään ja asuissaan säteilevänä tähtenä, jonka seksuaalista energiaa sykkivät kappaleet ja esiintymiset nostivat hänet suosioon 1950-luvun lopulla. Kiihkeää elämää seurasivat jaksot, jolloin hän hylkäsi syntisenä pitämänsä rock’n’rollin ja oman seksuaalisuutensa ja etsi itseään saarnaamisesta ja gospel-musiikista.</p><p>Palkintoehdokkuuksia kerännyt, säihkyvä elokuva juhlistaa Little Richardin ainutlaatuista karismaa. Tähtipölyn vastapainona artistien ja tutkijoiden haastattelut taustoittavat Little Richardin merkitystä rockmusiikin ”alkuräjähdyksenä” sekä tienraivaajana mustille ja queer-taustaisille artisteille.</p><p>Katariina Kantola</p><p>Teema: Taiteen voima<br>Maa: Yhdysvallat<br>Ohjaus: Lisa Cortés<br>Tuotanto: Caryn Capotosto, Lisa Cortés, Robert Friedman, Liz Yale Marsh / Bungalow Media + Entertainment<br>Kesto: 101 min<br>Ikäraja: K12<br>Kieli: englanti<br>Tekstitys: suomi<br>Levittäjä: ELKE<br>Esityskopio: ELKE<br>Kuvaus: Keith Walker, Graham Willoughby<br>Leikkaus: Jake Hostetter, Nyneve Laura Minnear<br>Musiikki: Tamar-kali<br>Äänisuunnittelu: Andres E. Marthe Gonzalez</p>",
                "en": "<p>If Little Richard AKA Richard Wayne Penniman, was criminally underrated for much of his career, his legacy has burned bright since his death in May 2020. (…)</p><p>As for this doc, it does an impressive job of reminding us how much generations of rock stars, from Tom Jones to Mick Jagger, Elton John and Prince, have owed to Little Richard, and how radical his presence was in a world not yet ready to pay for his talent.</p><p>Mark Kermode, The Guardian</p><p>Mick Jagger says, point-blank: “He was everything.” John Waters, whose mustache is a deliberate “nod” to Little Richard, is voluminous on the man’s example of rebellion and breaking down walls. Billy Porter is a crucial participant as a contemporary artist, saying, “He gave you permission to be who you wanted to be.” These comments go way beyond the musical impact, which was considerable (Paul McCartney’s bloodcurdling screams began as a teenage boy’s attempt to sound like his idol). Lady Java, a 79-year-old nightclub performer and trans rights activist whose nightclub act Little Richard caught in the mid-’60s, leading to a lifelong friendship, is interviewed. She speaks of him with tenderness and shades in the nuances of Little Richard’s complicated personality.</p><p>Sheila O’Malley, RogerEbert.com</p><p>Theme: Power of Art<br>Country: United States<br>Director: Lisa Cortés<br>Production: Caryn Capotosto, Lisa Cortés, Robert Friedman, Liz Yale Marsh / Bungalow Media + Entertainment<br>Duration: 101 min<br>Age limit: K12<br>Language: English<br>Subtitles: Finnish<br>Distribution: ELKE<br>Print source: ELKE<br>Cinematography: Keith Walker, Graham Willoughby<br>Editing: Jake Hostetter, Nyneve Laura Minnear<br>Music: Tamar-kali<br>Sound: Andres E. Marthe Gonzalez</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "”Olkaa hiljaa!” Yhdysvaltalaisen rock’n’roll-artisti Little Richardin tapana oli napauttaa yleisö tai juontaja hiljaiseksi kesken haastatteluiden. Little Richard (1932–2020), viralliselta nimeltään Richard Wayne Penniman, antoi äänensä kuulua tv-studioissa, hittikappaleissaan ja esiintymislavoilla, mutta myös raivatessaan mustana homoseksuaalisena artistina itselleen arvostusta ja tunnustusta yhtenä rockmusiikin merkittävimmistä vaikuttajista."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0B016FE623F0D1D48F98BAD089FD695C/Little_Richard_I_am_everything_2023_",
                "en": "http://www.savoyteatteri.fi/en/events/event/0B016FE623F0D1D48F98BAD089FD695C/Little_Richard_I_am_everything_2023_"
            },
            "name": {
                "fi": "Little Richard: I am everything (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Little Richard: I am everything (2023) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60901/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60900",
            "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://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4226,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:00.689488Z",
                    "last_modified_time": "2023-09-07T14:22:00.689511Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737007.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4226/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:00.274148Z",
            "last_modified_time": "2023-11-14T06:13:06.637334Z",
            "date_published": null,
            "start_time": "2023-09-17T12: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>Rakkaus ja ruoka ovat Trần Anh Hùngin uusimman elokuvan teemat. Elokuva on osoitus sekä rakkaudesta ruoan valmistuksen hienouksia että elokuvakerronnan hienovaraista estetiikkaa kohtaan. Tarinan tulkkeina toimivat erinomaiset näyttelijät Juliette Binoche ja Benoît Magimel. Ohjaajan aiemmat elokuvat Cyclo (R&A 1996) ja Päivien kimallus (R&A 2001) sijoittuvat hänen synnyinmaahansa Vietnamiin, nyt hän tarttuu Marcel Rouffin 1800-luvun lopun Ranskaan sijoittuvaan romaaniin.</p><p>Elokuvan keskiössä ovat varakkaan Dodinin (Magimel) kartanon keittiö ja ruokasali. Suuren gastronomin taustalla on tietenkin nerokas kokki Eugenie (Binoche). Heitä yhdistää intohimo ruokaa ja sen valmistusta sekä toisiaan kohtaan. Eugenie on kuitenkin päättäväinen eikä suostu Dodinin kosintayrityksiin, vaan haluaa säilyttää itsenäisyytensä ja vapautensa. Eugenien sairastuttua Dodin päättää vastata kokkinsa gastronomisiin rakkaudenilmauksiin valmistamalla Eugenielle aterian taiteilijan luovuudella.</p><p>Trần Anh Hùng todella ansaitsi Cannesissa voittamansa ohjaajapalkinnon, sillä elokuvan huikeiden ruokalajien hienostuneisuuden kanssa kilpailee vain sen kerronnan herkkyys. Jokaisen aterian valmistus kuvataan nautinnollisen luontevasti, mikä vaatii todellista taituruutta.</p><p>Pekka Lanerva</p><p>Teema: Avainelokuvat<br>Maa: Ranska<br>Ohjaus: Trần Anh Hùng<br>Käsikirjoitus: Trần Anh Hùng<br>Näyttelijät: Juliette Binoche, Benoît Magimel<br>Tuotanto: Curiosa Films<br>Kesto: 145 min<br>Ikäraja: K7<br>Alkup. nimi: La passion de Dodin Bouffant<br>Kieli: ranska<br>Tekstitys: englanti<br>Levittäjä: Cinemanse<br>Esityskopio: Cinemanse<br>Kuvaus: Jonathan Ricquebourg<br>Leikkaus: Mario Battistel<br>Äänisuunnittelu: Jules Bertier, François Waledisch<br>Lavastus: Toma Baqueni<br>Pukusuunnittelu: Nathalie Leborgne<br>Maskeeraus: Noa Yehonatan</p>",
                "en": "<p>Thirty years after his first feature The Scent of Green Papaya — a film that, among other riches, lived up to the fragrant promise of its title in its lush scenes of culinary preparation — French-Vietnamese director Hùng has returned to the cinematic kitchen for a slab of outright gastronomic spectacle on the level of Babette’s Feast or Like Water for Chocolate, only more so. Food is the subject, the objective and the driving motor of this scantly plotted but utterly captivating love story set almost entirely within the confines of a French gourmet château in the late 19th century; to clarify the term “love story,” its two human principals are in love with each other, but perhaps in love with food a bit more. At the very least, they struggle to separate the two.</p><p>Guy Lodge, Variety</p><p>Where else but France, then, as the setting for the latest, and certainly one of the most appetizing, art house food porn flicks to come along in a while? Tràn Anh Hùng’s The Pot-au-Feu is a movie that captures its mouthwatering dishes like edible, gorgeously realized tableaux, combining culinary marvels with a moving tale of middle-age love.</p><p>Jordan Mintzer, The Hollywood Reporter</p><p>Theme: Spotlight Selection<br>Country: France<br>Director: Trần Anh Hùng<br>Screenplay: Trần Anh Hùng<br>Starring: Juliette Binoche, Benoît Magimel<br>Production: Curiosa Films<br>Duration: 145 min<br>Age limit: K7<br>Orig. title: La passion de Dodin Bouffant<br>Language: French<br>Subtitles: English<br>Distribution: Cinemanse<br>Print source: Cinemanse<br>Cinematography: Jonathan Ricquebourg<br>Editing: Mario Battistel<br>Sound: Jules Bertier, François Waledisch<br>Production design: Toma Baqueni<br>Costume design: Nathalie Leborgne<br>Make-up: Noa Yehonatan</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Rakkaus ja ruoka ovat Trần Anh Hùngin uusimman elokuvan teemat. Elokuva on osoitus sekä rakkaudesta ruoan valmistuksen hienouksia että elokuvakerronnan hienovaraista estetiikkaa kohtaan. Tarinan tulkkeina toimivat erinomaiset näyttelijät Juliette Binoche ja Benoît Magimel. Ohjaajan aiemmat elokuvat Cyclo (R&A 1996) ja Päivien kimallus (R&A 2001) sijoittuvat hänen synnyinmaahansa Vietnamiin, nyt hän tarttuu Marcel Rouffin 1800-luvun lopun Ranskaan sijoittuvaan romaaniin."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/565909DCACD47DA23F8CB131D96F95E6/The_pot-au-feu_2023_",
                "en": "http://www.savoyteatteri.fi/en/events/event/565909DCACD47DA23F8CB131D96F95E6/The_pot-au-feu_2023_"
            },
            "name": {
                "fi": "The pot-au-feu (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "The pot-au-feu (2023) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60900/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60899",
            "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://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4225,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:59.533634Z",
                    "last_modified_time": "2023-09-07T14:21:59.533662Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737006.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4225/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:58.869205Z",
            "last_modified_time": "2023-11-14T06:13:06.545568Z",
            "date_published": null,
            "start_time": "2023-09-17T10: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>Jokaisella on vapaus valita suhtautumisensa elämään ja vastoinkäymisiin. Vapautta päähenkilön arabiankielinen nimikin tarkoittaa.</p><p>Houria kertoo kunnianhimoisesta tanssijasta, joka siivoustyönsä lomassa haaveilee urasta Algerian kansallisbaletissa. Hänen toinen suuri haaveensa on ostaa äidilleen auto, jota varten hän kerää rahaa lyömällä vetoa öisin järjestettävissä eläintappeluissa. Kun Houria saa vihdoin tarvittavan summan kasaan, hänen peräänsä lähtee hävinnyt vedonlyöjä, joka vaatii saada rahansa takaisin. Raivostunut mies käy hänen kimppuunsa ja jättää hänet tajuttomana kadulle makaamaan. Herätessään sairaalassa Houria ei pysty enää puhumaan eikä liiemmin tanssimaankaan. Sisukas nainen kieltäytyy hylkäämästä unelmiaan ja taistelee toipuakseen. Kuntoutuksen aikana hän tapaa muita kovia kokeneita naisia, joiden kanssa hän voittaa vaikeudet. Kaunis selviytymistarina ylistää yhteistyötä.</p><p>Esikoisohjauksellaan Papicha (R&A 2019) hurmannut Mounia Meddour on kuvannut yleismaailmallisen tarinan, jossa samalla sivutaan algerialaisen yhteiskunnan ajankohtaisia kysymyksiä siirtolaisuudesta aina islamistitaistelijoiden armahduksiin. Tanssielokuvan soundtrack saattaa olla festivaalin menevin.</p><p>Omar Fasolah</p><p>Teema: African Express<br>Maa: Algeria, Belgia, Ranska<br>Ohjaus: Mounia Meddour<br>Käsikirjoitus: Mounia Meddour<br>Näyttelijät: Lyna Khoudri, Rachida Brakni, Nadia Kaci, Hilda Amira Douaouda, Meriem Medjkane<br>Tuotanto: Xavier Gens, Grégoire Gensollen, Patrick André, Mounia Meddour / The Ink Connection, High Sea Production<br>Kesto: 98 min<br>Ikäraja: K16<br>Kieli: arabia, ranska<br>Tekstitys: suomi<br>Levittäjä: Angel Films<br>Esityskopio: Angel Films<br>Kuvaus: Léo Lefèvre<br>Leikkaus: Damien Keyeux<br>Musiikki: Yasmine Meddour, Maxence Dussere<br>Äänisuunnittelu: Olivier Ronval<br>Lavastus: Chloé Cambournac<br>Pukusuunnittelu: Charlène Bouyer</p>",
                "en": "<p>An aspiring ballet dancer is forced to change the course of her life when she’s attacked on her way home one night in Houria, a drama bursting with female energy and power (…) In some ways it feels like part two of director Mounia Meddour’s notable Papicha, which won a French César for best first feature and was selected as Algeria’s 2020 Oscar submission.</p><p>Deborah Young, The Film Verdict</p><p>Meddour’s second feature film peers even further behind the vigorous snapshot of the place occupied by women (notably youngsters) in Algerian society which the director offered up in Papicha (the film-revelation of the 2019 Cannes Film Festival). Hers is an in-depth examination at the crossroads of realism and expressive symbolism, which is filtered through the body by way of dance (…)</p><p>Focusing on striking visual angles centring on the body, great camera proximity, the expressiveness of gestures (sign language) and faces (along the lines of Marie-Claude Pietragalla’s work La danse, théâtre du corps, which Houria is reading), and the intensity of the night/day opposition, Mounia Meddour delivers a touching story and offers a wonderful role to her brilliant lead actress.</p><p>Fabien Lemercier, Cineuropa</p><p>Theme: African Express<br>Country: Algeria, Belgium, France<br>Director: Mounia Meddour<br>Screenplay: Mounia Meddour<br>Starring: Lyna Khoudri, Rachida Brakni, Nadia Kaci, Hilda Amira Douaouda, Meriem Medjkane<br>Production: Xavier Gens, Grégoire Gensollen, Patrick André, Mounia Meddour / The Ink Connection, High Sea Production<br>Duration: 98 min<br>Age limit: K16<br>Language: Arabic, French<br>Subtitles: Finnish<br>Distribution: Angel Films<br>Print source: Angel Films<br>Cinematography: Léo Lefèvre<br>Editing: Damien Keyeux<br>Music: Yasmine Meddour, Maxence Dussere<br>Sound: Olivier Ronval<br>Production design: Chloé Cambournac<br>Costume design: Charlène Bouyer</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Jokaisella on vapaus valita suhtautumisensa elämään ja vastoinkäymisiin. Vapautta päähenkilön arabiankielinen nimikin tarkoittaa."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E5EC4471641F92F0D5AA69B8BF6C81E8/Houria_2022_",
                "en": "http://www.savoyteatteri.fi/en/events/event/E5EC4471641F92F0D5AA69B8BF6C81E8/Houria_2022_"
            },
            "name": {
                "fi": "Houria (2022) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Houria (2022) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60899/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}