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

{
    "meta": {
        "count": 27579,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=606",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=604"
    },
    "data": [
        {
            "id": "kulke:63138",
            "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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11720,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-11T12:13:51.395455Z",
                    "last_modified_time": "2024-03-11T12:13:51.395476Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744646.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11720/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-11T12:13:51.366420Z",
            "last_modified_time": "2024-04-05T17:14:00.982194Z",
            "date_published": null,
            "start_time": "2024-04-07T10:00:00Z",
            "end_time": "2024-04-07T13: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Aistit avoinna on oma yksityinen tapahtuma autisminkirjon perheille, jolloin Annantalossa ei ole muuta toimintaa.",
                "sv": "Öppna sinnen är ett privat evenemang för autismspektrumfamiljer som anordnas då inget annan verksamhet finns på Annegården.",
                "en": "Aistit avoinna is a private event for families with children on the autism spectrum, during which Annantalo is free of any other activities."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/11C291B6536AEBCEDC8C3B36A357C8D1/Aistit_avoinna",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/11C291B6536AEBCEDC8C3B36A357C8D1/Oppna_sinnen",
                "en": "http://www.annantalo.fi/en/events/event/11C291B6536AEBCEDC8C3B36A357C8D1/Aistit_avoinna"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Aistit avoinna – Tapahtuma autisminkirjon perheille",
                "sv": "Öppna sinnen – Evenemang för autismspektrumfamiljer",
                "en": "Aistit avoinna – An event for families with children on the spectrum"
            },
            "description": {
                "fi": "<p>Aistit avoinna on oma yksityinen tapahtuma autisminkirjon perheille, jolloin Annantalossa ei ole muuta toimintaa.</p><p>Päivän ohjelma on suunniteltu autismikirjon näkökulmasta autismiystävälliseksi. Pehmeä pilvilinna -aistitilassa rentoudutaan rauhoittavissa äänimaisemissa ja ihmetellään valojen loistetta. Kyllä ja Ei -työpajassa tehdään omat kyllä- ja ei-viirit. Grafiikkapajassa kokeillaan grafiikan tekemistä ja majahuoneessa voi rentoutua ja rakennella majoja. Kuvataidepajassa rakennellaan oma eläin.</p><p>Tapahtumaan voi tulla klo 13 alkaen omaan tahtiin.</p><p>Tapahtuma on maksuton.</p><p>Tapahtumassa jokaisella lapsella tulee olla saattaja tai läheinen mukana. Ala- tai yläikärajaa ei osallistujilla ole!</p><p><b>Ilmoittautuminen tapahtumaan</b> https://link.webropol.com/ep/aistitavoinna</p><p>Paikka: Annantalo, Annankatu 30, Helsinki</p><p>Tapahtuman järjestävät yhteistyössä Lasten ja nuorten taidekeskus Annantalo, Autismiliitto, Autismiyhdistys PAUT ry ja Autismisäätiö.</p><p><b>Tarkemmat tiedot työpajoista</b></p><p><b>Aistitila: Pehmeä pilvilinna</b></p><p>Koko perheen ihanan pehmoinen hetki! Tuikkivat tähdet vilkuttaa, massua vähän hipsuttaa!  <br>Pehmeä Pilvilinna on pörröisen pehmoinen aistitila! Loikoillaan värikkäillä pilvenhattaroilla, kuunnellaan suloisia sointuja ja unelmoidaan tuikkivista tähdistä!</p><p>Rentoudutaan sinisen rauhoittavissa äänimaisemissa ja ihmetellään valojen loistetta. Kietoudu lämpöisen pörröiseen peittoon ja kellahda hallaharsovuorelle. Osallistu juuri omalla tavallasi! Harsoaaltojen alla voi koko perhe köllötellä. Ihanaa, tervetuloa koko perheen yhteiselle paussille!</p><p>Lipukkeita Aistitilaan voi tulla nappaamaan tilan ulkopuolelta koko tapahtuman ajan niin kauan kuin niitä riittää. 30 min slotit klo 13, 13.30, 14, 14.30, 15.00 ja 15.30.</p><p><b>Grafiikan paja</b></p><p>Työpajassa kokeilemme helppoa grafiikkaa. Grafiikassa kuva siirretään paperille painolaatalta. Painolaatalle levitämme värin, johon piirrämme kuvan. Painamme laattaan piirretyn kuvan paperille. Tätä kutsutaan vedostamiseksi. Paperilla kuva onkin peilikuvana.</p><p><b>KYLLÄ ja EI -työpaja</b></p><p>On tärkeää, että uskaltaa sanoa ”kyllä”. Yhtä tärkeää on, että uskaltaa joskus sanoa ”ei”. ”Kyllä” ja ”ei” vuorottelevat. Ne eivät voi olla yhtä aikaa. Se olisi sekavaa.</p><p>Kuva2-luokassa teemme kaksi viiriä. Toinen on ”kyllä” ja toinen on ”ei”. Kokeilemme, voiko viireillä ohjata, miten tilassa kuljetaan.</p><p>Sitten voit käyttää viirejä muuallakin.</p><p><b>Pieniä siivekkäitä</b></p><p>Työpajassa ideoimme ja käsin rakennamme pieniä lentokykyisiä eläimiä, kuten kolibreja, lepakoita ja perhosia. Rakentelumateriaaleina käytämme mm. aaltopahvia, puutikkuja, askartelupunosta, puuhelmiä, huopakangasta, muovailuvahaa, metallilankaa ja siimaa.</p><p>Osallistujamäärä pajassa on rajattu, jolloin sen ohjaajat pystyvät tarjoamaan henkilökohtaisempaa apua osallistujille.</p><p>Työpajan ohjaavat Pohjois-Helsingin kuvataidekoulun opettajat Elina Gyldén ja Aleksi Marjamaa.</p><p><b>Rauhahuone</b><br>Huone rauhoittumiselle ja aistilelujen kokeilemiselle.</p><p><b>Zen Tangle -taidetyöpaja</b><br>Noin 20 minuutin mittaisia taidetuokioita.</p>",
                "sv": "<p>Öppna sinnen är ett privat evenemang för autismspektrumfamiljer som anordnas då inget annan verksamhet finns på Annegården.</p><p>Dagsprogrammet har planerats autismvänligt ur autismspektrets synvinkel. I sinnesutrymmet Mjuka luftslottet slappnar vi av i lugnande ljudlandskap och förundras över ljusets glimmer. I Ja och Nej-workshoppen lagar vi egna ja- och nej-vimplar. I grafikworkshoppen prövar vi på att göra grafik, och i kojrummet kan vi slappna av och bygga kojor. Överraskningsprogram ingår också!</p><p>Evenemanget har ingen inträdesavgift.</p><p>Varje barn ska ha en ledsagare eller närstående person med sig på evenemanget. Det finns ingen nedre eller övre åldersgräns för deltagarna!</p><p>Anmäl dig till evenemanget på: https://link.webropol.com/ep/aistitavoinna</p><p>Mer exakta uppgifter om workshopparna:</p><p><b>Sinnesutrymmet: Mjuka luftslottet</b><br>En underbart mjuk lek för hela familjen! Glimmande stjärnor blinkar, det trippar lätt på magen! <br>Mjuka luftslottet är ett mjukt och fluffigt sinnesutrymme! Vi ligger och gonar oss på färgglada molntappar,<br>lyssnar på sköna toner och drömmer om glimmande stjärnor!<br>Vi slappnar av i lugnande ljudlandskap och förundras över ljusets glimmer. Svep in dig i ett varmt och mjukt täcke och tumla ner på det frostiga florberget. Delta på dina egna villkor! Hela familjen kan ligga och dra sig under florvågorna. Härligt, välkommen med på en gemensam paus för hela familjen!</p><p>Du kan hämta kuponger till Sinnesutrymmet utanför utrymmet under hela evenemanget så länge de räcker till. Tider på 30 min kl. 13, 13.30, 14, 14.30, 15.00 och 15.30.</p><p><b>Ja och Nej-workshop</b><br>Att våga säga \"ja\" är viktigt. Det är lika viktigt att ibland våga säga \"nej\". ”Ja” och ”nej” turas om. De finns inte samtidigt. Det vore krångligt.<br>I utrymmet Kuva2 gör vi två vimplar. Den ena är ”ja” och den andra är ”nej”.<br>I utrymmet Kuva3 prövar vi, om vimplarna kan styra, hur vi går i rummet.<br>Sen kan du använda vimplarna i andra sammanhang.</p><p><b>Grafikworkshop</b><br>I workshoppen prövar vi på enkel grafik. Grafik är överföring av en bild från en tryckplatta på papper. Vi sprider ut färg på tryckplattan och ritar en bild i färgen. Vi trycker bilden som har ritats på plattan på ett papper. Detta kallas för provtryckning. På pappret syns bilden som spegelbild.</p><p><b>Små och bevingade djur</b><br>I workshoppen kommer vi med idéer till och bygger små djur som kan flyga, exempelvis kolibrier, fladdermöss och fjärilar. Som byggmaterial använder vi bland annat wellpapp, trästickor, hobbysnoddar, träpärlor, filttyg, modellera, metalltråd och metrev.<br>Antalet deltagare i workshoppen är begränsat så att handledarna ska kunna ge deltagarna mer personlig hjälp.</p><p>Workshoppen dras av Elina Gyldén och Aleksi Marjamaa som är lärare vid Pohjois-Helsingin kuvataidekoulu.</p><p>Evenemanget ordnas genom samarbete mellan Konstcentret för barn och unga Annegården, Autismförbundet, Autismiyhdistys PAUT ry och Autismisäätiö.</p>",
                "en": "<p>Aistit avoinna is a private event for families with children on the autism spectrum, during which Annantalo is free of any other activities.</p><p>The programme is designed to be friendly for people on the spectrum. Pehmeä pilvilinna is a space for the senses to relax amongst a calming soundscape and soft lights. At the Yes! No! workshop, you get to make your own Yes and No flags. The print graphics workshop lets you try out creating your own prints, and in the hut room, you can relax and build your own hut. Surprise programme included!</p><p>The event is free of charge.</p><p>Every attending child must be accompanied by an adult. There is no age limit for participants!</p><p>Sign-up for the event: https://link.webropol.com/ep/aistitavoinna</p><p><b>Workshop details</b></p><p><b>Sensory space: Pehmeä pilvilinna</b><br>A moment as soft as the clouds for the whole family! Twinkling stars and soft touches on your tummy!</p><p>Pehmeä pilvilinna is a soft and fuzzy sensory space! Lie about on colourful clouds, listen to sweet sounds and dream about twinkling stars!</p><p>Relax in a calm, blue soundscape and gaze at the soft lights. Wrap up in a fuzzy blanket and settle down on a soft pile of cotton cloud fluff. Take part in your own way! There’s room for the whole family under the wavy veils. Come, take a wonderful break together!</p><p>Get your tickets for the sensory space outside the room during the event. Limited availability. 30-minute slots at 1 pm, 1:30 pm, 2 pm, 2:30 pm, 3 pm and 3:30 pm.</p><p><b>Print graphics workshop</b><br>Try out simple print graphics in our workshop. In print graphics, you transfer an image to paper from a plate. The plate has a drawn image, which is then covered with paint. The image on the plate is then pressed on paper. We call this printing. The image on paper will be mirrored.</p><p><b>Pieniä siivekkäitä</b><br>In this workshop, we will come up with and build by hand small flying animals, such as hummingbirds, bats and butterflies. The materials include corrugated cardboard, wood sticks, craft weaves, wooden beads, felt, moulding wax, metal wire and line.<br>Participation is limited in order for the instructors to provide personal assistance for the participants.<br>The workshop instructors are Art School of Northern Helsinki teachers Elina Gyldén and Aleksi Marjamaa.</p><p><b>Yes! No! workshop</b><br>Dare to say \"yes\" is important. It is equally important to sometimes dare to say \"no”. \"Yes\" and \"no\" take turns. They do not exist at the same time. It would be complicated.<br>In the space Kuva2 we make two flags. Then one is \"yes\" and the other is \"no\".<br>In the space Kuva3, we test whether the flags can guide how we walk in the room.<br>You can then use the flags elsewhere.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63138/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59583",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/elvis-concert/",
                        "sv": "https://www.lippu.fi/artist/elvis-concert/",
                        "en": "https://www.lippu.fi/artist/elvis-concert/"
                    },
                    "price": {
                        "fi": "39,50/28,50/22,50 €",
                        "sv": "39,50/28,50/22,50 €",
                        "en": "39,50/28,50/22,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4673,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:45.251026Z",
                    "last_modified_time": "2024-02-06T13:23:31.974409Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729064.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4673/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:45.097388Z",
            "last_modified_time": "2024-04-05T17:14:00.929204Z",
            "date_published": null,
            "start_time": "2024-04-06T16: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,
            "provider_contact_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2F088EB3EC081A09CAE38A74D6CBD159/The_Elvis_Concert_2024_USA_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/2F088EB3EC081A09CAE38A74D6CBD159/The_Elvis_Concert_2024_USA_",
                "en": "http://www.savoyteatteri.fi/en/events/event/2F088EB3EC081A09CAE38A74D6CBD159/The_Elvis_Concert_2024_USA_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "The Elvis Concert 2024 (USA) – Loppuunmyyty! / Sold out!",
                "sv": "The Elvis Concert 2024 (USA) – Fullbokat!",
                "en": "The Elvis Concert 2024 (USA) – Sold out!"
            },
            "description": {
                "fi": "<p>Elviksen legenda elää tänä päivänä vahvemmin kuin koskaan. Uuden elokuvan ansiosta uudet sukupolvet löytävät hänen musiikkinsa. Kappaleet kuten ‘Suspicious Minds’, ‘If I Can Dream’ ja ‘Unchained Melody’ löytävät jälleen kaikupohjaa nuoremmasta yleisöstä. Tämä erikoisshow tekee kunniaa miehelle ja hänen musiikilleen.  Kaikki hänen parhaat laulunsa ovat mukana, tunteella esitettynä ja huippubändin autenttisuudelle, jossa soittavat loistavat muusikot ympäri maailmaa.</p><p>Laulajana tässä erinomaisessa showssa on Dwight Icenhower (USA), joka on voittanut Maailman Parhaan Elvis Tribute Artistin palkinnon jo neljästi. Dwightin ääni on niin lähellä Elvistä, että se on hämännyt jopa asiantuntijoita. Viimeisessä showssaan täällä Dwight lauloi Unchained Melodyn säestäen itseään pianolla aivan kuten Elviskin teki 1977. Se oli poikkeuksellinen hetki, hänen äänensä kuulosti aivan Elvikseltä ja onnistui toistamaan hienovaraisimmatkin vivahteet. Jos suljit silmäsi, tuntui aivan kuin Elvis olisi ollut huoneessa. Monet sanoivat jälkikäteen, että se antoi heille kylmiä väreitä ja joillekin jopa kyyneleitä. Se oli hieno hetki. Tästä on luvassa yksi noista erittäin hienoista illoista, jota voimme lämpimästi suositella ei vain Elvis-faneille, mutta kenelle tahansa, joka arvostaa hyvää musiikkia. Kuninkaan musiikki on ajatonta ja tämä show ei ainoastaan sisällä hänen hittinsä, mutta myös joitain gospel-lauluja ja b-puolia: ‘Hound Dog’, ‘Devil In Disguise’, ‘Don’t Be Cruel’, ‘How Great Thou Art’… ja paljon muita.</p><p>Suosittelemme lämpimästi!</p><p>Kesto n. 2,5 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p>",
                "sv": "<p>Elvis legend lever i dag starkare än någonsin. Tack vare den nya filmen hittar yngre generationer hans musik. Låtar som Suspicious Minds, If I Can Dream och Unchained Melody hittar åter klangbotten hos den yngre publiken. Denna specialshow är en hyllning till en man och hans musik. Alla de bästa låtarna är med, framförs med känsla och det autentiska uttrycket av det fantastiska bandet, som består av extraordinära musiker från hela världen.</p><p>Sångaren i denna utmärkta show är Dwight Icenhower (USA), som vunnit priset Världens Bästa Elvis Tribute Artist redan fyra gånger. Dwights röst är så nära Elvis att han förbluffat till och med experter. På sin senaste show här ackompanjerade Dwight sig själv på pianot till låten Unchained Melody, precis som Elvis gjorde 1977. Detta var ett exceptionellt ögonblick, han lät precis som Elvis och lyckades imitera även de mest finstämda nyanserna. När man blundade kändes det som om Elvis var i rummet. Många sade i efterhand att de fått kalla kårar, till och med tårar i ögonen. Det var en fin stund. Nu får vi se fram emot en av de verkligen fina kvällarna som vi kan varmt rekommendera, inte bara för Elvisfans, utan för alla som uppskattar god musik. Kungens musik är tidlös och under denna show framförs inte bara hans hitlåtar utan även vissa gospelsåtar och b-sidor: Hound Dog, Devil In Disguise, Don’t Be Cruel, How Great Thou Art… och många fler.</p><p>Vi rekommenderar varmt!</p><p>Längd ca 2,5 h med paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>",
                "en": "<p>The legend of Elvis lives on stronger than ever. Thanks to the new film, new generations are now discovering his music. Young audiences are once again responding to songs like Suspicious Minds, If I Can Dream and Unchained Melody. This special show honours the man and his music. All of his best songs are included and performed with emotion and the authenticity of a first-rate band brimming with amazing musicians from around the world.</p><p>The vocalist for the stupendous show is Dwight Icenhower (USA), who has been honoured as the best Elvis Tribute Artist four times. Dwight’s voice is so close Elvis’ that it has even fooled experts. In his last show in Finland, Dwight sang Unchained Melody accompanying himself with a piano, just as Elvis did in 1977. It was an extraordinary moment: he sounded exactly like Elvis and was able to replicate even the most minor nuances. If you closed your eyes, it was as if Elvis was in the room. Many said afterwards that they got goosebumps and had tears in their eyes. It was an experience to remember. The new concert is sure to be an equally incredible show that we can warmly recommend not only to Elvis fans but everyone who appreciates good music. The King’s music is timeless, and alongside his hits, the show also features some gospel songs and B-sides: Hound Dog, Devil In Disguise, Don’t Be Cruel, How Great Thou Art and many more.</p><p>This concert is highly recommended!</p><p>Duration approx. 2,5 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>"
            },
            "provider": {
                "fi": "Deelen Consultancies",
                "sv": "Deelen Consultancies",
                "en": "Deelen Consultancies"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59583/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63182",
            "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: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:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-dyyni-3601646/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-dyyni-3601646/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-dyyni-3601646/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12446,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T15:14:09.485942Z",
                    "last_modified_time": "2024-03-14T15:14:09.485975Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745588.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12446/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T15:14:09.462180Z",
            "last_modified_time": "2024-04-05T17:14:00.875662Z",
            "date_published": null,
            "start_time": "2024-04-06T15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Dyyni: Osa kaksi seuraa Paul Atreidesin myyttistä matkaa hänen liittoutuessaan Chanin ja fremenien kanssa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/37F049E458E252143D9F0DB927654849/Dyyni_II_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/37F049E458E252143D9F0DB927654849/Dyyni_II_12_",
                "en": "http://www.malmitalo.fi/en/events/event/37F049E458E252143D9F0DB927654849/_Dyyni_II_12_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Dyyni II (12) – Kino Helios",
                "sv": "Dyyni II (12) – Kino Helios",
                "en": "Dyyni II (12) – Kino Helios"
            },
            "description": {
                "fi": "<p>Dyyni: Osa kaksi seuraa Paul Atreidesin myyttistä matkaa hänen liittoutuessaan Chanin ja fremenien kanssa.</p><p>Tästä alkaa kostoretki salaliittolaisia vastaan, jotka tuhosivat hänen perheensä.</p><p>Kohdatessaan valinnan elämänsä rakkauden ja tunnetun universumin kohtalon välillä hän ponnistelee ehkäistäkseen hirvittävän tulevaisuuden, jonka vain hän voi nähdä ennalta.</p><p>Saaga jatkuu palkitun elokuvantekijä Denis Villeneuven aloittaessa seuraavan luvun Frank Herbertin maineikkaasta romaanista Dyyni, tähtiluokan kansainvälisen näyttelijäkaartin kanssa. Warner Bros. Picturesin ja Legendary Picturesin Dyyni: Osa kaksi on kovasti odotettu jatko-osa vuoden 2021 kuusi Oscaria voittaneelle Dyynille.</p><p>Ikäraja: 12</p><p>Pituus 166 min</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Ensi-ilta 28.2.2024</p><p><b>Malmin oma elokuvateatteri Kino Helios uudistui!</b></p><p>Malmitalossa sijaitseva Kino Helios tarjoaa ensi-iltaleffoja edullisesti aikuisille ja lapsiperheille. 92-paikkainen elokuvateatteri tuo Malmille uusimpien elokuvien lisäksi leffafestareiden suosikkeja sekä eriteemaisia elokuvasarjoja.</p><p>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe ensi-iltaelokuvat edullisesti ja mukavasti Kino Helioksessa!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63182/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63074",
            "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: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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kanneltalo-imbalance-kanneltalo-18341583/",
                        "sv": "https://www.lippu.fi/event/kanneltalo-imbalance-kanneltalo-18341583/",
                        "en": "https://www.lippu.fi/event/kanneltalo-imbalance-kanneltalo-18341583/"
                    },
                    "price": {
                        "fi": "28 € / 23 €",
                        "sv": "28 € / 23 €",
                        "en": "28 € / 23 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11069,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-27T12:14:35.709016Z",
                    "last_modified_time": "2024-02-27T12:14:35.709037Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739589.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11069/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-27T12:14:35.682321Z",
            "last_modified_time": "2024-04-05T17:14:00.823648Z",
            "date_published": null,
            "start_time": "2024-04-06T15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Helsinki Dance Theatren vuoden 2024 teos tutkii tanssin keinoin yhteiskuntamme tasapainoa horjuttavia elementtejä.",
                "sv": "Helsinki Dance Theatres verk för 2024 undersöker destabiliserande element i vårt samhälle genom dans.",
                "en": "Helsinki Dance Theatre’s 2024 show explores the elements that destabilise our society through dance."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8065B293AC8DCA5A64256D667979E816/IMBALANCE",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8065B293AC8DCA5A64256D667979E816/IMBALANCE",
                "en": "http://www.kanneltalo.fi/en/events/event/8065B293AC8DCA5A64256D667979E816/IMBALANCE"
            },
            "location_extra_info": null,
            "name": {
                "fi": "IMBALANCE – Helsinki Dance Theatre",
                "sv": "IMBALANCE – Helsinki Dance Theatre",
                "en": "IMBALANCE – Helsinki Dance Theatre"
            },
            "description": {
                "fi": "<p>Helsinki Dance Theatren vuoden 2024 teos tutkii tanssin keinoin yhteiskuntamme tasapainoa horjuttavia elementtejä.</p><p>Yhteiskuntamme ongelmia eivät aiheuta yksittäiset teot tai laitteet, vaan niiden epäsuhtaisuus ja hallitsemattomuus, kun itsehillintämme ei riitä.</p><p>Esitys koostuu taiteellisen johtajan Val Suarezin kahdesta uudesta teoksesta sekä kolmen vierailevan koreografin teoksista. Suarezin <i> Contagious Convictions </i> perustuu Alexei Navalnyin kirjeeseen vankilasta ja <i> Behind the Smiles </i> pureutuu cancel-kulttuurin rajuihin vaikutuksiin. Sini Mäenpään <i> Echoes </i> tarkastelee omien todellisuuksiemme ja tietoisuuden ulottuvuuksia, Phet Haanpään <i> Pulse </i> alati uusiutuvan teknologian kehityksen vaikutuksia elämänkaariimme ja Julia Ilmon <i> Väilttelyä </i> tapaa, joilla sanat muokkaavat mielikuviamme.</p><p>Vuonna 2016 perustetun Helsinki Dance Theatren liikekieli yhdistää balettia ja nykytanssia sekä etnisiä vivahteita teatterillisiin elementteihin.</p><p>Koregrafia:<br>Phet Haanpää<br>Julia Adina Ilmo<br>Sini Mäenpää<br>Val Suarez</p><p>Tanssijat:<br>Lotta Arjanne<br>Phet Haanpää<br>Julia Adina Ilmo<br>Joanna Keränen<br>Maria Rita<br>Aletta Salo<br>Jiro Tanabe</p><p>Kesto: 1 t, ei väliaikaa</p><p>Ikäsuositus: 12+</p>",
                "sv": "<p>Helsinki Dance Theatres verk för 2024 undersöker destabiliserande element i vårt samhälle genom dans.</p><p>Problemen i vårt samhälle beror inte på enskilda handlingar eller anordningar, utan på disporportion och brist på kontroll när vi inte har tillräckligt med självbehärskning.</p>",
                "en": "<p>Helsinki Dance Theatre’s 2024 show explores the elements that destabilise our society through dance.</p><p>The issues in modern society are not caused by individual actions or devices, but by disproportion and lack of control, as our self-control is not enough.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63074/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61277",
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/satakieli-3542913/",
                        "sv": "https://www.lippu.fi/artist/stoa/satakieli-3542913/",
                        "en": "https://www.lippu.fi/artist/stoa/satakieli-3542913/"
                    },
                    "price": {
                        "fi": "24 € / 15 € / 10 €",
                        "sv": "24 € / 15 € / 10 €",
                        "en": "24 € / 15 € / 10 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6190,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T12:13:19.533327Z",
                    "last_modified_time": "2024-02-06T13:23:31.885409Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739161.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6190/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T12:13:19.513280Z",
            "last_modified_time": "2024-04-05T17:14:00.768032Z",
            "date_published": null,
            "start_time": "2024-04-06T14: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.",
                "sv": "Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.",
                "en": "Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/BEC7BB4F58832E9BA2BE6D2963E6D2E4/Susanna_Leinonen_Company_Satakieli_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/BEC7BB4F58832E9BA2BE6D2963E6D2E4/Susanna_Leinonen_Company_Naktergal_",
                "en": "http://www.stoa.fi/en/events/event/BEC7BB4F58832E9BA2BE6D2963E6D2E4/Susanna_Leinonen_Company_Nightingale"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Susanna Leinonen Company: Satakieli",
                "sv": "Susanna Leinonen Company: Näktergal",
                "en": "Susanna Leinonen Company: Nightingale"
            },
            "description": {
                "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi <b>Susanna Leinosen</b> vahvaan ja ilmaisuvoimaiseen liikkeeseen. Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Tanssijoiden ääniohjauksesta on vastannut näyttelijä-laulaja <b>Eija Ahvo</b> ja teoksen musiikin on säveltänyt <b>Kasperi Laine</b>.</p><p>Stoassa kantaesityksensä 2.3. saava Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Koreografia: Susanna Leinonen<br>Ääniohjaus: Eija Ahvo<br>Musiikki: Kasperi Laine</p><p>Kesto n. 50 min.</p><p>Esitysten jälkeen järjestetään yleisökeskustelu, moderaattorina toimii Susanna Leinonen, kesto max 30 min.</p>",
                "sv": "<p>Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.</p><p>Kraften från den vishet och livserfarenhet som ålderdomen för med sig förenas med koreografen Susanna Leinonens starka och uttrycksfulla rörelse.</p>",
                "en": "<p>Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories.</p><p>The power that comes from the wisdom and life experiences brought on by age is combined with the strong and expressive movement of Choreographer Susanna Leinonen.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61277/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63180",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-suuri-leluseikkailu-3"
                    },
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12121,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T12:13:59.472459Z",
                    "last_modified_time": "2024-03-13T12:13:59.472478Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745579.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12121/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-13T12:13:59.442342Z",
            "last_modified_time": "2024-04-05T17:14:00.715055Z",
            "date_published": null,
            "start_time": "2024-04-06T12: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suuri leluseikkailu vie katsojan mielikuvitukselliseen seikkailuun New Yorkin Keskuspuistoon."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4FCA1D61C9CB5952FE45F4CCB2B11433/Suuri_leluseikkailu_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Suuri leluseikkailu (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Suuri leluseikkailu vie katsojan mielikuvitukselliseen seikkailuun New Yorkin Keskuspuistoon.</p><p>Kekseliäs nukke Don on kyllästynyt näyttelemään hölmöä nukketeatterissa. Ennen kaikkea hän haluaisi olla sankari – ja mieluiten tosielämässä. Hän pakenee teatterista ja lähtee Keskuspuistoon etsimään sankarillisia tehtäviä, päätyen tekemään yhteistyötä räppäävän pehmokoira DJ Veli Haun kanssa.</p><p>Kun Don saa tietää, että hänen nukkekaverinsa teatterissa ovat vaarassa, ystävykset Don ja DJ Veli Hau päättävät rientää apuun. Yhdessä he aloittavat suurimman seikkailunsa New Yorkin sydämessä.<br> <br>Suuri seikkailu on Toy Storyn käsikirjoittajien luoma, sydämellinen tarina epätodennäköisestä ystävyydestä.</p><p>Ikäraja 7</p><p>Kesto 88 min</p><p>Ensi-ilta 1.3.2024</p><p><b>Malmin oma elokuvateatteri Kino Helios uudistui!</b></p><p>Malmitalossa sijaitseva Kino Helios tarjoaa ensi-iltaleffoja edullisesti aikuisille ja lapsiperheille. 92-paikkainen elokuvateatteri tuo Malmille uusimpien elokuvien lisäksi leffafestareiden suosikkeja sekä eriteemaisia elokuvasarjoja.</p><p>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe ensi-iltaelokuvat edullisesti ja mukavasti Kino Helioksessa!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63180/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61478",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3535305"
                    },
                    "price": {
                        "fi": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6305,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-28T14:14:02.255865Z",
                    "last_modified_time": "2024-02-06T13:23:31.683973Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738503.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6305/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-28T14:14:02.228822Z",
            "last_modified_time": "2024-04-05T17:14:00.647259Z",
            "date_published": null,
            "start_time": "2024-04-06T12: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "On aika keittää maan mainioimmat kuravellit ja leipoa hienoimmat mutakakut, kun lastenmusiikkiyhtye Mutaveijarit juhlii 10-vuotissyntymäpäiviään vuonna 2024."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A1FEF61233CFCF3B6FE4657DCEFA4859/LOPPUUNMYYTY_Mutaveijareiden_10-vuotissynttarit_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Mutaveijareiden 10-vuotissynttärit!"
            },
            "description": {
                "fi": "<p>On aika keittää maan mainioimmat kuravellit ja leipoa hienoimmat mutakakut, kun lastenmusiikkiyhtye Mutaveijarit juhlii 10-vuotissyntymäpäiviään vuonna 2024.</p><p>Juhlavuoden konserteissa seikkaillaan tuttuun tapaan ympäri ämpäri maailman, sukelletaan välillä merten ja järvien läpi, kohdataan monenmoista ystävää ja tuttua ja ihmetellään yhdessä montaa juttua.</p><p>Kymppisynttäreiden erikoisesiintyjänä on joukko kokeneita kymppisynttäreiden viettäjiä: Kaisaniemen ala-asteen 4C-musiikkiluokan kuoro, opettajansa Kirsi Pettisen johdolla. Tämä taitava, vauhdikas ja energinen joukko saa yhdessä Mutaveijareiden kanssa taatusti tunnelman kattoon ja juhlista tulee ikimuistoiset!</p><p>Toivotamme kaikki kanssamatkustajat tervetulleiksi mutamatkalle juhlimaan: <i>“Hyppää kyytin nyt! Laita kiinni turvavyö!”</i></p><p><b>Mutaveijarit</b> on riemukas lastenmusiikkiyhtye, joka on tunnettu valloittavasta lavaesiintymisestään ja mukaansatempaavista lauluistaan. Yhtyeen monipuolisesti eri musiikkityylejä yhdistelevässä musiikissa kuuluu vaikutteita niin kansanmusiikista skahan kuin popista tuutulauluun. Mutaveijarit vievät kuulijansa ystävyyden, luonnon ja kuravellin riemukkaaseen maailmaan. Mielikuvitukselliset ja oivaltavat laulut sekä innostavat ja pedagogisesti monipuoliset laululeikit vievät kuulijansa musiikkiretkelle, jonka hauskat ja jännittävät käänteet takaavat viihdyttävän konserttielämyksen koko perheelle.</p><p>Mutaveijareiden kaksi levyä <i>Ympäri ämpäri!</i> (2016) ja <i>Nyt mennään!</i> (2019) ovat saaneet lukuisia tunnustuksia mm. Vamo ry:ltä ja levyt ovat olleet lastenmusiikin Emma-ehdokkaina. Yhtye on palkittu vuoden 2020 lastenmusiikintekijänä. Vuonna 2023 Mutaveijarit julkaisi <i>Ämpärillinen nuotteja</i> -kirjan, jossa on mukana nuotteja, laulu- ja leikkiohjeita sekä monipuolisesti muuta kappaleisiin liittyvää pedagogista materiaalia.</p><p>Mutaveijareiden lapsikuoroyhteistyötä tukee Musiikin edistämissäätiö.</p><p>Mutaveijarit: Veikko Muikku, Johanna Mäkitalo, Mari Nieminen, Jussi Nikula, Miia Reko, Eveliina Saikkonen, Saija Santavirta, Leena Untamala<br>Kuva: Antti Kokkola</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61478/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61835",
            "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:104/?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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/willman-dance-company/",
                        "sv": "https://www.lippu.fi/artist/willman-dance-company/",
                        "en": "https://www.lippu.fi/artist/willman-dance-company/"
                    },
                    "price": {
                        "fi": "10 € / 8 €",
                        "sv": "10 € / 8 €",
                        "en": "10 € / 8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6962,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-03T11:14:33.464731Z",
                    "last_modified_time": "2024-02-06T13:23:31.792118Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739506.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-03T11:14:33.428824Z",
            "last_modified_time": "2024-04-05T17:14:00.596920Z",
            "date_published": null,
            "start_time": "2024-04-06T12:00:00Z",
            "end_time": "2024-04-06T13: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Voimaeläin on vuorovaikutuksellinen ja lapsia osallistava tanssiteatteriesitys.",
                "sv": "Voimaeläin (Kraftdjur) är en interaktiv dansteaterföreställning som delaktiggör barnen.",
                "en": "Voimaeläin (Spirit Animal) is an interactive dance theatre performance that invites children to join."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E677695769D3C81D065E26CB04B00608/Willman_Dance_company_Voimaelain",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E677695769D3C81D065E26CB04B00608/Willman_Dance_company_Voimaelain",
                "en": "http://www.malmitalo.fi/en/events/event/E677695769D3C81D065E26CB04B00608/Willman_Dance_company_Voimaelain"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Willman Dance company: Voimaeläin",
                "sv": "Willman Dance company: Voimaeläin",
                "en": "Willman Dance company: Voimaeläin"
            },
            "description": {
                "fi": "<p>Voimaeläin on vuorovaikutuksellinen ja lapsia osallistava tanssiteatteriesitys.</p><p>Esityksessä seikkailevat hahmot, Kaisla, Kiira ja Tuisku, lukevat faabeleita toisilleen. Faabeli on hyvin vanha kerrontamuoto, yleensä eläinsadun muotoon puettu ja moraalisen opetuksen sisältävä kertomus. Kaisla, Kiira ja Tuisku alkavat faabelien innoittamina etsiä omia voimaeläimiään. Voimaeläimiä etsitään Pohjolan eläimistä ja yleisö pääsee osallistumaan mukaan etsintään!</p><p>Esitys herättää ajatuksia eläimen ja ihmisen arvosta. Mitä eläimen tulisi saada ihmiseltä? Mitä ihminen voi saada eläimeltä? Voimaeläin vahvistaa lapsen itsetuntoa ja toimijuutta yksilönä. Lapsi voi miettiä omia kykyjään ja voimiaan eläinten ominaisuuksien kautta.</p><p>Esityksessä mukana olevat Pohjolan Voimaeläinkortit tuovat eläinuskomukset ja niihin liittyvät myytit sekä<br>eläinten piilevät kyvyt tietoisuuteemme. Pohjolan Voimaeläinkortit ovat luoneet Maaretta Tukiainen ja<br>Markus Frey ja ne on kustantanut Tuuma-kustannus.<br>Esityksessä on mukana faabeleita Aisopokselta ja Phaedrukselta.</p><p>Willman Dance Company on helsinkiläinen tanssiryhmä, joka koostuu taiteilijoista, joita yhdistää intohimo tanssiin ja näyttämötaiteeseen. Ryhmä valmistaa esityksiä niin aikuis- kuin lapsiyleisölle luoden tanssiteatteri- ja nykytanssiteoksia, joissa liike ja tanssijoiden kehollinen kyky ilmaista ovat esityksen ydin.</p><p>Koreografia, ohjaus Marjaterttu Willman</p><p>Pukusuunnittelu Aapo Siikala</p><p>Esiintyjät Jonna Aaltonen, Kaisa Niemi, Tanja Illukka</p><p>Kesto 45 min</p><p>Ikäsuositus 6 +</p>",
                "sv": "<p>Voimaeläin (Kraftdjur) är en interaktiv dansteaterföreställning som delaktiggör barnen.</p><p>Föreställningens gestalter, Kaisla, Kiira och Tuisku, läser fabler för varandra. Fabeln är en mycket gammal berättarform, som vanligtvis förmedlar moraliska lärdomar via djursagor.</p>",
                "en": "<p>Voimaeläin (Spirit Animal) is an interactive dance theatre performance that invites children to join.</p><p>The characters Kaisla, Kiira and Tuisku read fables to each other. The fable is a very old form of narrative, typically with animals as the characters and conveying a moral.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61835/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63073",
            "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: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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kanneltalo-imbalance-kanneltalo-18341583/",
                        "sv": "https://www.lippu.fi/event/kanneltalo-imbalance-kanneltalo-18341583/",
                        "en": "https://www.lippu.fi/event/kanneltalo-imbalance-kanneltalo-18341583/"
                    },
                    "price": {
                        "fi": "28 € / 23 €",
                        "sv": "28 € / 23 €",
                        "en": "28 € / 23 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11068,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-27T12:14:35.385233Z",
                    "last_modified_time": "2024-02-27T12:14:35.385254Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739588.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11068/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-27T12:14:35.330855Z",
            "last_modified_time": "2024-04-05T17:14:00.540139Z",
            "date_published": null,
            "start_time": "2024-04-06T12: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Helsinki Dance Theatren vuoden 2024 teos tutkii tanssin keinoin yhteiskuntamme tasapainoa horjuttavia elementtejä.",
                "sv": "Helsinki Dance Theatres verk för 2024 undersöker destabiliserande element i vårt samhälle genom dans.",
                "en": "Helsinki Dance Theatre’s 2024 show explores the elements that destabilise our society through dance."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/197E6FABC5A1CF0BD036119F7DBD639E/IMBALANCE",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/197E6FABC5A1CF0BD036119F7DBD639E/IMBALANCE",
                "en": "http://www.kanneltalo.fi/en/events/event/197E6FABC5A1CF0BD036119F7DBD639E/IMBALANCE"
            },
            "location_extra_info": null,
            "name": {
                "fi": "IMBALANCE – Helsinki Dance Theatre",
                "sv": "IMBALANCE – Helsinki Dance Theatre",
                "en": "IMBALANCE – Helsinki Dance Theatre"
            },
            "description": {
                "fi": "<p>Helsinki Dance Theatren vuoden 2024 teos tutkii tanssin keinoin yhteiskuntamme tasapainoa horjuttavia elementtejä.</p><p>Yhteiskuntamme ongelmia eivät aiheuta yksittäiset teot tai laitteet, vaan niiden epäsuhtaisuus ja hallitsemattomuus, kun itsehillintämme ei riitä.</p><p>Esitys koostuu taiteellisen johtajan Val Suarezin kahdesta uudesta teoksesta sekä kolmen vierailevan koreografin teoksista. Suarezin <i> Contagious Convictions </i> perustuu Alexei Navalnyin kirjeeseen vankilasta ja <i> Behind the Smiles </i> pureutuu cancel-kulttuurin rajuihin vaikutuksiin. Sini Mäenpään <i> Echoes </i> tarkastelee omien todellisuuksiemme ja tietoisuuden ulottuvuuksia, Phet Haanpään <i> Pulse </i> alati uusiutuvan teknologian kehityksen vaikutuksia elämänkaariimme ja Julia Ilmon <i> Väilttelyä </i> tapaa, joilla sanat muokkaavat mielikuviamme.</p><p>Vuonna 2016 perustetun Helsinki Dance Theatren liikekieli yhdistää balettia ja nykytanssia sekä etnisiä vivahteita teatterillisiin elementteihin.</p><p>Koregrafia:<br>Phet Haanpää<br>Julia Adina Ilmo<br>Sini Mäenpää<br>Val Suarez</p><p>Tanssijat:<br>Lotta Arjanne<br>Phet Haanpää<br>Julia Adina Ilmo<br>Joanna Keränen<br>Maria Rita<br>Aletta Salo<br>Jiro Tanabe</p><p>Kesto: 1 t, ei väliaikaa</p><p>Ikäsuositus: 12+</p>",
                "sv": "<p>Helsinki Dance Theatres verk för 2024 undersöker destabiliserande element i vårt samhälle genom dans.</p><p>Problemen i vårt samhälle beror inte på enskilda handlingar eller anordningar, utan på disporportion och brist på kontroll när vi inte har tillräckligt med självbehärskning.</p>",
                "en": "<p>Helsinki Dance Theatre’s 2024 show explores the elements that destabilise our society through dance.</p><p>The issues in modern society are not caused by individual actions or devices, but by disproportion and lack of control, as our self-control is not enough.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63073/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61276",
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/satakieli-3542913/"
                    },
                    "price": {
                        "fi": "24 € / 15 € / 10 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6189,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T12:13:19.383603Z",
                    "last_modified_time": "2024-02-06T13:23:31.504332Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739160.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6189/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T12:13:19.364594Z",
            "last_modified_time": "2024-04-05T17:14:00.420888Z",
            "date_published": null,
            "start_time": "2024-04-05T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/166DDA5B40C47B0B6B3B01505DACD7CF/Susanna_Leinonen_Company_Satakieli_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Susanna Leinonen Company: Satakieli"
            },
            "description": {
                "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi <b>Susanna Leinosen</b> vahvaan ja ilmaisuvoimaiseen liikkeeseen. Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Tanssijoiden ääniohjauksesta on vastannut näyttelijä-laulaja <b>Eija Ahvo</b> ja teoksen musiikin on säveltänyt <b>Kasperi Laine</b>.</p><p>Stoassa kantaesityksensä 2.3. saava Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Koreografia: Susanna Leinonen<br>Ääniohjaus: Eija Ahvo<br>Musiikki: Kasperi Laine</p><p>Kesto n. 50 min.</p><p>Esitysten jälkeen järjestetään yleisökeskustelu, moderaattorina toimii Susanna Leinonen, kesto max 30 min.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61276/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63072",
            "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: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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kanneltalo/imbalance-3599044/",
                        "sv": "https://www.lippu.fi/artist/kanneltalo/imbalance-3599044/",
                        "en": "https://www.lippu.fi/artist/kanneltalo/imbalance-3599044/"
                    },
                    "price": {
                        "fi": "28 € / 23 €",
                        "sv": "28 € / 23 €",
                        "en": "28 € / 23 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11038,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-26T13:14:39.060139Z",
                    "last_modified_time": "2024-02-26T13:14:39.060206Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739586.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11038/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-26T13:14:39.010270Z",
            "last_modified_time": "2024-04-05T17:14:00.370729Z",
            "date_published": null,
            "start_time": "2024-04-05T15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Helsinki Dance Theatren vuoden 2024 teos tutkii tanssin keinoin yhteiskuntamme tasapainoa horjuttavia elementtejä.",
                "sv": "Helsinki Dance Theatres verk för 2024 undersöker destabiliserande element i vårt samhälle genom dans.",
                "en": "Helsinki Dance Theatre’s 2024 show explores the elements that destabilise our society through dance."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CBDE7B78825629BA0C7C5ABF70F93716/IMBALANCE",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CBDE7B78825629BA0C7C5ABF70F93716/IMBALANCE",
                "en": "http://www.kanneltalo.fi/en/events/event/CBDE7B78825629BA0C7C5ABF70F93716/IMBALANCE"
            },
            "location_extra_info": null,
            "name": {
                "fi": "IMBALANCE – Helsinki Dance Theatre | Kantaesitys",
                "sv": "IMBALANCE",
                "en": "IMBALANCE"
            },
            "description": {
                "fi": "<p>Helsinki Dance Theatren vuoden 2024 teos tutkii tanssin keinoin yhteiskuntamme tasapainoa horjuttavia elementtejä.</p><p>Yhteiskuntamme ongelmia eivät aiheuta yksittäiset teot tai laitteet, vaan niiden epäsuhtaisuus ja hallitsemattomuus, kun itsehillintämme ei riitä.</p><p>Esitys koostuu taiteellisen johtajan Val Suarezin kahdesta uudesta teoksesta sekä kolmen vierailevan koreografin teoksista. Suarezin <i> Contagious Convictions </i> perustuu Alexei Navalnyin kirjeeseen vankilasta ja <i> Behind the Smiles </i> pureutuu cancel-kulttuurin rajuihin vaikutuksiin. Sini Mäenpään <i> Echoes </i> tarkastelee omien todellisuuksiemme ja tietoisuuden ulottuvuuksia, Phet Haanpään <i> Pulse </i> alati uusiutuvan teknologian kehityksen vaikutuksia elämänkaariimme ja Julia Ilmon <i> Väilttelyä </i> tapaa, joilla sanat muokkaavat mielikuviamme.</p><p>Vuonna 2016 perustetun Helsinki Dance Theatren liikekieli yhdistää balettia ja nykytanssia sekä etnisiä vivahteita teatterillisiin elementteihin.</p><p>Koregrafia:<br>Phet Haanpää<br>Julia Adina Ilmo<br>Sini Mäenpää<br>Val Suarez</p><p>Tanssijat:<br>Lotta Arjanne<br>Phet Haanpää<br>Julia Adina Ilmo<br>Joanna Keränen<br>Maria Rita<br>Aletta Salo<br>Jiro Tanabe</p><p>Kesto: 1 t, ei väliaikaa</p><p>Ikäsuositus: 12+</p><p>Liput: 28 € / 23 €</p>",
                "sv": "<p>Helsinki Dance Theatres verk för 2024 undersöker destabiliserande element i vårt samhälle genom dans.</p><p>Problemen i vårt samhälle beror inte på enskilda handlingar eller anordningar, utan på disporportion och brist på kontroll när vi inte har tillräckligt med självbehärskning.</p>",
                "en": "<p>Helsinki Dance Theatre’s 2024 show explores the elements that destabilise our society through dance.</p><p>The issues in modern society are not caused by individual actions or devices, but by disproportion and lack of control, as our self-control is not enough.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63072/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63127",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11106,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-28T15:14:55.671413Z",
                    "last_modified_time": "2024-02-28T15:14:55.671434Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737089.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11106/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-28T15:14:55.644424Z",
            "last_modified_time": "2024-04-05T17:14:00.316639Z",
            "date_published": null,
            "start_time": "2024-04-05T15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Akusmata Polyphonic 2024 on intensiivinen äänitaiteen ja elektronisen musiikin tapahtuma Vuotalossa.",
                "sv": "Akusmata Polyphone 2024 är ett intensivt ljudkonst- och musikevenemang i Nordhuset.",
                "en": "Akusmata Polyphonic 2024 is an intensive sound art and electronic music event at Vuosaari House."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/783B9EE2D33C1E3415D983A2453EF711/Akusmata_Polyphonic_2024_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/783B9EE2D33C1E3415D983A2453EF711/Akusmata_Polyphonic_2024_",
                "en": "http://www.vuotalo.fi/en/events/event/783B9EE2D33C1E3415D983A2453EF711/Akusmata_Polyphonic_2024_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Akusmata Polyphonic 2024",
                "sv": "Akusmata Polyphonic 2024",
                "en": "Akusmata Polyphonic 2024"
            },
            "description": {
                "fi": "<p>Akusmata Polyphonic 2024 on intensiivinen äänitaiteen ja elektronisen musiikin tapahtuma Vuotalossa.</p><p>Kutsutut muusikot, säveltäjät ja äänitaiteilijat tarjoavat yleisölle laajan kirjon uutta äänellistä ilmaisua kokeellisen elektronisen musiikin, äänitaiteen ja ambient-musiikin alueilta.</p><p>Ohjelmaan kuuluu modulaarisia äänijärjestelmiä, tee-se-itse-musiikkisoittimia ja asenteella improvisoitua musiikkia.</p><p>Tapahtumassa esiintyy taiteilijoita Färsaarilta, Grönlannista, Tanskasta ja Suomesta, mukana myös ainutlaatuinen Cracklebox Orchestra!</p><p>Vapaa pääsy</p>",
                "sv": "<p>Akusmata Polyphone 2024 är ett intensivt ljudkonst- och musikevenemang i Nordhuset.</p><p>De inbjudna musikerna, kompositörerna och ljudkonstnärerna bjuder publiken på ett brett spektrum av nya ljudliga uttryck inom den experimentella elektroniska musiken, ljudkonsten och ambient-musiken.</p><p>Fri entré</p>",
                "en": "<p>Akusmata Polyphonic 2024 is an intensive sound art and electronic music event at Vuosaari House.</p><p>Invited musicians, composers and sound artists offer the audience a wide spectrum of new sonic expression from the fields of experimental electronic music, sound art, and ambient.</p><p>The program includes modular sound systems, do-it-yourself musical instruments, and improvised music with attitude.</p><p>The event features performers from the Faroe Islands, Greenland, Denmark and Finland, including the unique Cracklebox Orchestra!</p><p>Free entrance</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63127/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63228",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/kino-helios-alma-life-must-be-beautiful-3610327/",
                        "en": "https://www.lippu.fi/artist/malmitalo/kino-helios-alma-life-must-be-beautiful-3610327/"
                    },
                    "price": {
                        "fi": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12822,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-15T12:14:07.721838Z",
                    "last_modified_time": "2024-03-15T12:14:07.721855Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745642.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12822/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T12:14:07.679678Z",
            "last_modified_time": "2024-04-05T17:14:00.253587Z",
            "date_published": null,
            "start_time": "2024-04-05T15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Alma – Life Must Be Beautiful kertoo 28-vuotiaan Alma-Sofia Miettisen tarinan. Dokumentti seuraa Alman poikkeuksellista elämää, uraa ja persoonaa.",
                "en": "Alma - Life Must Be Beautiful tells the story of 28-year-old Alma-Sofia Miettinen."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F637FB5DD761B67CC33797EF630DD5E4/Alma_Life_Must_Be_Beautiful_",
                "en": "http://www.malmitalo.fi/en/events/event/F637FB5DD761B67CC33797EF630DD5E4/Alma_Life_Must_Be_Beautiful_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Alma – Life Must Be Beautiful – Kino Helios",
                "en": "Alma – Life Must Be Beautiful – Kino Helios"
            },
            "description": {
                "fi": "<p>Alma – Life Must Be Beautiful kertoo 28-vuotiaan Alma-Sofia Miettisen tarinan. Dokumentti seuraa Alman poikkeuksellista elämää, uraa ja persoonaa.</p><p>Elokuva tuo päivänvaloon sen Alman, joka löytyy julkisuudessa esitellyn persoonan takaa. Lapsuudesta saakka kuvattu arkistomateriaali ja lukuisat keikkakiertueilla kuvatut tallenteet valottavat Alman tarinaa alusta alkaen, päästäen katsojan sisälle Alman, tämän perheen ja ystäväporukan intiimeihin hetkiin – unohtamatta menestyksen monia puolia.</p><p>Ikäraja 7</p><p>Kesto 99 min</p><p>Ohjaus Pamela Tola</p><p>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>",
                "en": "<p>Alma - Life Must Be Beautiful tells the story of 28-year-old Alma-Sofia Miettinen.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63228/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63178",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ohjus-3585920/"
                    },
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12445,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T15:14:08.734506Z",
                    "last_modified_time": "2024-03-14T15:14:08.734542Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745569.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12445/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T15:14:08.704782Z",
            "last_modified_time": "2024-04-05T17:14:00.200218Z",
            "date_published": null,
            "start_time": "2024-04-05T12: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ohjus on elokuva rajoista ja rajattomuudesta, missä poliittinen satiiri kohtaa lämpimän huumorin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EE92AF397BF4162B089FF48DC095C168/Ohjus_12_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Ohjus (12) – Kino Helios"
            },
            "description": {
                "fi": "<p>Ohjus on elokuva rajoista ja rajattomuudesta, missä poliittinen satiiri kohtaa lämpimän huumorin.</p><p>Joulukuussa 1984 Inarijärveen syöksyi neuvostoliittolainen ohjus, ja kansainvälinen selkkaus oli valmis. Draamakomedia kertoo yksinhuoltaja Niinasta, joka saa uuden alun elämälleen paikallisen sanomalehden toimittajana - ja eteensä mahdollisen jymyjutun kylässä, jossa ei koskaan tapahdu mitään. Niina uppoaa syvälle kansainväliseen ohjuskriisiin. Lappi ja pieni kirkonkylä menevät sekaisin, ja ulkomaisia toimittajia lappaa paikalliseen hotelliin. Tutkimusten keskellä Niina tapaa hävittäjälentäjä Kain, ja samaan aikaan ex-mies Tapio on vapautumassa vankilasta. Niinan on löydettävä rajansa, jotta myös totuus ohjuksesta näkisi päivänvalon.</p><p>Kesto 115 min</p><p>Ikäraja 12</p><p>Ensi-ilta 2.2.2024</p><p>Elokuva on tekstitetty Suomeksi.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63178/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61275",
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/satakieli-3542913/",
                        "sv": "https://www.lippu.fi/artist/stoa/satakieli-3542913/",
                        "en": "https://www.lippu.fi/artist/stoa/satakieli-3542913/"
                    },
                    "price": {
                        "fi": "24 € / 15 € / 10 €",
                        "sv": "24 € / 15 € / 10 €",
                        "en": "24 € / 15 € / 10 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6188,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T12:13:19.281815Z",
                    "last_modified_time": "2024-02-06T13:23:31.411454Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739159.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6188/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T12:13:19.262816Z",
            "last_modified_time": "2024-04-05T17:14:00.147973Z",
            "date_published": null,
            "start_time": "2024-04-05T11: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.",
                "sv": "Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.",
                "en": "Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9D495510CFFB26811074FAA1831219BF/Susanna_Leinonen_Company_Satakieli_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/9D495510CFFB26811074FAA1831219BF/Susanna_Leinonen_Company_Naktergal_",
                "en": "http://www.stoa.fi/en/events/event/9D495510CFFB26811074FAA1831219BF/Susanna_Leinonen_Company_Nightingale"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Susanna Leinonen Company: Satakieli",
                "sv": "Susanna Leinonen Company: Näktergal",
                "en": "Susanna Leinonen Company: Nightingale"
            },
            "description": {
                "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi <b>Susanna Leinosen</b> vahvaan ja ilmaisuvoimaiseen liikkeeseen. Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Tanssijoiden ääniohjauksesta on vastannut näyttelijä-laulaja <b>Eija Ahvo</b> ja teoksen musiikin on säveltänyt <b>Kasperi Laine</b>.</p><p>Stoassa kantaesityksensä 2.3. saava Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Koreografia: Susanna Leinonen<br>Ääniohjaus: Eija Ahvo<br>Musiikki: Kasperi Laine</p><p>Kesto n. 50 min.</p><p>Esitysten jälkeen järjestetään yleisökeskustelu, moderaattorina toimii Susanna Leinonen, kesto max 30 min.</p>",
                "sv": "<p>Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.</p><p>Kraften från den vishet och livserfarenhet som ålderdomen för med sig förenas med koreografen Susanna Leinonens starka och uttrycksfulla rörelse.</p>",
                "en": "<p>Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories.</p><p>The power that comes from the wisdom and life experiences brought on by age is combined with the strong and expressive movement of Choreographer Susanna Leinonen.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61275/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61561",
            "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:47/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 10919,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-16T13:13:20.190911Z",
                    "last_modified_time": "2024-02-16T13:13:20.190938Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741257.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10919/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-16T13:13:20.167237Z",
            "last_modified_time": "2024-04-05T17:14:00.083694Z",
            "date_published": null,
            "start_time": "2024-04-05T06:00:00Z",
            "end_time": "2024-04-27T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Valokuvanäyttely kertoo yhden ihmisen kamppailusta oman mielenterveytensä kanssa.",
                "sv": "Fotografisk utställning kring en persons svårigheter med sin psykiska ohälsa.",
                "en": "Photography exhibition is centered around one person's difficulties with their own mental illness."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1FDE0CFB3AA8FF604DB69FB26635BE78/Christian_Rosenlund_I_AM_GOD",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1FDE0CFB3AA8FF604DB69FB26635BE78/Christian_Rosenlund_I_AM_GOD",
                "en": "http://www.caisa.fi/en/events/event/1FDE0CFB3AA8FF604DB69FB26635BE78/Christian_Rosenlund_I_AM_GOD"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Christian Rosenlund: I AM GOD",
                "sv": "Christian Rosenlund: I AM GOD",
                "en": "Christian Rosenlund: I AM GOD"
            },
            "description": {
                "fi": "<p>Valokuvanäyttely kertoo yhden ihmisen kamppailusta oman mielenterveytensä kanssa.</p><p>“I AM GOD -projektissa tavoitteeni on ollut antaa realistinen kuva siitä, miltä arki mielenterveysongelmien kanssa voi näyttää. Näillä aiheilla on omat sosiaaliset ja poliittiset ulottuvuutensa, mutta tällaisten melko abstraktien käsitteiden ulkopuolella niillä on myös käytännölliset, konkreettiset ja näkyvät puolensa.</p><p>Konkreettiset ja näkyvät puolet muodostavatkin näyttelyn valokuvien ja videoteosten mielenmaiseman – ne pyrkivät kuvastamaan yhden yksilön elämäntilanteita ja vaikeuksia tuhansien ja taas tuhansien ihmisten joukosta.</p><p>Teosteni katsoja saattaa pohtia omia kokemuksiaan mielenterveydestä sekä niihin liittyvistä ja niiden heijastamista moninaisista ilmiöistä. Voiko mahdollisista pohdinnoista vetää johtopäätöksiä? Voiko niistä löytää merkityksiä tai ymmärrystä?” Taiteilija <b>Christian Rosenlund</b></p><p>Näyttelyssä esillä oleva video sisältää voimakkaita kohtauksia.</p><p>Näyttelyyn järjestetään opastus suomalaisella viittomakielellä la 13.4.2024 klo 13-14.<br>Vapaa pääsy.</p>",
                "sv": "<p>Fotografisk utställning kring en persons svårigheter med sin psykiska ohälsa.</p><p>”Med detta projekt, \"I AM GOD\" (Jag är gud) har jag velat ge en realistisk bild av hur vardagen kan te sig för en person som kämpar med psykisk ohälsa. Dessa teman har sina sociala och politiska dimensioner, men utöver dessa ofta ganska abstrakta begrepp har de även mycket praktiska, konkreta och synliga aspekter.</p><p>Dessa konkreta och synliga aspekter är stoffet som bildar det mentala landskapet i fotografierna och videoverken på utställningen – för att framkalla och reflektera de verkliga situationer och kamper som upplevs av en individ bland tusentals individer.</p><p>Den som betraktar mina verk vill kanske tänka på, eller känna sig kallad att tänka på sina olika upplevelser av psykisk hälsa och de många innebörder som de inrymmer och projicerar. Och kan man i så fall dra några slutsatser av dessa reflektioner? Finns det någon slags mening och insikt att finna i det?” Konstnär <b>Christian Rosenlund</b></p><p>Videon i utställningen innehåller starka scener.</p>",
                "en": "<p>Photography exhibition is centered around one person's difficulties with their own mental illness.</p><p>\"With this project, \"I AM GOD\", my ambition has been to give a realistic view of how everyday life might look for somebody with mental health issues. These topics have their given social and political dimensions, but quite apart from these often rather abstract notions, they are also topics that have a very practical, concrete and visible side to them.</p><p>These concrete and visible tangents are the subject matter that constitutes the mental landscape of the photographs and the video work of the exhibition – so as to evoke and reflect the in-life situations and struggles of one individual out of thousands upon thousands.</p><p>The viewer of my work might want to or feel called on to think about their own various experiences of mental health and the multitude of implications they include and project. And if so, can any conclusions be drawn from these reflections? Are there kinds of meaning and understanding to be found in it?\"<br>Artist <b>Christian Rosenlund</b></p><p>The exhibition video includes scenes that some viewers may find disturbing.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61561/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61571",
            "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:44/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7011,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-05T12:14:55.627444Z",
                    "last_modified_time": "2024-02-06T13:23:31.316381Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741477.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7011/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-05T12:14:55.578258Z",
            "last_modified_time": "2024-04-05T17:14:00.031468Z",
            "date_published": null,
            "start_time": "2024-04-05",
            "end_time": "2024-05-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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Perustuu tositapahtumiin -näyttelyssä ihmetellään nykyaikaa, kommentoidaan ja otetaan kantaa.",
                "sv": "I utställningen Baserat på verkliga händelser förundrar man sig över nutiden, kommenterar och tar ställning.",
                "en": "The Based on a True Story exhibition examines, comments and takes a stand on modern times."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/87C7CDD2B6B54D4AEF7393C319DC08AC/Perustuu_tositapahtumiin_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/87C7CDD2B6B54D4AEF7393C319DC08AC/Baserat_pa_verkliga_handelser_",
                "en": "http://www.stoa.fi/en/events/event/87C7CDD2B6B54D4AEF7393C319DC08AC/Perustuu_tositapahtumiin"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Perustuu tositapahtumiin – Based on a true story",
                "sv": "Baserat på verkliga händelser – Based on a true story",
                "en": "Perustuu tositapahtumiin – Based on a true story"
            },
            "description": {
                "fi": "<p>Perustuu tositapahtumiin -näyttelyssä ihmetellään nykyaikaa, kommentoidaan ja otetaan kantaa.</p><p>Mitä tulevat sukupolvet ajattelevat tästä ajasta ja teoistamme? Miltä nykyhetki näyttää sadan vuoden kuluttua elävän ihmisen silmissä? Stoan gallerian kuratoimassa ryhmänäyttelyssä nähdään teoksia viideltä taiteilijalta: Ignata Elana, Lora Dimova, Anniina Lius, Sepideh Rahaa ja Elham Rahmati.</p>",
                "sv": "<p>I utställningen Baserat på verkliga händelser förundrar man sig över nutiden, kommenterar och tar ställning.</p><p>Vad kommer kommande generationer att tycka om denna tid och våra gärningar? Hur kommer nutiden att se ut i ögonen på en människa som kommer att leva om etthundra år? På grupputställningen som kurerats av Stoas galleri ser man verk från fem konstnärer:  Ignata Elana, Lora Dimova, Anniina Lius, Sepideh Rahaa och Elham Rahmati</p>",
                "en": "<p>The Based on a True Story exhibition examines, comments and takes a stand on modern times.</p><p>What will future generations think about this time and our actions? What will the present look like in a hundred years through the eyes of a living person? The group exhibition curated by Stoa Gallery features works by five artists:  Ignata Elana, Lora Dimova, Anniina Lius, Sepideh Rahaa and Elham Rahmati.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61571/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63235",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/mama-events-halkara-postimies-3612030/"
                    },
                    "price": {
                        "fi": "10 € / 12,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 14285,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-18T12:14:50.290969Z",
                    "last_modified_time": "2024-03-18T12:14:50.290992Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746202.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/14285/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-18T12:14:50.257396Z",
            "last_modified_time": "2024-04-05T17:13:59.973218Z",
            "date_published": null,
            "start_time": "2024-04-04T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Työtön kyläjuoppo pestautuu postimieheksi ja ryhtyy kiertämään Nepalin syrjäisiä kyliä. Matkoillaan hänen täytyy kantaa uuden työnsä vastuita ja kohdata menneisyytensä demoneita."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B1FB72EE4FE5733F54AF65F1AEBCFDB9/Halkara_-_postimies_12_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Halkara - postimies (12) – Mama Eventsin näytös"
            },
            "description": {
                "fi": "<p>Työtön kyläjuoppo pestautuu postimieheksi ja ryhtyy kiertämään Nepalin syrjäisiä kyliä. Matkoillaan hänen täytyy kantaa uuden työnsä vastuita ja kohdata menneisyytensä demoneita.</p><p>Elokuvan tarina valaisee myös Lähi-idässä työskentelevien nepalilaisten siirtotyöntekijöiden kovaa arkea, ja kertoo millaisia sydäntä kouraisevia päätöksiä heidän on työnsä takia tehtävä ja millaisia vaikutuksia niillä on heidän läheisilleen.</p><p>Elokuvasta esitetään suomeksi tekstitetty versio.</p><p>Kesto 1h 50 min</p><p>Halkara on voittanut seuraavat palkinnot:<br>Platinum Remi Winner: WorldFest Houston International Film Festival 2022<br>Best Actor: Mahesh Tripathi – WorldFest Houston International Film Festival USA 2022<br>Best Cinematographer: Chintan Rajbhandari – WorldFest Houston International Film Festival 2022<br>Best Long Narrative NAIFF 2022<br>Semi-Finalist: Flickers’ Rhode Island International Film Festival 2022<br>Official Selection: Carmarthen Bay Film Festival</p>"
            },
            "provider": {
                "fi": "Mama Events Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63235/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61274",
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/satakieli-3542913/",
                        "sv": "https://www.lippu.fi/artist/stoa/satakieli-3542913/",
                        "en": "https://www.lippu.fi/artist/stoa/satakieli-3542913/"
                    },
                    "price": {
                        "fi": "24 € / 15 € / 10 €",
                        "sv": "24 € / 15 € / 10 €",
                        "en": "24 € / 15 € / 10 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6187,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T12:13:19.178406Z",
                    "last_modified_time": "2024-02-06T13:23:31.226237Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739158.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6187/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T12:13:19.159291Z",
            "last_modified_time": "2024-04-05T17:13:59.921113Z",
            "date_published": null,
            "start_time": "2024-04-04T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.",
                "sv": "Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.",
                "en": "Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/863D4BE34F6FE28E2C2D2DA41D1BDEA2/Susanna_Leinonen_Company_Satakieli_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/863D4BE34F6FE28E2C2D2DA41D1BDEA2/Susanna_Leinonen_Company_Naktergal_",
                "en": "http://www.stoa.fi/en/events/event/863D4BE34F6FE28E2C2D2DA41D1BDEA2/Susanna_Leinonen_Company_Nightingale"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Susanna Leinonen Company: Satakieli",
                "sv": "Susanna Leinonen Company: Näktergal",
                "en": "Susanna Leinonen Company: Nightingale"
            },
            "description": {
                "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi <b>Susanna Leinosen</b> vahvaan ja ilmaisuvoimaiseen liikkeeseen. Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Tanssijoiden ääniohjauksesta on vastannut näyttelijä-laulaja <b>Eija Ahvo</b> ja teoksen musiikin on säveltänyt <b>Kasperi Laine</b>.</p><p>Stoassa kantaesityksensä 2.3. saava Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Koreografia: Susanna Leinonen<br>Ääniohjaus: Eija Ahvo<br>Musiikki: Kasperi Laine</p><p>Kesto n. 50 min.</p><p>Esitysten jälkeen järjestetään yleisökeskustelu, moderaattorina toimii Susanna Leinonen, kesto max 30 min.</p>",
                "sv": "<p>Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.</p><p>Kraften från den vishet och livserfarenhet som ålderdomen för med sig förenas med koreografen Susanna Leinonens starka och uttrycksfulla rörelse.</p>",
                "en": "<p>Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories.</p><p>The power that comes from the wisdom and life experiences brought on by age is combined with the strong and expressive movement of Choreographer Susanna Leinonen.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61274/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63126",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11105,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-28T15:14:55.237934Z",
                    "last_modified_time": "2024-02-28T15:14:55.237969Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737997.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11105/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-28T15:14:55.191451Z",
            "last_modified_time": "2024-04-05T17:13:59.869360Z",
            "date_published": null,
            "start_time": "2024-04-04T15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Akusmata Polyphonic 2024 on intensiivinen äänitaiteen ja elektronisen musiikin tapahtuma Vuotalossa.",
                "sv": "Akusmata Polyphone 2024 är ett intensivt ljudkonst- och musikevenemang i Nordhuset.",
                "en": "Akusmata Polyphonic 2024 is an intensive sound art and electronic music event at Vuosaari House."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/27B7FE4482F7BCD37F23B2336362B51B/Akusmata_Polyphonic_2024_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/27B7FE4482F7BCD37F23B2336362B51B/Akusmata_Polyphonic_2024_",
                "en": "http://www.vuotalo.fi/en/events/event/27B7FE4482F7BCD37F23B2336362B51B/Akusmata_Polyphonic_2024_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Akusmata Polyphonic 2024",
                "sv": "Akusmata Polyphonic 2024",
                "en": "Akusmata Polyphonic 2024"
            },
            "description": {
                "fi": "<p>Akusmata Polyphonic 2024 on intensiivinen äänitaiteen ja elektronisen musiikin tapahtuma Vuotalossa.</p><p>Kutsutut muusikot, säveltäjät ja äänitaiteilijat tarjoavat yleisölle laajan kirjon uutta äänellistä ilmaisua kokeellisen elektronisen musiikin, äänitaiteen ja ambient-musiikin alueilta.<br> <br>Ohjelmaan kuuluu modulaarisia äänijärjestelmiä, tee-se-itse-musiikkisoittimia ja asenteella improvisoitua musiikkia.</p><p>Tapahtumassa esiintyy taiteilijoita Färsaarilta, Grönlannista, Tanskasta ja Suomesta, mukana myös ainutlaatuinen Cracklebox Orchestra!</p><p>Vapaa pääsy</p>",
                "sv": "<p>Akusmata Polyphone 2024 är ett intensivt ljudkonst- och musikevenemang i Nordhuset.</p><p>De inbjudna musikerna, kompositörerna och ljudkonstnärerna bjuder publiken på ett brett spektrum av nya ljudliga uttryck inom den experimentella elektroniska musiken, ljudkonsten och ambient-musiken.</p><p>Fri entré</p>",
                "en": "<p>Akusmata Polyphonic 2024 is an intensive sound art and electronic music event at Vuosaari House.</p><p>Invited musicians, composers and sound artists offer the audience a wide spectrum of new sonic expression from the fields of experimental electronic music, sound art, and ambient.</p><p>The program includes modular sound systems, do-it-yourself musical instruments, and improvised music with attitude.</p><p>The event features performers from the Faroe Islands, Greenland, Denmark and Finland, including the unique Cracklebox Orchestra!</p><p>Free entrance</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63126/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}