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

{
    "meta": {
        "count": 19432,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=134",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=132"
    },
    "data": [
        {
            "id": "kulke:64650",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152695,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-02T09:35:18.377356Z",
                    "last_modified_time": "2024-10-02T09:35:18.377368Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758482.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152695/?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": "2024-10-02T09:35:18.358648Z",
            "last_modified_time": "2024-12-20T01:14:07.895427Z",
            "date_published": null,
            "start_time": "2024-11-16T09:00:00Z",
            "end_time": "2024-11-16T16: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9AA748011EADF85BB19535A22A334738/Ukrainalainen_lastenfestivaali_Juhlitaan_yhdessa_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9AA748011EADF85BB19535A22A334738/Ukrainska_Dagen_-_Vi_firar_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vietämme yhdessä unohtumattoman päivän täynnä taidetta, musiikkia, tanssia ja teatteria! Приєднуйтеся до нас 16 листопада на незабутній день, наповнений мистецтвом, музикою, танцями та театром!",
                "sv": "Kom med oss för en oförglömlig dag fylld av konst, musik, dans och teater! Приєднуйтеся до нас 16 листопада на незабутній день, наповнений мистецтвом, музикою, танцями та театром!"
            },
            "description": {
                "fi": "<p>Vietämme yhdessä unohtumattoman päivän täynnä taidetta, musiikkia, tanssia ja teatteria! Приєднуйтеся до нас 16 листопада на незабутній день, наповнений мистецтвом, музикою, танцями та театром!</p><p>Työpajat: Päästä luovuutesi valloilleen kuvataiteen, keramiikan, tanssin, laulun, karaoken ja monen muun toiminnan avulla!<br> <br>Teatteri-, tanssi- ja musiikkiesitykset: Nauti kiehtovista esityksistä, jotka inspiroivat ja ilahduttavat.<br> <br>Festivaalin järjestävät Ad Astra sekä ukrainalaisten taiteilijoiden ja taidekasvattajien verkosto \"Hei-Hei\".</p><p>Tulkaa mukaan juhlimaan!</p><p>Vapaa pääsy.</p><p>Майстер-класи: <br>Розкрийте свою творчість через заняття мистецтвом , керамікою, танцями, співом та  іншими цікавостями!<br> <br>Театральні та танцювально-музичні виступи: <br>Насолоджуйтесь захопливими виставами, які надихнуть і подарують радість.<br> <br>Фестиваль організовано Ad Astra та Мережею українських митців і арт-педагогів у Фінляндії «Hei-Hei».<br> <br>Святкуймо разом!</p>",
                "sv": "<p>Kom med oss för en oförglömlig dag fylld av konst, musik, dans och teater! Приєднуйтеся до нас 16 листопада на незабутній день, наповнений мистецтвом, музикою, танцями та театром!</p><p>Workshops: Släpp loss din kreativitet med aktiviteter inom konst, keramik, dans, sång, karaoke och mycket mer!<br> <br>Teater- och dans-musikföreställningar: Njut av fängslande föreställningar som kommer att inspirera och glädja.<br> <br>Festivalen arrangeras av Ad Astra och nätverket för ukrainska konstnärer och konstpedagoger i Finland \"Hei-Hei\". Gratis inträde!<br> <br>Låt oss fira tillsammans!</p><p>Майстер-класи: <br>Розкрийте свою творчість через заняття мистецтвом , керамікою, танцями, співом та  іншими цікавостями!<br> <br>Театральні та танцювально-музичні виступи: <br>Насолоджуйтесь захопливими виставами, які надихнуть і подарують радість.<br> <br>Фестиваль організовано Ad Astra та Мережею українських митців і арт-педагогів у Фінляндії «Hei-Hei».<br> <br>Святкуймо разом!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Ukrainalainen lastenfestivaali – Juhlitaan yhdessä! – Український дитячий фестиваль!",
                "sv": "Ukrainska Dagen - Vi firar! – Український дитячий фестиваль!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64650/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64424",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152190,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-22T12:14:56.685872Z",
                    "last_modified_time": "2024-08-22T12:14:56.685887Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757167.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152190/?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": "2024-08-22T12:14:56.661759Z",
            "last_modified_time": "2024-12-20T01:14:07.806385Z",
            "date_published": null,
            "start_time": "2024-11-16T09:00:00Z",
            "end_time": "2024-11-16T12: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CC966B81A60C2DA5E40B4DEAC6CD2205/Annantalon_taidelauantai_Luonnon_aanella_-soitinrakennustyopaja",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CC966B81A60C2DA5E40B4DEAC6CD2205/Annegardens_konstlordag_Naturljud_instrumentworkshop_",
                "en": "http://www.annantalo.fi/en/events/event/CC966B81A60C2DA5E40B4DEAC6CD2205/Annantalo_Art_Saturday_Nature_s_Voice_instrument_building_workshop"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.",
                "sv": "På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken. Vi erbjuder non-stop workshopverksamhet som är öppen för alla, där du kan titta in en stund eller stanna längre.",
                "en": "At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer."
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.</p><p><b>Luonnon äänellä -soitinrakennustyöpaja</b><br> <br>Soitinrakennustyöpajassa tehdään omat soittimet luonnon- ja kierrätysmateriaaleista. Rakennamme muun muassa rikkakasvista huiluja ja erilaisista korsista ja heinistä suteja.   <br>Työpajan lopuksi on yhteinen musisointihetki halukkaille. <br> <br>Työpajan ohjaa taiteilija-muusikko Katri Oikarinen. <br> <br>Työpaja on osa Annantalon Äänen äärellä -näyttelyä, 28.9.2024 – su 2.2.2025. Näyttely järjestetään yhteistyössä taidejärjestö MUU ry:n kanssa. <br> <br>Osallistumiseen ei tarvita ennakkotaitoja eikä täydellistä suomen kielen taitoa. Annantalon taidelauantai on maksuton.<br>Tarjolla kuulosuojaimia ja muita aistiapuvälineitä. Lisäksi käytössä on erillinen hiljainen tila.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken. Vi erbjuder non-stop workshopverksamhet som är öppen för alla, där du kan titta in en stund eller stanna längre.</p><p><b>Naturljud – instrumentworkshop</b></p><p>I instrumentworkshoppen tillverkar vi egna instrument av naturliga och återvunna material.</p><p>Vi tillverkar bland annat flöjter av ett ogräs och borstar av olika slags gräs och ris. Workshoppen avslutas med en musikstund där alla villiga får spela med. Workshoppens språk är finska och engelska. Det går också att delta även om du inte talar dessa språk.</p><p>Handledare är konstnären och musikern Katri Oikarinen.</p><p>Workshoppen ingår i utställningen Vid ljudet på Annegården 28.9.2024–2.2.2025. Utställningen ordnas i samarbete med konstföreningen MUU ry.</p><p>Inga förkunskaper och ingen anmälan krävs för att delta. Annegårdens konstlördag är avgiftsfri.<br>Workshopparnas språk varierar, men inga kunskaper i finska krävs för att delta. Hörselskydd och andra hjälpmedel finns tillgängliga för barn med särskilda behov. Det finns också ett separat tyst utrymme.</p><p>Varmt välkomna till Annegården på lördagar!</p>",
                "en": "<p>At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer.</p><p><b>Nature's Voice instrument building workshop</b></p><p>In the instrument building workshop, you make your own musical instruments from natural and recycled materials.</p><p>We build, for example, reed flutes and various brushes from reeds and weeds. At the end of the workshop, everyone that wants to can play their new instruments together. This workshop is held in Finnish and English. You can also participate without knowing the languages in question. <br>The workshop is led by artist-musician Katri Oikarinen.</p><p>The workshop is part of the Annantalo World of Sound exhibition, which is held on 28 September 2024 – 2 February 2025.  <br>The exhibition is organized in cooperation with Art Association MUU.</p><p>No advance skills or registration is required to participate. The Annantalo Art Saturday is free of charge.<br>The language of the workshops varies, Finnish language skills are not required to participate. Hearing protection and other aids are available for children with special needs. In addition, there is a separate quiet space.</p><p>A warm welcome to Annantalo on Saturday!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Annantalon taidelauantai: Luonnon äänellä -soitinrakennustyöpaja",
                "sv": "Annegårdens konstlördag: Naturljud – instrumentworkshop",
                "en": "Annantalo Art Saturday: Nature's Voice instrument building workshop"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64424/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63821",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/a-la-malmi-pekka-nisu-ja-ville-leinonen-soolo-malmitalo-18621646/",
                        "sv": "https://www.lippu.fi/event/a-la-malmi-pekka-nisu-ja-ville-leinonen-soolo-malmitalo-18621646/",
                        "en": "https://www.lippu.fi/event/a-la-malmi-pekka-nisu-ja-ville-leinonen-soolo-malmitalo-18621646/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151893,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T18:15:10.753118Z",
                    "last_modified_time": "2024-07-25T18:15:10.753134Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753142.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151893/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T18:15:10.719545Z",
            "last_modified_time": "2024-12-20T01:14:07.716910Z",
            "date_published": null,
            "start_time": "2024-11-15T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/71A08655F2B9B8F4F3820FFAF4578D67/Pekka_Nisu_ja_Ville_Leinonen_soolo_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/71A08655F2B9B8F4F3820FFAF4578D67/Pekka_Nisu_och_Ville_Leinonen_solo_",
                "en": "http://www.malmitalo.fi/en/events/event/71A08655F2B9B8F4F3820FFAF4578D67/Pekka_Nisu_and_Ville_Leinonen_solo_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Pekka Nisu esittää sydänmaarockia. Ville Leinonen nähdään mies ja kitara -keikalla.",
                "sv": "Pekka Nisu spelar rock från hjärtat av landet. Ville Leinonen får vi se i en spelning med uppsättningen man och gitarr.",
                "en": "Pekka Nisu plays heartland rock. Ville Leinonen puts on a man-and-guitar gig."
            },
            "description": {
                "fi": "<p>Pekka Nisu esittää sydänmaarockia. Ville Leinonen nähdään mies ja kitara -keikalla.</p><p>Musiikissa yhdistyvät persoonallisella tavalla countryvaikutteinen rock ja tarinat, jotka sijoittuvat suomalaisen maaseudun peltomaisemiin ja pikkukaupunkeihin. Uusi albumi Lauhanmaa on koskettava ja kirkas kuvaus maaseudun nykytilasta. Levyn tarinoissa yksityisestä kokemuksesta tulee yhteinen.</p><p>Pekka Nisu tunnetaan vuonna 2020 lopettaneen Pimeys-yhtyeen laulaja-kitaristina ja yhtyeen lukuisien klassikoiden kirjoittajana. Uusi albumi on Nisun kolmas soololevy ja jatkumoa Papillon (2021) ja Kaiken täytyy mennä (2022) -albumeille. Nisun energisen ja sielukkaan yhtyeen esiintymiset ovat kohottavia ja vapauttavia. Bändissä soittavat Jukkis Virtanen (basso), Axel Virkkunen (kitara), Julius Sihvonen (koskettimet) ja Ville Hatanpää (rummut).</p><p>Ville Leinonen on suomalainen laulaja-lauluntekijä. Leinosen ensimmäinen pitkäsoitto Raastinlauluja ilmestyi vuonna 1997. Vuonna 1998 Leinonen perusti Valumo-yhtyeen, jolta ilmestyi neljä levyä vuosina 2000–2005. Tänä aikana Leinonen julkaisi myös Suudelmitar-soololevyn. Vuonna 2006 Leinoselta ilmestyi lyriikkakokoelma Äänettömiä salamoita. Tällä hetkellä Ville Leinonen on mahdollista nähdä livenä perinteisellä mies ja kitara -tyylillä. Esitettävät kappaleet ovat Leinosen omia.</p><p>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoille parhaat itsenäisen musiikin tekijät. Laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa.</p>",
                "sv": "<p>Pekka Nisu spelar rock från hjärtat av landet. Ville Leinonen får vi se i en spelning med uppsättningen man och gitarr.</p><p>Musiken kombinerar countryinfluerad rock och berättelser som utspelar sig i den finländska landsbygdens åkerlandskap och småstäder på ett mycket personligt sätt. Det nya albumet Lauhanmaa är en gripande och levande skildring av hur livet på landsbygden ser ut i dag. I berättelserna på albumet blir den privata upplevelsen gemensam.</p><p>Pekka Nisu är känd som sångare och gitarrist i bandet Pimeys som lades ner år 2020, och författare till många av bandets klassiker. Det nya albumet är Nisus tredje soloalbum och en fortsättning på albumen Papillon (2021) och Kaiken täytyy mennä (2022). De energiska och själfulla framträdandena av Nisus band är upplyftande och befriande. Bandet består av Jukkis Virtanen (bas), Axel Virkkunen (gitarr), Julius Sihvonen (keyboard) och Ville Hatanpää (trummor).</p><p>Ville Leinonen är en finländsk sångare och låtskrivare. Leinonens första lp-skiva Raastinlauluja gavs ut år 1997. År 1998 grundade Leinonen bandet Valumo, som släppte fyra album åren 2000–2005. Under denna period gav Leinonen också ut soloalbumet Suudelmitar. År 2006 gav Leinonen ut en diktsamling med titeln Äänettömiä salamoita. För närvarande kan Ville Leinonen ses live i den traditionella man och gitarr-stilen. Låtarna som framförs är Leinonens egna.</p>",
                "en": "<p>Pekka Nisu plays heartland rock. Ville Leinonen puts on a man-and-guitar gig.</p><p>In a personal way, their music combines country-inspired rock and stories set in the rural landscapes and small towns of the Finnish countryside. Their new album, Lauhanmaa, is a touching and clear description of the current state of the countryside. In the album’s stories, private experiences become shared.</p><p>Pekka Nisu is known as the lead guitarist and creator of numerous classics by Pimeys, who disbanded in 2020. The new album is Nisu's third solo album and a continuation of Papillon (2021) and Kaiken täytyy mennä (2022). The performances of Nisu's energetic and soulful band are uplifting and liberating. The band consists of Jukkis Virtanen (bass), Axel Virkkunen (guitar), Julius Sihvonen (keyboards) and Ville Hatanpää (drums).</p><p>Ville Leinonen is a Finnish singer-songwriter. Leinonen's first long play, Raastinlauluja, was released in 1997. In 1998, Leinonen founded a band called Valumo, who released four albums in 2000–2005. During this time, Leinonen also released a solo album, Suudelmitar. In 2006, Leinonen released a lyric collection, Äänettömiä salamoita. Today, Ville Leinonen performs live in the traditional man-and-guitar style. The songs Leinonen plays are his own.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Pekka Nisu ja Ville Leinonen (soolo) – A la Malmi",
                "sv": "Pekka Nisu och Ville Leinonen (solo) – A la Malmi",
                "en": "Pekka Nisu and Ville Leinonen (solo) – A la Malmi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63821/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63051",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "38,50 €, Show & Dinner 98,50 €",
                        "sv": "38,50 €, Show & Dinner 98,50 €",
                        "en": "38,50 €, Show & Dinner 98,50 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-18288987",
                        "sv": "https://www.lippu.fi/event/name-18288987",
                        "en": "https://www.lippu.fi/event/name-18288987"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 10761,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-12T10:13:54.389514Z",
                    "last_modified_time": "2024-02-12T10:13:54.389533Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744601.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10761/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-12T10:13:54.350951Z",
            "last_modified_time": "2024-12-20T01:14:07.617091Z",
            "date_published": null,
            "start_time": "2024-11-15T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/DEC61E26726339597FE4B39F714F9032/Virve_Rosti_Freeman_Menneisyyden_Vangit",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/DEC61E26726339597FE4B39F714F9032/Virve_Rosti_Freeman_Menneisyyden_Vangit",
                "en": "http://www.savoyteatteri.fi/en/events/event/DEC61E26726339597FE4B39F714F9032/Virve_Rosti_Freeman_Menneisyyden_Vangit"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Legendaarinen kokoonpano Virve Rosti, Freeman & Menneisyyden Vangit Savoy-teatterissa parhaimpaan pikkujouluaikaan!",
                "sv": "Den legendariska ensemblen Virve Rosti, Freeman & Menneisyyden Vangit på Savoy-teatern till lillajul!",
                "en": "Legendary line-up of Virve Rosti, Freeman & Menneisyyden Vangit at the Savoy Theatre for the Christmas party season!"
            },
            "description": {
                "fi": "<p>Legendaarinen kokoonpano Virve Rosti, Freeman & Menneisyyden Vangit Savoy-teatterissa parhaimpaan pikkujouluaikaan!</p><p>Konserttiin on myynnissä Savoy-teatterin Minne-ravintolassa herkulliset kolmen ruokalajin illalliset, jotka tarjoillaan kaksi tuntia ennen esitystä.</p><p>Illan livejatkot alkavat esityksen jälkeen. Lämpimästi tervetuloa!<br> <br>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>Show & Dinner -lippu sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun Savoy-teatterin yhteydessä sijaitsevassa ravintolassa kaksi tuntia ennen esitystä.</p><p>Menu CLASSIC<br>Rapuskagen, siianmätiä ja mallasleipää L<br>Kokonaisena paahdettua pihvikarjan fileetä, perunakakkua ja punaviini-tryffelikastiketta L,G<br>Maitosuklaaleivos, vadelmakreemiä ja chantillykermaa VL,G<br>Reilunkaupan luomukahvi/tee</p><p>TAI</p><p>Menu GREEN<br>Suppilovahverokeittoa ja tatticrostini V,G<br>10-tuntista suolapunajuurta, muhennettua kauraa ja saksanpähkinävinaigrettea V,G<br>Maitosuklaaleivos, vadelmakreemiä ja chantillykermaa VL,G<br>Reilunkaupan luomukahvi/tee</p><p>Lisätiedot, erikoisruokavaliot, juomatilaukset ja yli 20 hengen Show & Dinner -ryhmävaraukset: terhi.grohn@sunbornevents.fi</p>",
                "sv": "<p>Den legendariska ensemblen Virve Rosti, Freeman & Menneisyyden Vangit på Savoy-teatern till lillajul!</p><p>Savoy-teaterns restaurang Minne har läckra trerättersmiddagar till salu i samband med konserten. Dessa serveras två timmar före konserten börjar.</p><p>Kvällens live-efterfest börjar efter uppträdandet. Varmt välkommen!</p><p>Längd ca 2 h, inklusive paus</p><p>Parkett F18 servering av alkoholdrycker. Balkong T, ingen servering av alkoholdrycker.</p><p>Show & Dinner-biljetten inkluderar en entrébiljett samt en kött- eller vegetarisk meny som serveras till bordet i restaurangen som finns i anslutning till Savoy-teatern två timmar före föreställningen.<br>Mer information, specialdieter och dryckesbeställningar: terhi.grohn@sunbornevents.fi</p>",
                "en": "<p>Legendary line-up of Virve Rosti, Freeman & Menneisyyden Vangit at the Savoy Theatre for the Christmas party season!</p><p>Delicious three-course dinners are on sale for the concert at the Savoy Theatre’s Minne restaurant, served two hours before the performance.</p><p>The evening’s live after-party begins after the performance. You’re warmly welcome!</p><p>Duration: approx. 2 h, including an intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. The balcony is a non-licensed area without an age limit.</p><p>The Show & Dinner ticket includes an admission ticket and a meat or vegetarian meal served to tables at the Savoy Theatre restaurant two hours before the performance.<br>Additional information, special dietary requirements and drink orders: terhi.grohn@sunbornevents.fi</p>"
            },
            "provider": {
                "fi": "Sunborn Events Oy",
                "sv": "Sunborn Events Oy",
                "en": "Sunborn Events Oy"
            },
            "name": {
                "fi": "Virve Rosti, Freeman & Menneisyyden Vangit – Mukiinmenevät pikkujoulut Savoyssa",
                "sv": "Virve Rosti, Freeman & Menneisyyden Vangit",
                "en": "Virve Rosti, Freeman & Menneisyyden Vangit"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63051/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64303",
            "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: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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152127,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-16T11:15:03.433837Z",
                    "last_modified_time": "2024-08-16T11:15:03.433856Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753861.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152127/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-16T11:15:03.405869Z",
            "last_modified_time": "2024-12-20T01:14:07.512068Z",
            "date_published": null,
            "start_time": "2024-11-15T16:00:00Z",
            "end_time": "2024-11-15T19: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E3091ED4258D7D4BBFD0A309C606FFC0/Daniel_Al_Attrash_SINIMUSO_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E3091ED4258D7D4BBFD0A309C606FFC0/Daniel_Al_Attrash_SINIMUSO_",
                "en": "http://www.kanneltalo.fi/en/events/event/E3091ED4258D7D4BBFD0A309C606FFC0/Daniel_Al_Attrash_SINIMUSO_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.",
                "sv": "Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.",
                "en": "Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment."
            },
            "description": {
                "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Etnosoi!-festivaalin kanssa toteutetussa klubi-illassa kuullaan Daniel Al Attrashia ja Sinimusoa, joka on Etnosoi!-festivaalin artistivieras.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Aloitetaan viikonloppu yhdessä!</p><p><b>Daniel Al-Attrash</b><br>Liity Daniel Al-Attrashin ja hänen ystäviensä seuraan, kun he lähtevät musiikilliselle odysseialle Lähi-idän melodioiden ja soundien halki. Daniel Al-Attrashin esittämä konsertti vie sinut matkalle Syyrian, Turkin ja Irakin sydämeen, jossa muinaiset perinteet kietoutuvat yhteen nykyajan ilmaisujen kanssa. Uppoudu melodioiden ja rytmien rikkaaseen kirjoon, kun muusikot sukeltavat arabialaisen ja turkkilaisen musiikin lumoavaan maailmaan. Kappaleet vaihtelevat aavemaisen kauniista balladeista eläväisiin kansansävelmiin ja niistä jokainen esittelee näiden erilaisten kulttuurien ainutlaatuista viehätysvoimaa.</p><p>Daniel AlAttrash näyttää koko konsertin ajan, miten hyvin hän hallitsee tämän musiikin monimutkaiset melodiat ja pienimmätkin sävyt, ja kutsuu sinut kokemaan ne hienovaraiset vivahteet, jotka antavat itämaiselle musiikille sen erityisen viehätyksen.</p><p>Daniel Al Attrash – qanun<br>Ana Lazar – viulu<br>Ali Haitham – ud<br>Ricardo Padilla – rummut/lyömäsoittimet<br>Repkat Parhat – basso/kitara</p><p><b>SINIMUSO</b><br>SINIMUSO – tulevaisuuden naiset Bambaran kielellä – syntyi vuonna 2022 osana World Wide Women – naismuusikot rajojen ylittäjinä ja tulevaisuuden rakentajina -hanketta. SINIMUSO yhtyeessä keskitytään naisinstrumentalismiin ja erilaisiin musiikkiperinteisiin niin Malissa kuin suomalais-ugrilaisten kansojen alueella. SINIMUSO näyttää tietä tulevaisuuteen tuomalla valokeilaan seitsemän virtuoottista naismuusikkoa ja heidän yhteistyönsä. Musiikissa malilainen ja suomalainen perinne.  Kalevalamittaiset runolaulut ja vanhat kantelemelodiat kohtaavat Sahara-bluesin, groovaavat Bambara -kansan rytmit, villin tanssin ja sielukkaat peul-kansan melodiat. Laulujen aiheet liittyvät naisten elämään erilaisissa elämän vaiheissa. Yhtyeen debyyttialbumi, Nouskaa sisaret, julkaistaan lokakuussa 2024 Pohjoismaihin suuntautuvan levynjulkaisukiertueen kera.</p><p>Kadidiatou Bah, laulu (Mali)<br>Jenni Hanikka, puhaltimet, laulu (Suomi)<br>Marieta Dembélé, rummut (Mali)<br>Bintou Koita, lyömäsoittimet, laulu (Mali)<br>Marjo Smolander, kanteleet, laulu (Suomi)<br>Tima Maiga, kitara, laulu (Mali)<br>Ouassa Sogoba, bala, laulu (Mali)</p><p>Global Club Nights -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu Sibelius-Akatemian globaalin musiikin osaston, Kanneltalon ja Etnosoi!-festivaalin yhteistyönä.</p>",
                "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper.</p><p>I klubben som anordnas tillsammans med Etnosoi!-festivalen hör vi Daniel Al Attrash och SINIMUSO, som är en artistgäst på Etnosoi!-festivalen.</p><p>Gratis klubbkvällar börjar i tid, så barn är också välkomna i vuxet sällskap. Låt oss börja helgen tillsammans!</p>",
                "en": "<p>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment.</p><p>Global Club Night on November the 15th is part of Etnosoi! festival.</p><p>The free club nights start on time, so children are also welcome with an adult. Let’s start the weekend together!</p><p><b>Daniel Al-Attrash</b><br>Join Daniel Al-Attrash and friends as they embark on a musical odyssey through the melodies and sounds of the Middle East. Presented by Daniel Al-Attrash, this concert aims to take you on a journey to the heart of Syria, Turkey, and Iraq, where ancient traditions intertwine with contemporary expressions. Immerse yourself in the rich tapestry of melodies and rhythms as the musicians delve into the mesmerizing world of Arabic and Turkish music. From hauntingly beautiful ballads to lively folk tunes, each piece showcases the unique allure of these diverse cultures.</p><p>Throughout the concert, Daniel AlAttrash will showcase his mastery of the intricate melodies and microtones inherent in this music, inviting you to experience the subtle nuances that give Eastern music its distinctive charm.</p><p>Daniel Al Attrash – qanun<br>Ana Lazar – violin<br>Ali Haitham – oud<br>Ricardo Padilla – drums/percussion<br>Repkat Parhat – bass/guitar</p><p><b>SINIMUSO</b><br> SINIMUSO – meaning “Women of the Future” in the Bambara language – was born in 2022 as part of the World Wide Women – Women Musicians Crossing Borders and Building Futures project. SINIMUSO focuses on female instrumentalism and various musical traditions from Mali and the regions of the Finno-Ugric peoples. SINIMUSO shows the way to the future by spotlighting seven virtuoso female musicians and collaborations between them. The music is based on Malian and Finnish traditions. Kalevala-metre rune songs and ancient kantele melodies meet Sahara blues, the groovy rhythms of the Bambara people, wild dance and soulful melodies of the Peul (Fulani) people. The songs’ themes relate to the lives of women at various stages of life. The band’s debut album, Rise Up, Sisters, will be released in October 2024, accompanied by a Nordic tour.</p><p>Kadidiatou Bah, vocals (ML)<br>Jenni Hanikka, wind instruments, vocals<br>Marieta Dembélé, drums (ML)<br>Bintou Koita, percussion, vocals (ML)<br>Marjo Smolander, kanteles, vocals<br>Tima Maiga, guitar, vocals (ML)<br>Ouassa Sogoba, bala (balafon), vocals (ML)</p><p>The events attempt to build bridges between all music lovers and their communities.</p><p>Global Club Nights (GCN) is produced in collaboration with the Global music Department of Sibelius Academy and Cultural Centre Kanneltalo and Etnosoi! festival.</p><p>Free event</p>"
            },
            "provider": null,
            "name": {
                "fi": "Daniel Al Attrash | SINIMUSO – Global Club Nights / Etnosoi!",
                "sv": "Daniel Al Attrash | SINIMUSO – Global Club Nights / Etnosoi!",
                "en": "Daniel Al Attrash | SINIMUSO – Global Club Nights / Etnosoi!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64303/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64867",
            "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:42/?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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-15T10:14:35.326226Z",
                    "last_modified_time": "2024-11-15T10:14:35.326245Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760588.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-15T10:14:35.261431Z",
            "last_modified_time": "2024-12-20T01:14:07.316108Z",
            "date_published": null,
            "start_time": "2024-11-15",
            "end_time": "2024-12-20",
            "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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4F29939AA891A9588E4A12AA54C2842D/Heijastuksia",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4F29939AA891A9588E4A12AA54C2842D/Heijastuksia",
                "en": "http://www.malmitalo.fi/en/events/event/4F29939AA891A9588E4A12AA54C2842D/Heijastuksia"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Malmitalon aulassa esillä Tapanilan kylätilalla toimivan kamerakerhon valokuvaajien töitä."
            },
            "description": {
                "fi": "<p>Malmitalon aulassa esillä Tapanilan kylätilalla toimivan kamerakerhon valokuvaajien töitä.</p><p>Kuvaajat: Heikki Ahola, Ilmo Kolehmainen, Kalevi Ristola.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Heijastuksia",
                "sv": "Heijastuksia",
                "en": "Heijastuksia"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64867/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64486",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152482,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-19T13:14:25.032309Z",
                    "last_modified_time": "2024-09-19T13:14:25.032323Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757547.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152482/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-19T13:14:25.015901Z",
            "last_modified_time": "2024-12-20T01:14:07.175720Z",
            "date_published": null,
            "start_time": "2024-11-15T10:00:00Z",
            "end_time": "2024-11-15T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/979708A21F50512640C6638A89B294A9/Liikkeella_marraskuussa_Soup_Talks",
                "sv": "http://www.caisa.fi/sv/evenemang/event/979708A21F50512640C6638A89B294A9/Liikkeella_marraskuussa_Soup_Talks",
                "en": "http://www.caisa.fi/en/events/event/979708A21F50512640C6638A89B294A9/Moving_in_November_Soup_Talks"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.",
                "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.",
                "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival."
            },
            "description": {
                "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>"
            },
            "provider": null,
            "name": {
                "fi": "Liikkeellä marraskuussa: Soup Talks – Panel with local artist",
                "sv": "Liikkeellä marraskuussa: Soup Talks – Panel with local artist",
                "en": "Moving in November: Soup Talks – Panel with local artist"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64486/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64476",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,80 € / 33,90 €",
                        "sv": "17,80 € / 33,90 €",
                        "en": "17,80 € / 33,90 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-kulttuurikeskus-caisa-19127743/",
                        "sv": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-kulttuurikeskus-caisa-19127743/",
                        "en": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-kulttuurikeskus-caisa-19127743/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152398,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-12T07:14:29.073041Z",
                    "last_modified_time": "2024-09-12T07:14:29.073062Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757530.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152398/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-12T07:14:29.058596Z",
            "last_modified_time": "2024-12-20T01:14:07.083823Z",
            "date_published": null,
            "start_time": "2024-11-14T19: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/6ABEE1F1911DD6EBAA31092CA4EC0A72/Liikkeella_marraskuussa_R_becca_Chaillon_Whitewashing_LOPPUUNMYYTY",
                "sv": "http://www.caisa.fi/sv/evenemang/event/6ABEE1F1911DD6EBAA31092CA4EC0A72/Liikkeella_marraskuussa_R_becca_Chaillon_Whitewashing_UTSALD",
                "en": "http://www.caisa.fi/en/events/event/6ABEE1F1911DD6EBAA31092CA4EC0A72/Moving_in_November_R_becca_Chaillon_Whitewashing_SOLD_OUT"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Termi \"whitewashing\" viittaa usein valkoisiin näyttelijöihin, jotka esittävät rodullistettuja hahmoja. Tässä teoksessa Rébecca Chaillon määrittelee termin uudelleen ja ottaa sen käyttöön käsitelläkseen ihon vaalentamista.",
                "sv": "Begreppet ”whitewashing” syftar ofta på vita skådespelare som spelar karaktärer av en viss ras. I detta verk omdefinierar Rébecca Chaillon termen och använder den för att behandla hudblekning.",
                "en": "The term \"Whitewashing\" often refers to white actors portraying racialized characters. In this performance, Rébecca Chaillon redefines and reclaims the term to address skin lightening."
            },
            "description": {
                "fi": "<p>Termi \"whitewashing\" viittaa usein valkoisiin näyttelijöihin, jotka esittävät rodullistettuja hahmoja. Tässä teoksessa Rébecca Chaillon määrittelee termin uudelleen ja ottaa sen käyttöön käsitelläkseen ihon vaalentamista.</p><p>Näyttämöllä Chaillon hankaa valkaisuainetta ensin lattialle ja sitten iholleen tutkien jännitettä, joka syntyy valkoisessa yhteiskunnassa mustan siivoojan ruumiiseen. Tämä rituaali vahvistaa hänen olemassaoloaan rasismin etäännyttävää voimaa vastaan ja kutsuu yleisön seuraamaan läheltä, kuinka ruumis, jonka yhteiskunta yrittää tehdä näkymättömäksi, tulee yhä näkyvämmäksi ja vahingoittumattomaksi.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 7.–17.11.2024. Osana festivaalia Chaillon käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 13.11. klo 12 Caisassa.</p><p><b>Rébecca Chaillon</b> on kirjailija, ohjaaja ja esiintyjä. Hän ammentaa inspiraatiota monista identiteeteistä luodakseen rohkeita ja transgressiivisia teoksia, joissa yhdistyvät selfmakeup-praktiikka ja kiinnostus ruokaan osana näyttämötaidetta. Chaillon syntyi Martiniquella ja kasvoi Picardiassa, Ranskassa.</p><p>Kesto: 80 minuuttia<br>Huom! Teos sisältää alastomuutta ja viittauksia rasismiin.</p><p>Ohjaus: Récca Chaillon<br>Teksti: Rébecca Chaillon ja Aurore Déon<br>Esiintyjät: Rébecca Chaillon ja Aurore Déon<br>Yleinen näyttämöjohtaminen ja tekninen operointi: Suzanne Péchenart<br>Käännös ja tekstitys: Lisa Wegener<br>Tuotanto/kehitys: L’Oeil Ecoute – Mara Teboul, Elise Bernard & Amandine Loriol<br>Vierailua tukee: Institut Français Finlande, Niilo Helanderin säätiö<br>Vierailu yhteistyössä: Caisa</p>",
                "sv": "<p>Begreppet ”whitewashing” syftar ofta på vita skådespelare som spelar karaktärer av en viss ras. I detta verk omdefinierar Rébecca Chaillon termen och använder den för att behandla hudblekning.</p><p>På scenen gnider Chaillon in blekmedel först på golvet och sedan på sin egen hud, och utforskar på så sätt den spänning som skapas i det vita samhället kring en svart städares kropp. Denna ritual bekräftar hennes existens mot rasismens avståndstagande kraft och bjuder in publiken att på nära håll följa hur en kropp som samhället försöker osynliggöra blir alltmer synlig och osårbar.</p><p>Verket är en del av festivalen Liikkeellä marraskuussa 7–17.11.2024. Som en del av festivalen kommer Chaillon att samtala med en lokal konstnär på det öppna evenemanget Soup Talks den 13 november kl. 12.00 i Caisa.</p><p><b>Rébecca Chaillon</b> är författare, regissör och skådespelare. Hon hämtar inspiration från flera olika identiteter för att skapa djärva och gränsöverskridande verk som kombinerar selfmakeup-praktiken med ett intresse för mat som en del av scenkonst. Chaillon föddes på Martinique och växte upp i Picardie i Frankrike.</p><p>Längd: 80 minuter</p><p>Obs! Verket innehåller nakenhet och referenser till rasism.</p><p>Regi:: Rébecca Chaillon<br>Text: Rébecca Chaillon och Aurore Déon<br>I rollerna: Rébecca Chaillon och Aurore Déon<br>Allmän scenledning och teknisk ledning: Suzanne Péchenart<br>Översättning och textning: Lisa Wegener<br>Produktion/utveckling: L’Oeil Ecoute – Mara Teboul, Elise Bernard & Amandine Loriol<br>Besöket stöds av: Institut Français Finlande, Niilo Helanders stiftelse<br>Besöket genomförs i samarbete med: Caisa</p>",
                "en": "<p>The term \"Whitewashing\" often refers to white actors portraying racialized characters. In this performance, Rébecca Chaillon redefines and reclaims the term to address skin lightening.</p><p>On stage, she scrubs bleach on the floor and her skin, exploring the tension of being a Black cleaning woman in a white society. This ritual affirms her existence against the alienating force of racism, inviting the audience to watch closely, as a body that society tries to render invisible becomes increasingly visible and undamaged.</p><p>The performance is part of Moving in November festival 7.-17.11.2024. As part of the festival, there will be an open discussion with Chaillon and local host called Soup Talk on the 13th of November at noon in Caisa.</p><p><b>Rébecca Chaillon</b>, an author, director, and performer, draws inspiration from her multiple identities to create bold and transgressive performances that incorporate her practice of artistic self-makeup and her fascination with food. Born in Martinique and raised in Picardy, she began her artistic journey in Paris, studying performing arts at the Conservatoire of the 20th arrondissement. She has worked with theatre companies like Entrées de jeu and she founded her own company: Dans le Ventre, in 2006.</p><p>Duration: 80 minutes<br>Please note: This performance contains references to racism and nudity.</p><p>Direction: Rébecca Chaillon<br>Text: Rébecca Chaillon and Aurore Déon<br>With: Rébecca Chaillon and Aurore Déon<br>General Stage Management & Technical Operations: Suzanne Péchenart<br>Translation and Subtitling: Lisa Wegener<br>Production / Development: L’Oeil Ecoute – Mara Teboul, Elise Bernard & Amandine Loriol <br>Visit supported by: Institut Français Finlande, Niilo Helander’s foundation<br>Visit in collaboration: Caisa</p>"
            },
            "provider": null,
            "name": {
                "fi": "Liikkeellä marraskuussa – Rébecca Chaillon: Whitewashing | LOPPUUNMYYTY",
                "sv": "Liikkeellä marraskuussa – Rébecca Chaillon: Whitewashing | UTSÅLD",
                "en": "Moving in November – Rébecca Chaillon: Whitewashing | SOLD OUT"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64476/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63345",
            "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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "43/35/20 €",
                        "en": "43/35/20 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3630693",
                        "en": "https://www.lippu.fi/eventseries/name-3630693"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150056,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-15T10:12:54.273889Z",
                    "last_modified_time": "2024-04-15T10:12:54.273903Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749075.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150056/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-15T10:12:54.249398Z",
            "last_modified_time": "2024-12-20T01:14:06.989192Z",
            "date_published": null,
            "start_time": "2024-11-14T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CB343B27EA76D44B7BAAFD1C059923A8/Caity_Gyorgy_CA_UMO_Helsinki_Jazz_Orchestra",
                "en": "http://www.savoyteatteri.fi/en/events/event/CB343B27EA76D44B7BAAFD1C059923A8/Caity_Gyorgy_CA_UMO_Helsinki_Jazz_Orchestra"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Cyrille Aiméen vierailu peruuntuu, korvaava solisti on ensiesiintymisensä Euroopassa tekevä jazzlaulaja Caity Gyorgy",
                "en": "Cyrille Aimée's visit has been cancelled and will be replaced by jazz vocalist Caity Gyorgy, making her European debut"
            },
            "description": {
                "fi": "<p>Cyrille Aiméen vierailu peruuntuu, korvaava solisti on ensiesiintymisensä Euroopassa tekevä jazzlaulaja Caity Gyorgy</p><p>Laulaja <b>Cyrille Aimée</b> on perunut henkilökohtaisten syiden vuoksi kaikki lähiaikojen esiintymiset, mukaan lukien yhteiskonsertit UMO Helsinki Jazz Orchestran kanssa to 14.11. Helsingin Savoy-teatterissa, pe 15.11. Flame Jazzissa Turun Sigyn-salissa ja la 16.11. Tampereen G Livelabissa.</p><p>Korvaavaksi esiintyjäksi ja UMOn solistiksi saapuu kanadalainen jazzvokalisti <b>Caity Gyorgy</b>. Kahdesti ”kotimaansa Grammyn” eli JUNO-palkinnon pokannut Gyorgy esiintyy nyt ensimmäistä kertaa Euroopassa. Hänen erityisalaansa ovat bebop ja swing, ja hän on hurmannut taidokkaalla scat-laulullaan yleisöt erityisesti Pohjois-Amerikassa ja Japanissa. Näyttävän esiintymisen ja upean laulun lisäksi Gyorgy on innokas kirjoittaja, joka säveltää musiikkia Great American Songbookin tyyliin. Hänen sävellyksensä ovat voittaneet lukuisia palkintoja, kuten pääpalkinnon John Lennon -laulukilpailun jazzkategoriassa 2021. Hän on julkaissut useita albumeja, mukaan lukien JUNO-palkitut Now Pronouncing 2021 ja Featuring 2022, sekä uusin, tänä syksynä ilmestynyt Hello! How Are You?. www.caitygyorgy.com</p><p>Konsertit kuuluvat UMO Helsinki Jazz Orchestran <b>The Great Voices</b> -sarjaan. Kiertueen johtaa <b>Teemu Takanen</b>, joka debytoi UMOn kapellimestarina. Konserttien kesto 2 h, sis. väliajan.</p><p><b>Vaihtoehdot lipun ostaneille:</b></p><p>Jos haluat tulla UMOn & Caity Gyorgyn Savoy-teatterin konserttiin, jo ostamasi lippu käy sellaisenaan eikä tämä vaadi sinulta mitään toimenpiteitä.</p><p>Jos et halua tulla UMOn & Caity Gyorgyn konserttiin, lipuista tulee hakea rahanpalautusta ke 13.11.2024. mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelu- tai toimitusmaksuja.</p><p>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/</p><p><i>While having a beautiful voice is plenty to recommend any singer, also knowing how to use it in the myriad ways that Caity Gyorgy does puts her high up the list of young singers to watch.</i> <br>- Cathy Riches, WholeNote</p><p><i>Canadian jazz singer Caity Gyorgy, in addition to having a warm voice and swinging phrasing, is a skilled songwriter whose originals sound as if they are from the 1950s with more modern lyrics. </i><br>- Scott Yanow, Downbeat</p><p>Katso Youtubesta:<br>https://youtu.be/mYdifXHFhec?si=j2lMAr0FSLdbQCMQ<br>https://youtu.be/90i4kraKVxk?si=4YrLmQyxJjS0Wz7f</p>",
                "en": "<p>Cyrille Aimée's visit has been cancelled and will be replaced by jazz vocalist Caity Gyorgy, making her European debut</p><p>The singer <b>Cyrille Aimée</b> has cancelled her all upcoming shows due to unforeseen personal circumstances, including her concerts with the UMO Helsinki Jazz Orchestra on Thursday 14 November at the Savoy Theatre in Helsinki, Friday 15 November at Flame Jazz in Sigyn Hall in Turku and Saturday 16 November at G Livelab in Tampere.</p><p>The Canadian jazz vocalist <b>Caity Gyorgy</b> will replace Aimée as UMO's soloist. A two time JUNO award winning Gyorgy is now performing in Europe for the first time. She is especially known for singing bebop and swing music. She has performed at jazz clubs and festivals across Canada, Mexico, Japan and the USA and has worked and recorded with incredible musicians including Christine Jensen, Pat LaBarbera, Jocelyn Gould, Ira Coleman, Bryn Roberts and Joe LaBarbera, to name a few. In addition to being a performer, Gyorgy is an avid writer and composes songs in the style of the Great American Songbook. Her compositions have been sung by other vocalists around the world, and have won multiple awards including the Grand Prize in the jazz category of the 2021 John Lennon Songwriting Contest.</p><p>She is currently signed to Brooklyn label La Reserve Records and has released several albums of original and standard music with them including her two JUNO award winning albums \"Now Pronouncing\"2021 and \"Featuring\" 2022 and her JUNO nominated album with pianist Mark Limacher titled \"You’re Alike, You Two” 2023. Her newest album \"Hello! How Are You?\" features Caity accompanied by her regular piano trio and was released on August 9th, 2024. www.caitygyorgy.com</p><p>The concerts are part of UMO Helsinki Jazz Orchestra's <b>The Great Voices</b> concert series. The tour is led by <b>Teemu Takanen</b>, who makes his debut as UMO's conductor. The duration of the concert is 2 hours, including an intermission.</p><p><b>Options for ticket buyers:</b></p><p>If you wish to come to UMO & Caity Gyorgy’s concert, the ticket you already bought will work as is and this does not require any action.</p><p>If you would like to cancel and don’t attend UMO & Caity Gyorgy’s concert, you can receive a refund for your ticket. Please direct all refund inquiries directly to the ticket seller. Deadline for the refund requests is 13.11.2024.</p><p>Savoy Theatre: Apply for a ticket money refund via this link: https://web.lippu.fi/palautus/</p><p><i>While having a beautiful voice is plenty to recommend any singer, also knowing how to use it in the myriad ways that Caity Gyorgy does puts her high up the list of young singers to watch.</i><br>- Cathy Riches, WholeNote</p><p><i>Canadian jazz singer Caity Gyorgy, in addition to having a warm voice and swinging phrasing, is a skilled songwriter whose originals sound as if they are from the 1950s with more modern lyrics.<i/> <br>- Scott Yanow, Downbeat</p><p>Youtube <br>https://youtu.be/mYdifXHFhec?si=j2lMAr0FSLdbQCMQ<br>https://youtu.be/90i4kraKVxk?si=4YrLmQyxJjS0Wz7f</p>"
            },
            "provider": {
                "fi": "UMO Helsinki Jazz Orchestra",
                "en": "UMO Helsinki Jazz Orchestra"
            },
            "name": {
                "fi": "Caity Gyorgy (CA) & UMO Helsinki Jazz Orchestra – Great Voices",
                "en": "Caity Gyorgy (CA) & UMO Helsinki Jazz Orchestra – Great Voices"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63345/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63820",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "24,50 € / 12,50 €",
                        "sv": "24,50 € / 12,50 €",
                        "en": "24,50 € / 12,50 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/bastien-und-bastienne-ooppera-malmitalo-18651498/",
                        "sv": "https://www.lippu.fi/event/bastien-und-bastienne-ooppera-malmitalo-18651498/",
                        "en": "https://www.lippu.fi/event/bastien-und-bastienne-ooppera-malmitalo-18651498/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151892,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T18:15:10.480675Z",
                    "last_modified_time": "2024-07-25T18:15:10.480691Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753141.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151892/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T18:15:10.452474Z",
            "last_modified_time": "2024-12-20T01:14:06.890909Z",
            "date_published": null,
            "start_time": "2024-11-14T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2C611BB472D19D1E3213976C17B76F53/PERUTTU_Bastien_und_Bastienne_-ooppera",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2C611BB472D19D1E3213976C17B76F53/INSTALLT_Bastien_und_Bastienne_opera",
                "en": "http://www.malmitalo.fi/en/events/event/2C611BB472D19D1E3213976C17B76F53/CANCELLED_Bastien_und_Bastienne"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kätketty tragedia lasten laulunäytelmässä.",
                "sv": "Dold tragedi i ett sångspel för barn.",
                "en": "A hidden tragedy in a children's singspiel."
            },
            "description": {
                "fi": "<p>Kätketty tragedia lasten laulunäytelmässä.</p><p>Paimentyttö Bastienne on surun murtamana, kun hänen elämänsä rakkaus Bastien jätti hänet ja lähti suureen kaupunkiin. Taikuri Colas saapuu kuitenkin paikalle ja pelastaa tämän parisuhteen järjen ja taian avulla. Mutta mitähän pianon takana tapahtumia tarkkailevalla terapeutilla on tähän kaikkeen sanottavana? Onko suhde lopulta oikeasti terve ja onko Colas niin viaton, kuin antaa ymmärtää?</p><p>Mozart sävelsi tämän suloisen pienen laulunäytelmän 12-vuotiaana, samalla taidokkaasti parodioiden pastoraalimusiikkia. Libretto pohjautuu vahvasti Jean-Jacques Rousseaun oopperasta tehtyyn parodianäytelmään.</p><p>Esityksessä lauletaan saksaksi, mutta puhutut dialogit käydään suomeksi.</p><p>Käsiohjelma 5 € / 15 €<br>Sisältää käännökset suomeksi.</p><p>Tekijäjoukko koostuu Sibelius-Akatemian opiskelijoista ja musiikin ammattilaisista.</p><p>Rooleissa:<br>Pinja Ukkola – Terapeutti (piano)<br>Rebekka Vallinen – Bastienne<br>Luke Scott – Colas<br>Jaime Estévez Moreira – Colaksen apuri (säkkipilli)<br>Sampo Rantalainen – Bastien</p><p>Ohjaus: Sakari Topi<br>Tuottaja: Rebekka Vallinen</p>",
                "sv": "<p>Dold tragedi i ett sångspel för barn.</p><p>Herdinnan Bastienne blir förkrossad när hennes livs kärlek Bastien lämnar henne för storstaden. Men så kommer trollkarlen Colas och räddar deras förhållande med hjälp av förnuft och magi. Men vad har månntro terapeuten som observerar händelserna bakom pianot att säga om allt detta? Är förhållandet sist och slutligen sunt, och är Colas så oskyldig som han antyder?</p><p>Mozart komponerade detta söta lilla sångspel vid 12 års ålder, samtidigt som han skickligt parodierade pastoral musik. Librettot bygger till stor del på Jean-Jacques Rousseaus parodi om opera.</p><p>Föreställningen sjungs på tyska, men de talade dialogerna är på finska.</p><p>Programblad 5 € / 15 €<br>Innehåller även översättningar till finska.</p><p>Upphovsmännen är studerande och musikproffs från Sibelius-Akademin.</p><p>I rollerna:<br>Pinja Ukkola – Terapeuten (piano)<br>Rebekka Vallinen – Bastienne<br>Luke Scott – Colas<br>Jaime Estévez Moreira – Colas assistent (säckpipa)<br>Sampo Rantalainen – Bastien</p><p>Regi: Sakari Topi<br>Producent: Rebecca Vallinen</p>",
                "en": "<p>A hidden tragedy in a children's singspiel.</p><p>Shepherdess Bastienne is devastated when the love of her life, Bastien, leaves her and goes to live in the big city. However, magician Colas arrives and rescues their relationship with reason and magic. But what do you think the therapist, observing the events behind the piano, has to say about all this? Is the relationship really healthy in the end and is Colas as innocent as we might think?</p><p>Mozart composed this adorable little singspiel at the age of 12, parodying pastoral music in a skillful manner. The libretto is heavily based on Jean-Jacques Rousseau's parody of the opera.</p><p>The performance is sung in German, but the spoken dialogue is in Finnish.</p><p>Handout 5€ / €15<br>Includes translations in Finnish.</p><p>The team consists of Sibelius Academy students and music professionals.</p><p>Cast:<br>Pinja Ukkola – Therapist (piano)<br>Rebekka Vallinen – Bastienne<br>Luke Scott – Colas<br>Jaime Estévez Moreira – Colas’ sidekick (bagpipes)<br>Sampo Rantalainen – Bastien</p><p>Director: Sakari Topi<br>Producer: Rebekka Vallinen</p>"
            },
            "provider": null,
            "name": {
                "fi": "PERUTTU Bastien und Bastienne -ooppera – W.A. Mozartin laulunäytelmä",
                "sv": "INSTÄLLT Bastien und Bastienne opera – Sångspel av W.A. Mozart",
                "en": "CANCELLED Bastien und Bastienne – A singspiel by W.A. Mozart"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63820/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63819",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "24,50 € / 19,50 € / 17,50 €",
                        "sv": "24,50 € / 19,50 € / 17,50 €",
                        "en": "24,50 € / 19,50 € / 17,50 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/vaey-vaey-nyt-on-laulun-aika-malmitalo-18622855/",
                        "sv": "https://www.lippu.fi/event/vaey-vaey-nyt-on-laulun-aika-malmitalo-18622855/",
                        "en": "https://www.lippu.fi/event/vaey-vaey-nyt-on-laulun-aika-malmitalo-18622855/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151891,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T18:15:10.342667Z",
                    "last_modified_time": "2024-07-25T18:15:10.342683Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753140.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151891/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T18:15:10.309970Z",
            "last_modified_time": "2024-12-20T01:14:06.783020Z",
            "date_published": null,
            "start_time": "2024-11-14T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/21138F3DEAE4099E84F8924DA16402E9/Vay_Vay_Nyt_on_laulun_aika",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/21138F3DEAE4099E84F8924DA16402E9/Vay_Vay_Nu_ar_det_dags_att_sjunga",
                "en": "http://www.malmitalo.fi/en/events/event/21138F3DEAE4099E84F8924DA16402E9/Vay_Vay_It_s_time_for_a_song"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "45-henkinen sekakuoro Koiton Laulu valtaa Malmitalon lavan konsertissa, jossa kantaaottava kuoromusiikki kohtaa nykykansanmusiikin.",
                "sv": "Den 45 personer starka blandade kören Koiton Laulu tar över scenen i Malms kulturhus i en konsert där ställningstagande körmusik möter samtida folkmusik.",
                "en": "45-person mixed choir Koiton Laulu takes over the Malmitalo stage at a concert where thought-provoking choral music meets contemporary folk music."
            },
            "description": {
                "fi": "<p>45-henkinen sekakuoro Koiton Laulu valtaa Malmitalon lavan konsertissa, jossa kantaaottava kuoromusiikki kohtaa nykykansanmusiikin.</p><p>Koiton Laulun konsertissa naissäveltäjät nousevat päärooliin. Tellu Turkan kampiliiran sointia imitoiva ”väyväy-vä-yy” nimeää konsertin ja Petra Poutasen Kalliolle, kukkulalle, suolle, tielle, sillan alle päivittää Chydenius-klassikon. Eero Ojasen säveltämä Pentti Saaritsan runo On maailman pinta niin ohut kohoaa puolestaan hätähuudoksi ympäristön puolesta.</p><p>Konsertin muita teemoja ovat rauha, nykypäivän työnteko sekä tasavertaisuus, joita peilataan sekä uusien että klassikkosävellysten kautta. Laulut toivosta ja rakkaudesta voimaannuttavat kiteytyen lopulta lauluun Tänään on hyvä päivä elää.</p><p>Koiton Laulun johtajana Petri Tiainen.</p>",
                "sv": "<p>Den 45 personer starka blandade kören Koiton Laulu tar över scenen i Malms kulturhus i en konsert där ställningstagande körmusik möter samtida folkmusik.</p><p>I Koiton Laulus konsert intar kvinnliga kompositörer huvudrollen. Ljudet “väyväy-vä-yy” som imiterar Tellu Turkkas vevlira ger namn åt konserten, och Petra Poutanens Kalliolle, kukkulalle, suolle, tielle, sillan alle uppdaterar Chydenius-klassikern. Pentti Saaritsas dikt On maailman pinta niin ohut som är tonsatt av Eero Ojanen reser sig som ett nödrop för miljön.</p><p>Andra teman för konserten är fred, dagens arbetsliv och jämlikhet, vilket återspeglas i både nya och klassiska kompositioner. Sånger om hopp och kärlek ger kraft och kulminerar i låten Tänään on hyvä päivä elää.</p><p>Koiton Laulu dirigeras av Petri Tiainen.</p>",
                "en": "<p>45-person mixed choir Koiton Laulu takes over the Malmitalo stage at a concert where thought-provoking choral music meets contemporary folk music.</p><p>At the Koiton Laulu concert, female composers take on the lead role. The concert’s name evokes the sound of Tellu Turkka’s hurdy-gurdy, and Petra Poutanen has created humorous, extended versions of Finnish classics. Pentti Saaritsa's poem On maailman pinta niin ohut, adapted into music by Eero Ojanen, becomes a cry for the environment.</p><p>The other themes of the concert include peace, modern careers and equality, which are mirrored through both new and classic compositions. Songs of hope and love empower, eventually crystallizing into Tänään on hyvä päivä elää.</p><p>Petri Tiainen leads Koiton Laulu.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Väy Väy! – Nyt on laulun aika – Koiton Laulu",
                "sv": "Väy Väy! – Nu är det dags att sjunga – Koiton Laulu",
                "en": "Väy Väy! – It's time for a song – Koiton Laulu"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63819/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64302",
            "has_user_editable_resources": false,
            "location": null,
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kanneltalo/ethno-contemporary-ballet-4308-3555974/",
                        "sv": "https://www.lippu.fi/artist/kanneltalo/ethno-contemporary-ballet-4308-3555974/",
                        "en": "https://www.lippu.fi/artist/kanneltalo/ethno-contemporary-ballet-4308-3555974/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151920,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-26T08:14:34.860664Z",
                    "last_modified_time": "2024-07-26T08:14:34.860680Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753171.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151920/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T08:14:34.843331Z",
            "last_modified_time": "2024-12-20T01:14:06.686480Z",
            "date_published": null,
            "start_time": "2024-11-14T16: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5F857803CCC65647F6CBF5D3F280CF02/Ethno_Contemporary_Ballet_4308",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5F857803CCC65647F6CBF5D3F280CF02/Ethno_Contemporary_Ballet_4308",
                "en": "http://www.kanneltalo.fi/en/events/event/5F857803CCC65647F6CBF5D3F280CF02/Ethno_Contemporary_Ballet_4308"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "4308 on musiikki- ja tanssiesitys peräänantamattomuudesta ja ihmishengen voimasta valtavien haasteiden edessä.",
                "sv": "4308 är en musik- och dansföreställning som handlar om uthållighet och kraften av mänskligt liv inför enorma utmaningar.",
                "en": "4308 expresses the boundless thirst for freedom and struggle for the independence of Ukraine, resilience, courage and strength, which are vital components for fighters."
            },
            "description": {
                "fi": "<p>4308 on musiikki- ja tanssiesitys peräänantamattomuudesta ja ihmishengen voimasta valtavien haasteiden edessä.</p><p>Esityksessä yleisö kohtaa suuria ja syviä tunteita, joita syntyy ihmisissä konfliktien aikoina. Teos on rakkauden ilmaisu Ukrainalle sekä kunnianosoitus taistelijoille pelon ja toivon vaihtelevassa maastossa. Se kertoo myös ihmishengen uskomattomasta voimasta, joka herää haastavien koettelemusten äärellä.</p><p>Esitys on syntynyt ukrainalaisen tanssiteatteri Ethno Contemporary Ballet’n ja liettualaisten muusikoiden yhteistyönä ja se esitettiin ensimmäisen kerran Vilnassa elokuussa 2023.</p><p>Ethno Contemporary Ballet’n tanssijat tulivat Suomeen lokakuussa 2022. Heidän teoksensa Fertility esitettiin Kanneltalossa 2023.</p><p>Tanssiteatteri Ethno Contemporary Ballet (UA):<br>Koreografi-ohjaaja Nina Bulgakova<br>Tanssija Kateryna Zhuravlova<br>Tanssija Anastasiia Mostova</p><p>Musiikin toteutus:<br>Säveltäjä Ignas Yuzokas (LT)<br>Rumpali Gintautas Gascevičius (LT)</p><p>Valot: Mirkka Saari, Kanneltalo</p><p>Kesto: n. 1 t<br>Ikäsuositus 13+<br>Kieli: sanaton</p>",
                "sv": "<p>4308 är en musik- och dansföreställning som handlar om uthållighet och kraften av mänskligt liv inför enorma utmaningar.</p><p>I föreställningen möter publiken stora och djupa känslor som uppstår hos människor i under konflikter. Verket är ett uttryck för kärlek till Ukraina och en hyllning till de stridande i varierande terränger av fruktan och hopp.</p>",
                "en": "<p>4308 expresses the boundless thirst for freedom and struggle for the independence of Ukraine, resilience, courage and strength, which are vital components for fighters.</p><p>The artistic project ”4308” is the result of collaboration between composer Ignas Yuzokas (LT), drummer Gintautas Gaskavicus (LT), and the dance theater Ethno Contemporary Ballet (UA).<br>This project attempts to convey the impressions of fear and hope experienced by soldiers and showcases the incredible strength of the human spirit awakened when people face the trials of challenging times.</p><p>The code ”4308” has become a symbol of invincibility and belief in victory. Countless stories of civilians and military personnel from Ukraine have shaken Europe, and the power of emotions embedded in these narratives has found expression in the works of international artists.</p><p>The music of Ignas Juzokas, which was the initial step in the creation of the performance ”4308”, was the composer’s response to the story of the people who survived the 86-day-long siege of the city of Mariupol in 2022, 82 of which were spent in complete encirclement.</p><p>On stage:<br>Dance theater Ethno Contemporary Ballet (UA)<br>Director choreographer, Nina Bulgakova<br>Dancer Ekateryna Zhuravleva<br>Dancer Anastasia Mostovaya</p><p>Music:<br>Composer Ignas Yuzokas (LT)<br>Drummer Gintautas Gascevičius (LT)</p><p>Lights: Mirkka Saari</p><p>Duration:  1 h<br>Age limit: 13+</p>"
            },
            "provider": null,
            "name": {
                "fi": "Ethno Contemporary Ballet: 4308",
                "sv": "Ethno Contemporary Ballet: 4308",
                "en": "Ethno Contemporary Ballet: 4308"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64302/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64485",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-19T13:14:24.759799Z",
                    "last_modified_time": "2024-09-19T13:14:24.759816Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757545.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-19T13:14:24.737274Z",
            "last_modified_time": "2024-12-20T01:14:06.590667Z",
            "date_published": null,
            "start_time": "2024-11-14T10:00:00Z",
            "end_time": "2024-11-14T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/C18E35F9E38BD3866ECF6448FD19DFD2/Liikkeella_marraskuussa_Soup_Talks",
                "sv": "http://www.caisa.fi/sv/evenemang/event/C18E35F9E38BD3866ECF6448FD19DFD2/Liikkeella_marraskuussa_Soup_Talks",
                "en": "http://www.caisa.fi/en/events/event/C18E35F9E38BD3866ECF6448FD19DFD2/Moving_in_November_Soup_Talks"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.",
                "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.",
                "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival."
            },
            "description": {
                "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>"
            },
            "provider": null,
            "name": {
                "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Rosana Cade & Ivor MacAskill",
                "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Rosana Cade & Ivor MacAskill",
                "en": "Moving in November: Soup Talks – Talk with Rosana Cade & Ivor MacAskill"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64485/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64231",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151787,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-22T14:13:35.627311Z",
                    "last_modified_time": "2024-07-22T14:13:35.627329Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750149.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-22T14:13:35.608441Z",
            "last_modified_time": "2024-12-20T01:14:06.507204Z",
            "date_published": null,
            "start_time": "2024-11-14T09:45:00Z",
            "end_time": "2024-11-14T11:15: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A3DDD4A8E4AF438C766B93B1AA223A06/Opi_suomea_laulaen",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A3DDD4A8E4AF438C766B93B1AA223A06/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/A3DDD4A8E4AF438C766B93B1AA223A06/Learn_Finnish_by_Singing_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn muut laulupajakerrat: <br>To 3.10. klo 10 ja 11.45 <br>To 14.11. klo 10 ja 11.45 <br>To 12.12. Klo 10 ja 11.45</p>",
                "sv": "<p>Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Kom med och sjung, även om du bara kan lite finska!</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. Come and sing with us, even if you know just a little Finnish!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64231/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64230",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151786,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-22T14:13:35.535695Z",
                    "last_modified_time": "2024-07-22T14:13:35.535709Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750148.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151786/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-22T14:13:35.521236Z",
            "last_modified_time": "2024-12-20T01:14:06.416851Z",
            "date_published": null,
            "start_time": "2024-11-14T08:00:00Z",
            "end_time": "2024-11-14T09:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/EA4111FDC08567F8B16F191367EE1500/Opi_suomea_laulaen",
                "sv": "http://www.stoa.fi/sv/evenemang/event/EA4111FDC08567F8B16F191367EE1500/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/EA4111FDC08567F8B16F191367EE1500/Learn_Finnish_by_Singing_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn muut laulupajakerrat: <br>To 3.10. klo 10 ja 11.45 <br>To 14.11. klo 10 ja 11.45 <br>To 12.12. Klo 10 ja 11.45</p>",
                "sv": "<p>Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Kom med och sjung, även om du bara kan lite finska!</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. Come and sing with us, even if you know just a little Finnish!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64230/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63700",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151965,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T10:14:47.444115Z",
                    "last_modified_time": "2024-07-30T10:14:47.444132Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752098.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151965/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-30T10:14:47.412834Z",
            "last_modified_time": "2024-12-20T01:14:06.327850Z",
            "date_published": null,
            "start_time": "2024-11-14",
            "end_time": "2024-12-19",
            "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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/EC6D365227ACDADDE2623722AC5DE9BA/NoCore_Encaged",
                "sv": "http://www.caisa.fi/sv/evenemang/event/EC6D365227ACDADDE2623722AC5DE9BA/NoCore_Encaged",
                "en": "http://www.caisa.fi/en/events/event/EC6D365227ACDADDE2623722AC5DE9BA/NoCore_Encaged"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Performanssia ja eri medioita yhdistävä näyttely, jonka tarkoituksena on vapauttaa identiteettimme sosiaalisista normeista.",
                "sv": "En performativ och intermedial utställning som syftar till att befria våra identiteter från sociala normer.",
                "en": "Performative and intermedia exhibition for liberating our identities from social norms."
            },
            "description": {
                "fi": "<p>Performanssia ja eri medioita yhdistävä näyttely, jonka tarkoituksena on vapauttaa identiteettimme sosiaalisista normeista.</p><p>NoCore: Encaged on yhteiskunnallisesti vaikuttava hanke, joka antaa osallistujille ja katsojille mahdollisuuden tunnistaa sisällämme piilevät puolet ja vapauttaa ne. Tanssia käytetään ilmaisun kielenä, jolla muistutetaan meitä kaikista meitä rajoittavista sosiaalisista malleista. Se antaa kuitenkin myös mahdollisuuden rikkoa näitä malleja ja kehittää itseään normien, sääntöjen ja rajoitusten ulkopuolella.</p><p>NoCore on yhteisöllinen tanssiprojekti, joka käsittelee sukupuolirooleihin ja monikulttuurisuuteen liittyviä aiheita ja kokoaa yhteen ihmisiä, jotka haluavat jakaa ajatuksiaan siitä, että heidät on syrjäytetty seksuaalisen ja kulttuurisen monimuotoisuuden vuoksi.</p><p>Kuuden viikon kuluttua näyttelystä järjestämme kahdenkeskisiä työpajoja, joihin voivat osallistua ihmiset, jotka ovat kiinnostuneita luomaan omiin ajatuksiinsa ja tarinoihinsa perustuvan tanssisoolon (3–5 minuuttia) eli ”rituaalin”, jolla he voisivat vapauttaa sisimpäänsä loukkuun jääneitä puolia.</p><p>Soolot kuvataan ja kootaan jatkuvalla syötöllä näkyväksi videoseinäksi. Moninaisten tanssien avulla pystytään kasvattamaan tämän yhteisöllisen ”rituaalin” voimaa.</p><p>Osallistujia ohjataan etsimään omista tarinoistaan avainsanoja ja katkelmia, jotka kertovat siitä, mitä he ovat pitäneet sisällään. Nämä sanat tallennetaan ja niistä luodaan taustanauha heidän tanssilleen.</p><p>Huomio: Joissakin tämän videon kohtauksissa on alastomuutta.</p><p><b>Työpajojen kuvaus ja päivämäärät:</b><br>NoCore: Encaged on performanssia ja eri medioita yhdistävä näyttely, jonka tarkoituksena on vapauttaa identiteettimme sosiaalisista normeista.</p><p>Yksi näyttelyn installaatioista on näyttämö/häkki, jota käytetään kahdenkeskisissä työpajoissa.</p><p>Näyttelyn ideoinut taiteilija ja koreografi<b> Beniamino Borghi</b> opastaa osallistujia etsimään avainsanoja ja katkelmia omista tarinoistaan ja muuttamaan ne lyhyiksi tanssisooloiksi. Esitykset videoidaan ja näytetään videoseinällä.</p><p>Alla on lista päivämääristä ja kellonajoista, joina kahdenkeskiset työpajat ovat varattavissa (90 min):</p><p>Perjantai 15.11. klo 10–19<br>Lauantai 16.11. klo 10–19<br>Tiistai 19.11. klo 10–19<br>Lauantai 23.11. klo 10–19<br>Tiistai 26.11. klo 10–19<br>Perjantai 29.11. klo 10–19<br>Lauantai 30.11. klo 10–19<br>Tiistai 3.12. klo 10–19<br>Tiistaina 10.12. klo 10–19<br>Tiistai 17.12. klo 10–19</p><p>Saat lisätietoja ja voit varata työpajoja ottamalla yhteyttä osoitteeseen: tanssiartesaani@gmail.com / Beniamino Borghi</p><p>Kaikki näyttelyn kävijät voivat luoda näyttämöllä/häkissä oman rituaalisen tanssinsa ja tallentaa siitä videon, jonka voi julkaista sosiaalisessa mediassa tunnuksella #freefromsocialnorms.</p>",
                "sv": "<p>En performativ och intermedial utställning som syftar till att befria våra identiteter från sociala normer.</p><p>NoCore: Encaged är ett socialt påverkansprojekt som ger deltagare och åskådare möjlighet att erkänna dolda sidor inom oss och släppa dem fria. Dans används som ett uttrycksfullt språk för att befria oss från alla sociala mönster som håller oss tillbaka. Men dansen ger oss också en möjlighet att bryta dessa mönster och ägna oss åt en personlig utveckling utanför normer, regler och begränsningar.</p><p>NoCore är ett community-dansprojekt som tar upp ämnen som könsroller och mångkultur, och som samlar människor som vill dela med sig av tankar kring marginalisering på grund av sexuell och kulturell mångfald.</p><p>6 veckor in i utställningen kommer vi att arrangera personliga workshoppar för personer som är intresserade av att skapa en solodans (3–5 min.) utifrån egna tankar och historier: en ”ritual” som kan befria sidor som har varit fångna inuti.</p><p>Solodanserna kommer att filmas och samlas på en vägg med videoslingor. De många dansnumren kommer att göra ”communityritualen” ännu intensivare.</p><p>Deltagarna kommer att vägledas i att leta efter nyckelord och bitar av deras egna historier som berättar vad de håller inom sig. Dessa ord spelas in och används för att skapa ett soundtrack till deltagarnas danser.</p><p>Observera: Vissa scener i denna video innehåller nakenhet.</p><p><b>Förklaring av workshopparna och datum:</b><br>NoCore: Encaged är en performativ och intermedial utställning som syftar till att befria våra identiteter från sociala normer.</p><p>En installation är en Stage/Cage (”scen/bur”) som används för personliga workshoppar.</p><p>Beniamino Borghi, artisten och koreografen bakom utställningen, vägleder deltagarna i att leta efter nyckelord och bitar av deras egna historier och förvandla dem till korta dansnummer. Uppträdandena videofilmas och läggs upp på en videovägg.</p><p>Följande datum kan personliga workshoppar (90 min.) bokas:</p><p>Fredag 15.11 kl. 10–19<br>Lördag 16.11 kl. 10–19<br>Tisdag 19.11 kl. 10–19<br>Lördag 23.11 kl. 10–19<br>Tisdag 26.11 kl. 10–19<br>Fredag 29.11 kl. 10–19<br>Lördag 30.11 kl. 10–19<br>Tisdag 3.12 kl. 10–19<br>Tisdag 10.12 kl. 10–19<br>Tisdag 17.12 kl. 10–19</p><p>För mer information och bokning av workshoppar, kontakta<br>tanssiartesaani@gmail.com / Beniamino Borghi</p><p>Alla besökare kan använda Stage/Cage för att skapa egna uttrycksfulla och rituella danser, och videofilma och lägga upp dem på sociala medier med taggen #freefromsocialnorms.</p>",
                "en": "<p>Performative and intermedia exhibition for liberating our identities from social norms.</p><p>NoCore: Encaged is a social impacting project that gives the opportunity, to participants and viewers, to acknowledge the sides that are hidden inside us and let them free. Dance is used as an expressive language to recall all the social patterns that tighten us. But also, it gives the possibility to break those patterns and to engage in a personal development outside the norms, rules and constrictions.</p><p>NoCore is a community dance project that deals with topics of gender roles and multiculturalism and it gathers people who want to share thoughts about being marginalized for sexual and cultural diversity.</p><p>Within 6 weeks of exhibition we will organize one-to-one workshops for people who are interested in creating a dance solo (3–5 min long) based on their own thoughts and stories: a “ritual” that could liberate sides that have been trapped inside them.</p><p>The solos will be filmed and collected in a looped Video Wall. The multitude of dances will be able to raise up the intensity of this community “ritual”.</p><p>The participant will be guided in searching keywords and fragments of their own stories that tell what they have been restraining inside. Those words will be recorded and used in creating an instant soundtrack for their dances.</p><p>Please Note: Some scenes in this video contain nidity.</p><p><b>Explanation of the workshops and the dates:</b><br>NoCore: Encaged is a performative and intermedia exhibition for liberating our identities from social norms.</p><p>One installation is a Stage/Cage used for one-to-one workshops.</p><p>Beniamino Borghi, the artist and choreographer behind this exhibition, will guide the participants in searching keywords and fragments of their own stories and transform them into short dance solos. The performances are video recorded and inserted in a video wall.</p><p>Here are the possible dates to book one-to-one workshops (90 min):</p><p>Friday 15.11. at 10–19<br>Saturday 16.11. at 10–19<br>Tuesday 19.11. at 10–19<br>Saturday 23.11. at 10–19<br>Tuesday 26.11. at 10–19<br>Friday 29.11. at 10–19<br>Saturday 30.11. at 10–19<br>Tuesday 3.12. at 10–19<br>Tuesday 10.12. at 10–19<br>Tuesday 17.12. at 10–19</p><p>For more information and booking the workshops contact:<br>tanssiartesaani@gmail.com / Beniamino Borghi</p><p>Any visitor can use the Stage/Cage for their own expressive and ritual dance and record it in videos to post on social media with #freefromsocialnorms.</p>"
            },
            "provider": null,
            "name": {
                "fi": "NoCore: Encaged – Tanssiartesaani",
                "sv": "NoCore: Encaged – En performativ utställning",
                "en": "NoCore: Encaged – Performative exhibition"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63700/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64475",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,80 € / 33,90 €",
                        "sv": "17,80 € / 33,90 €",
                        "en": "17,80 € / 33,90 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-kulttuurikeskus-caisa-19127743/",
                        "sv": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-kulttuurikeskus-caisa-19127743/",
                        "en": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-kulttuurikeskus-caisa-19127743/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152397,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-12T07:14:28.785736Z",
                    "last_modified_time": "2024-09-12T07:14:28.785749Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757528.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152397/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-12T07:14:28.771597Z",
            "last_modified_time": "2024-12-20T01:14:06.233698Z",
            "date_published": null,
            "start_time": "2024-11-13T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/BB45F551902286A8F4CF8A6C9A3A241F/Liikkeella_marraskuussa_R_becca_Chaillon_Whitewashing",
                "sv": "http://www.caisa.fi/sv/evenemang/event/BB45F551902286A8F4CF8A6C9A3A241F/Liikkeella_marraskuussa_R_becca_Chaillon_Whitewashing",
                "en": "http://www.caisa.fi/en/events/event/BB45F551902286A8F4CF8A6C9A3A241F/Moving_in_November_R_becca_Chaillon_Whitewashing"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Termi \"whitewashing\" viittaa usein valkoisiin näyttelijöihin, jotka esittävät rodullistettuja hahmoja. Tässä teoksessa Rébecca Chaillon määrittelee termin uudelleen ja ottaa sen käyttöön käsitelläkseen ihon vaalentamista.",
                "sv": "Begreppet ”whitewashing” syftar ofta på vita skådespelare som spelar karaktärer av en viss ras. I detta verk omdefinierar Rébecca Chaillon termen och använder den för att behandla hudblekning.",
                "en": "The term \"Whitewashing\" often refers to white actors portraying racialized characters. In this performance, Rébecca Chaillon redefines and reclaims the term to address skin lightening."
            },
            "description": {
                "fi": "<p>Termi \"whitewashing\" viittaa usein valkoisiin näyttelijöihin, jotka esittävät rodullistettuja hahmoja. Tässä teoksessa Rébecca Chaillon määrittelee termin uudelleen ja ottaa sen käyttöön käsitelläkseen ihon vaalentamista.</p><p>Näyttämöllä Chaillon hankaa valkaisuainetta ensin lattialle ja sitten iholleen tutkien jännitettä, joka syntyy valkoisessa yhteiskunnassa mustan siivoojan ruumiiseen. Tämä rituaali vahvistaa hänen olemassaoloaan rasismin etäännyttävää voimaa vastaan ja kutsuu yleisön seuraamaan läheltä, kuinka ruumis, jonka yhteiskunta yrittää tehdä näkymättömäksi, tulee yhä näkyvämmäksi ja vahingoittumattomaksi.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 7.–17.11.2024. Osana festivaalia Chaillon käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 13.11. klo 12 Caisassa.</p><p><b>Rébecca Chaillon</b> on kirjailija, ohjaaja ja esiintyjä. Hän ammentaa inspiraatiota monista identiteeteistä luodakseen rohkeita ja transgressiivisia teoksia, joissa yhdistyvät selfmakeup-praktiikka ja kiinnostus ruokaan osana näyttämötaidetta. Chaillon syntyi Martiniquella ja kasvoi Picardiassa, Ranskassa.</p><p>Kesto: 80 minuuttia<br>Huom! Teos sisältää alastomuutta ja viittauksia rasismiin.</p><p>Ohjaus: Récca Chaillon<br>Teksti: Rébecca Chaillon ja Aurore Déon<br>Esiintyjät: Rébecca Chaillon ja Aurore Déon<br>Yleinen näyttämöjohtaminen ja tekninen operointi: Suzanne Péchenart<br>Käännös ja tekstitys: Lisa Wegener<br>Tuotanto/kehitys: L’Oeil Ecoute – Mara Teboul, Elise Bernard & Amandine Loriol<br>Vierailua tukee: Institut Français Finlande, Niilo Helanderin säätiö<br>Vierailu yhteistyössä: Caisa</p>",
                "sv": "<p>Begreppet ”whitewashing” syftar ofta på vita skådespelare som spelar karaktärer av en viss ras. I detta verk omdefinierar Rébecca Chaillon termen och använder den för att behandla hudblekning.</p><p>På scenen gnider Chaillon in blekmedel först på golvet och sedan på sin egen hud, och utforskar på så sätt den spänning som skapas i det vita samhället kring en svart städares kropp. Denna ritual bekräftar hennes existens mot rasismens avståndstagande kraft och bjuder in publiken att på nära håll följa hur en kropp som samhället försöker osynliggöra blir alltmer synlig och osårbar.</p><p>Verket är en del av festivalen Liikkeellä marraskuussa 7–17.11.2024. Som en del av festivalen kommer Chaillon att samtala med en lokal konstnär på det öppna evenemanget Soup Talks den 13 november kl. 12.00 i Caisa.</p><p><b>Rébecca Chaillon</b> är författare, regissör och skådespelare. Hon hämtar inspiration från flera olika identiteter för att skapa djärva och gränsöverskridande verk som kombinerar selfmakeup-praktiken med ett intresse för mat som en del av scenkonst. Chaillon föddes på Martinique och växte upp i Picardie i Frankrike.</p><p>Längd: 80 minuter</p><p>Obs! Verket innehåller nakenhet och referenser till rasism.</p><p>Regi:: Rébecca Chaillon<br>Text: Rébecca Chaillon och Aurore Déon<br>I rollerna: Rébecca Chaillon och Aurore Déon<br>Allmän scenledning och teknisk ledning: Suzanne Péchenart<br>Översättning och textning: Lisa Wegener<br>Produktion/utveckling: L’Oeil Ecoute – Mara Teboul, Elise Bernard & Amandine Loriol<br>Besöket stöds av: Institut Français Finlande, Niilo Helanders stiftelse<br>Besöket genomförs i samarbete med: Caisa</p>",
                "en": "<p>The term \"Whitewashing\" often refers to white actors portraying racialized characters. In this performance, Rébecca Chaillon redefines and reclaims the term to address skin lightening.</p><p>On stage, she scrubs bleach on the floor and her skin, exploring the tension of being a Black cleaning woman in a white society. This ritual affirms her existence against the alienating force of racism, inviting the audience to watch closely, as a body that society tries to render invisible becomes increasingly visible and undamaged.</p><p>The performance is part of Moving in November festival 7.-17.11.2024. As part of the festival, there will be an open discussion with Chaillon and local host called Soup Talk on the 13th of November at noon in Caisa.</p><p><b>Rébecca Chaillon</b>, an author, director, and performer, draws inspiration from her multiple identities to create bold and transgressive performances that incorporate her practice of artistic self-makeup and her fascination with food. Born in Martinique and raised in Picardy, she began her artistic journey in Paris, studying performing arts at the Conservatoire of the 20th arrondissement. She has worked with theatre companies like Entrées de jeu and she founded her own company: Dans le Ventre, in 2006.</p><p>Duration: 80 minutes<br>Please note: This performance contains references to racism and nudity.</p><p>Direction: Rébecca Chaillon<br>Text: Rébecca Chaillon and Aurore Déon<br>With: Rébecca Chaillon and Aurore Déon<br>General Stage Management & Technical Operations: Suzanne Péchenart<br>Translation and Subtitling: Lisa Wegener<br>Production / Development: L’Oeil Ecoute – Mara Teboul, Elise Bernard & Amandine Loriol <br>Visit supported by: Institut Français Finlande, Niilo Helander’s foundation<br>Visit in collaboration: Caisa</p>"
            },
            "provider": null,
            "name": {
                "fi": "Liikkeellä marraskuussa – Rébecca Chaillon: Whitewashing",
                "sv": "Liikkeellä marraskuussa – Rébecca Chaillon: Whitewashing",
                "en": "Moving in November – Rébecca Chaillon: Whitewashing"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64475/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64687",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152791,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-11T13:16:28.251487Z",
                    "last_modified_time": "2024-10-11T13:16:28.251505Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759236.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152791/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-11T13:16:28.220558Z",
            "last_modified_time": "2024-12-20T01:14:06.130289Z",
            "date_published": null,
            "start_time": "2024-11-13T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/39A33122931CDA275DDC6D753C20F824/NLO_The_Nordic_Latin_Orchestra_ja_Miles_Davis_-tribuutti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/39A33122931CDA275DDC6D753C20F824/NLO_The_Nordic_Latin_Orchestra_och_tribut_till_Miles_Davis",
                "en": "http://www.malmitalo.fi/en/events/event/39A33122931CDA275DDC6D753C20F824/NLO_The_Nordic_Latin_Orchestra_and_a_tribute_to_Miles_Davis"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Luvassa afroamerikkalaisia helmiä ja Miles Davisin klassikoita.",
                "sv": "På programmet afroamerikanska pärlor och klassiker från Miles Davis.",
                "en": "African American gems and classics by Miles Davis."
            },
            "description": {
                "fi": "<p>Luvassa afroamerikkalaisia helmiä ja Miles Davisin klassikoita.</p><p><b>NLO - The Nordic Latin Orchestra</b><br>NLO - The Nordic Latin Orchestra tulkitsee ja esittää heittäytyvällä asenteella latino- ja afroamerikkalaisen musiikin helmiä. Leikkisyys, rytmisyys ja vuorovaikutus ovat NLO:n esittämän musiikin ytimessä. Orkesteri tuo groovavan soundinsa sieluusi asti!</p><p>Kamilla Kujala - laulu<br>Siiri Toiviainen - saksofoni<br>Jerry Uusi-Mikkola - kitara<br>Margit Urantowka - piano<br>Olavi Miettinen - basso<br>Emilio Montaguti Jones - rummut <br>Joel Mäntyvaara - perkussiot</p><p><b>Miles Davis -tribuutti</b></p><p>PJK:n 2. vuosikurssin opiskelijoista koostuva sekstetti, joka keskittyy Miles Davisin esittämiin, modaalista kautta edeltäviin kappaleisiin.</p><p>Timo Tihtonen - rummut<br>Joel Wikström - basso<br>Elvis Rahka - piano<br>Lenni Seebeck - kitara<br>Rebecca Ekman - trumpetti <br>Waltteri Hirvonen - saksofoni</p><p><b>Aikataulu</b> <br>klo 19.00 - NLO<br>klo 20.00 - Miles Davis -tribuutti</p><p>Vapaa pääsy!</p>",
                "sv": "<p>På programmet afroamerikanska pärlor och klassiker från Miles Davis.</p><p><b>NLO – The Nordic Latin Orchestra</b><br>NLO – Nordic Latin Orchestra tolkar och spelar den latinamerikanska och afroamerikanska musikens pärlor med en orädd och nyfiken attityd. Lekfullhet, rytmer och interaktion utgör kärnan i NLO:s musik. Orkesterns grooviga sound når din själ!</p><p>Kamilla Kujala – sång<br>Siiri Toiviainen – saxofon<br>Jerry Uusi-Mikkola – gitarr<br>Margit Urantowka – piano<br>Olavi Miettinen – basgitarr<br>Emilio Montaguti Jones – trummor <br>Joel Mäntyvaara – perkussion</p><p><b>Tribut till Miles Davis</b></p><p>En sextett som består av andraårsstuderande vid PJK och fokuserar på Miles Davis låtar som föregår hans modalperiod.</p><p>Timo Tihtonen – trummor<br>Joel Wikström – basgitarr<br>Elvis Rahka – piano<br>Lenni Seebeck – gitarr<br>Rebecca Ekman – trumpet <br>Waltteri Hirvonen – saxofon</p><p><b>Tidsplan</b> <br>kl. 19.00 – NLO<br>kl. 20.00 – Tribut till Miles Davis</p><p>Fritt inträde</p>",
                "en": "<p>African American gems and classics by Miles Davis.</p><p><b>NLO – The Nordic Latin Orchestra</b><br>With a captivating attitude, NLO – The Nordic Latin Orchestra interprets and performs the gems of Latin and African American music. Playfulness, rhythm and interaction are at the heart of NLO’s music. The orchestra’s groovy sound will find its way to your soul!</p><p>Kamilla Kujala – vocals<br>Siiri Toiviainen – saxophone<br>Jerry Uusi-Mikkola – guitar<br>Margit Urantowka – piano<br>Olavi Miettinen – bass<br>Emilio Montaguti Jones – drums <br>Joel Mäntyvaara – percussion</p><p><b>Tribute to Miles Davis</b></p><p>A sextet of 2nd year students from the Pop & Jazz Conservatory focuses on modal songs by Miles Davis.</p><p>Timo Tihtonen – drums<br>Joel Wikström – bass<br>Elvis Rahka – piano<br>Lenni Seebeck – guitar<br>Rebecca Ekman – trumpet <br>Waltteri Hirvonen – saxophone</p><p><b>Schedule</b> <br>19:00 NLO<br>20:00 A tribute to Miles Davis</p><p>Free of charge</p>"
            },
            "provider": null,
            "name": {
                "fi": "NLO – The Nordic Latin Orchestra ja Miles Davis -tribuutti – Pop & Jazz Konservatorion ammattiopiskelijat",
                "sv": "NLO – The Nordic Latin Orchestra och tribut till Miles Davis – Konserter med Pop & Jazz Konservatoriets yrkesstuderande",
                "en": "NLO – The Nordic Latin Orchestra and a tribute to Miles Davis – Concerts by students of the Pop & Jazz Conservatory"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64687/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63837",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kanneltalo/ethno-contemporary-ballet-4308-3555974/",
                        "sv": "https://www.lippu.fi/artist/kanneltalo/ethno-contemporary-ballet-4308-3555974/",
                        "en": "https://www.lippu.fi/artist/kanneltalo/ethno-contemporary-ballet-4308-3555974/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152035,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-06T13:15:48.326565Z",
                    "last_modified_time": "2024-08-06T13:15:48.326586Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753170.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152035/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T08:14:34.577866Z",
            "last_modified_time": "2024-12-20T01:14:05.978796Z",
            "date_published": null,
            "start_time": "2024-11-13T16: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5D058F7C6AFF3C21C9C5245624D710A9/Ethno_Contemporary_Ballet_4308",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5D058F7C6AFF3C21C9C5245624D710A9/Ethno_Contemporary_Ballet_4308",
                "en": "http://www.kanneltalo.fi/en/events/event/5D058F7C6AFF3C21C9C5245624D710A9/Ethno_Contemporary_Ballet_4308"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "4308 on musiikki- ja tanssiesitys peräänantamattomuudesta ja ihmishengen voimasta valtavien haasteiden edessä.",
                "sv": "4308 är en musik- och dansföreställning som handlar om uthållighet och kraften av mänskligt liv inför enorma utmaningar.",
                "en": "4308 expresses the boundless thirst for freedom and struggle for the independence of Ukraine, resilience, courage and strength, which are vital components for fighters."
            },
            "description": {
                "fi": "<p>4308 on musiikki- ja tanssiesitys peräänantamattomuudesta ja ihmishengen voimasta valtavien haasteiden edessä.</p><p>Esityksessä yleisö kohtaa suuria ja syviä tunteita, joita syntyy ihmisissä konfliktien aikoina. Teos on rakkauden ilmaisu Ukrainalle sekä kunnianosoitus taistelijoille pelon ja toivon vaihtelevassa maastossa. Se kertoo myös ihmishengen uskomattomasta voimasta, joka herää haastavien koettelemusten äärellä.</p><p>Esitys on syntynyt ukrainalaisen tanssiteatteri Ethno Contemporary Ballet’n ja liettualaisten muusikoiden yhteistyönä ja se esitettiin ensimmäisen kerran Vilnassa elokuussa 2023.</p><p>Ethno Contemporary Ballet’n tanssijat tulivat Suomeen lokakuussa 2022. Heidän teoksensa Fertility esitettiin Kanneltalossa 2023.</p><p>Tanssiteatteri Ethno Contemporary Ballet (UA):<br>Koreografi-ohjaaja Nina Bulgakova<br>Tanssija Kateryna Zhuravlova<br>Tanssija Anastasiia Mostova</p><p>Musiikin toteutus:<br>Säveltäjä Ignas Yuzokas (LT)<br>Rumpali Gintautas Gascevičius (LT)</p><p>Valot: Mirkka Saari, Kanneltalo</p><p>Kesto: n. 1 t<br>Ikäsuositus 13+<br>Kieli: sanaton</p>",
                "sv": "<p>4308 är en musik- och dansföreställning som handlar om uthållighet och kraften av mänskligt liv inför enorma utmaningar.</p><p>I föreställningen möter publiken stora och djupa känslor som uppstår hos människor i under konflikter. Verket är ett uttryck för kärlek till Ukraina och en hyllning till de stridande i varierande terränger av fruktan och hopp.</p>",
                "en": "<p>4308 expresses the boundless thirst for freedom and struggle for the independence of Ukraine, resilience, courage and strength, which are vital components for fighters.</p><p>The artistic project ”4308” is the result of collaboration between composer Ignas Yuzokas (LT), drummer Gintautas Gaskavicus (LT), and the dance theater Ethno Contemporary Ballet (UA).<br>This project attempts to convey the impressions of fear and hope experienced by soldiers and showcases the incredible strength of the human spirit awakened when people face the trials of challenging times.</p><p>The code ”4308” has become a symbol of invincibility and belief in victory. Countless stories of civilians and military personnel from Ukraine have shaken Europe, and the power of emotions embedded in these narratives has found expression in the works of international artists.</p><p>The music of Ignas Juzokas, which was the initial step in the creation of the performance ”4308”, was the composer’s response to the story of the people who survived the 86-day-long siege of the city of Mariupol in 2022, 82 of which were spent in complete encirclement.</p><p>On stage:<br>Dance theater Ethno Contemporary Ballet (UA)<br>Director choreographer, Nina Bulgakova<br>Dancer Ekateryna Zhuravleva<br>Dancer Anastasia Mostovaya</p><p>Music:<br>Composer Ignas Yuzokas (LT)<br>Drummer Gintautas Gascevičius (LT)</p><p>Lights: Mirkka Saari</p><p>Duration:  1 h<br>Age limit: 13+</p>"
            },
            "provider": null,
            "name": {
                "fi": "Ethno Contemporary Ballet: 4308",
                "sv": "Ethno Contemporary Ballet: 4308",
                "en": "Ethno Contemporary Ballet: 4308"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63837/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64308",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:751/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151942,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-29T12:15:28.220694Z",
                    "last_modified_time": "2024-07-29T12:15:28.220711Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753051.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151942/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-29T12:15:28.194199Z",
            "last_modified_time": "2024-12-20T01:14:05.645734Z",
            "date_published": null,
            "start_time": "2024-11-13T13:00:00Z",
            "end_time": "2024-11-13T14: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/C33D52CACA373BFE987B6147FC542776/HOW_radio_Global_Club_Nights_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/C33D52CACA373BFE987B6147FC542776/HOW_radio_Global_Club_Nights_",
                "en": "http://www.caisa.fi/en/events/event/C33D52CACA373BFE987B6147FC542776/HOW_radio_Global_Club_Nights_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tässä jaksossa pohdimme suomalaisen, japanilaisen ja taiwanilaisen taiteen yhtäläisyyksiä ja eroja. Onko olemassa tekijöitä, jotka pysyvät samana paikasta riippumatta ja joista muusikoiden pitäisi olla tietoisia?",
                "sv": "Idag utforskar vi likheter och skillnader mellan konst i Finland, Japan och Taiwan. Finns det internationella beständigheter som musiker bör vara medvetna om?",
                "en": "Today we explore the similarities and Differences in art between Finland, Japan and Taiwan. Are there any international constants that musicians should be aware of?"
            },
            "description": {
                "fi": "<p>Tässä jaksossa pohdimme suomalaisen, japanilaisen ja taiwanilaisen taiteen yhtäläisyyksiä ja eroja. Onko olemassa tekijöitä, jotka pysyvät samana paikasta riippumatta ja joista muusikoiden pitäisi olla tietoisia?</p><p>Onko olemassa tekijöitä, jotka auttavat siirtämään perinteen yhdestä paikasta toiselle puolelle maailmaa ja joita emme tiedä? Tutustu shamisenin taikaan ja mahtavaan shamisenin soittajaan ja ihmiseen.</p><p>Zuiko on Taiwanista kotoisin oleva Tsugaru-shamisenin soittaja, joka aloitti shamisenin opiskelun vuonna 2015. Hän on erikoistunut japanilaisen Tsugaru-shamisenin soittoon ja yhdistää musiikissaan japanilaista perinteistä folkia, poppia, rockia ja omia sävellyksiään. Zuiko opiskelee tällä hetkellä Sibelius-Akatemian Global Music -koulutusohjelmassa, ja hänen tavoitteenaan on integroida musiikillisia elementtejä eri puolilta maailmaa ja kehittää uutta shamisen-musiikkityyliä.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>",
                "sv": "<p>Idag utforskar vi likheter och skillnader mellan konst i Finland, Japan och Taiwan. Finns det internationella beständigheter som musiker bör vara medvetna om?</p><p>Finns det en hemlighet bakom en framgångsrik förflyttning av en tradition halvvägs runt världen? Upptäck det magiska instrumentet shamisen och en fantastisk shamisenspelare och människa.</p><p>Zuiko är en tsugarushamisen-spelare från Taiwan. Han började spela shamisen 2015 och specialiserade sig på användningen av Japans tsugarushamisen. Han kombinerar inslag av japansk traditionell folkmusik, pop, rock och originalkompositioner. Zuiko studerar för tillfället på fakulteten för världsmusik på Sibelius-Akademin i Finland, och har som mål att införliva musikaliska element från hela världen och utveckla en ny typ av Shamisen-musik.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>",
                "en": "<p>Today we explore the similarities and Differences in art between Finland, Japan and Taiwan. Are there any international constants that musicians should be aware of?</p><p>Are there any secrets behind the successful relocation of a tradition halfway around the world? Discover the magic of Shamisen and a wonderful shamisen player and human being.</p><p>Zuiko is Tsugarushamisen Player from Taiwan, who began studying Shamisen in 2015, specializing in the use of Japan's Tsugaru Shamisen, and combines elements of Japanese traditional folk, pop, rock, and original compositions. Zuiko is currently enrolled in the Global Music department at the Sibelius Academy in Finland, aiming to integrate musical elements from around the world and develop a new style of Shamisen music.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>"
            },
            "provider": null,
            "name": {
                "fi": "HOW radio: Global Club Nights – Ni Jui Hsin (Zuiko)",
                "sv": "HOW radio: Global Club Nights – Ni Jui Hsin (Zuiko)",
                "en": "HOW radio: Global Club Nights – Ni Jui Hsin (Zuiko)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64308/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}