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

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

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 normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 33209,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=894",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=892"
    },
    "data": [
        {
            "id": "kulke:61417",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6224,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-24T12:13:09.218968Z",
                    "last_modified_time": "2024-02-06T13:23:21.623294Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740231.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6224/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-24T12:13:09.203874Z",
            "last_modified_time": "2024-04-05T17:13:52.669294Z",
            "date_published": null,
            "start_time": "2024-03-13T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tutkimme kaikkien vieraidemme vuosien kokemuksen kautta kulttuurienvälisyyden historiaa, nykyisyyttä ja tulevaisuutta taidealalla ja etenkin musiikkipuolella.",
                "sv": "Genom gästernas mångåriga erfarenhet utforskar vi historien, nuet och framtiden för interkulturalismen i konsten, med särskilt fokus på musiksektorn.",
                "en": "Today at HOW radio, through the years-long experience of each of our guests, we investigate the past present and future of interculturalism in the arts field, focusing on the music sector."
            },
            "description": {
                "fi": "<p>Tutkimme kaikkien vieraidemme vuosien kokemuksen kautta kulttuurienvälisyyden historiaa, nykyisyyttä ja tulevaisuutta taidealalla ja etenkin musiikkipuolella.</p><p>Tänään kuljemme halki kulttuurienvälisen yhteistyön kehityskaaren ja pyrimme kartoittamaan niitä piirteitä, jotka osoittavat siihen kuulumisen.</p><p><b>INTERKULT</b>(Kassandra ry) on valtakunnallisesti toimiva kulttuuriyhdistämö, jonka tavoitteena on edistää kulttuurienvälisyyttä taiteen ja kulttuurin keinoin. Eri taidemuotojen avulla annamme eri taustoista tuleville ihmisille mahdollisuuden kohdata tasavertaisella maaperällä.</p><p>Toiminnanjohtaja <b>Andreas af Enehielm</b> on toiminut Kulttuuriyhdistämö Interkultin (Kassandra ry:n) johdossa vuodesta 2016. Hänellä on 20 vuoden kokemus näyttelijänä ja freelance-muusikkona.</p><p>Kulttuurituottaja <b>Natalia Castrillón</b> on toiminut Kulttuuriyhdistämö Interkultin (Kassandra ry:n) kulttuurituottajana vuodesta 2022 sekä varhaiskasvatuksen musiikkipedagogina, työpajojen johtajana ja vierailevana muusikkona vuodesta 2019.</p><p><b>Frankosun and the Family</b> on raikas ja huippuunsa viritetty helsinkiläinen afrobeat-orkesteri, jonka on perustanut voodoon sydänmailla Beninissä syntynyt <b>Oladele Franck Koumolou</b></p><p>--</p><p>Helsinki Open Waves -radion, Caisan ja Sibelius-Akatemian Global Music -osaston yhteistuottamissa keskusteluissa tarkastellaan musiikkia niin muusikon kuin musiikkiteollisuuden näkökulmasta, monimuotoisuuteen keskittyvässä, neutraalissa ja turvallisessa tilassa. Kuuntele ohjelmaa HOW-radion aalloilla osoitteessa <u><a href=\"https://www.helsinkiopenwaves.com\">helsinkiopenwaves.com</u></a>.</p><p>Keskustelun kieli on englanti.</p><p>--</p><p>Global Club Nights -live-klubi-iltoja järjestetään Caisassa kuukausittain! Lue lisää Caisan <u><a href=\"https://www.caisa.fi/fi/tapahtumat/?q=Global%20Club%20Nights\">tapahtumakalenterista</u></a>.</p><p>Helsinki Open Waves on voittoa tavoittelematon ja yhteisölähtöinen alusta, jonka osallistujat voivat toteuttaa omia sisältöjään juuri niin kuin haluavat ja ilmaista itseään omalla kielellään ja kulttuurinsa kautta. Lue lisää <u><a href=\"https://www.caisa.fi/fi/tapahtumat/event/bfdfdd7f694211e35cf77b582ce20924/helsinki_open_waves\">täältä</u></a>.</p>",
                "sv": "<p>Genom gästernas mångåriga erfarenhet utforskar vi historien, nuet och framtiden för interkulturalismen i konsten, med särskilt fokus på musiksektorn.</p><p>Genom gästernas mångåriga erfarenhet utforskar vi historien, nuet och framtiden för interkulturalismen i konsten, med särskilt fokus på musiksektorn. Vi studerar utvecklingen av interkulturella samarbeten och försöker förklara fördelen med att delta i sådana.</p><p><b>INTERKULT</b> (Kassandra ry) är en landsomfattande kulturell förening vars syfte är att genom konst och kultur främja interkulturalismen. Vi använder olika konstformer för att möjliggöra för människor med olika bakgrund att mötas på lika villkor.</p><p>Verkställande direktör <b>Andreas af Enehielm</b> har varit chef för Kulttuuriyhdistämö Interkult (Kassandra ry) sedan 2016. Han har också 20 års erfarenhet som skådespelare och frilansande musiker.</p><p>Kulturproducent <b>Natalia Castrillón</b> har arbetat som kulturproducent på Kulttuuriyhdistämö Interkult (Kassandra ry) sedan 2022, samt som musikpedagog för spädbarn, workshopledare och inbjuden musiker sedan 2019.</p><p><b>Frankosun and the Family </b> är en uppfriskande och välkomponerad Helsingforsbaserad afrobeatorkester. Bandet grundades av <b>Oladele Franck Koumolou</b> som föddes i voodookulturens ursprungsland Benin.</p><p>Diskussionsspråket är engelska.</p>",
                "en": "<p>Today at HOW radio, through the years-long experience of each of our guests, we investigate the past present and future of interculturalism in the arts field, focusing on the music sector.</p><p>We navigate through the evolution of intercultural collaborations, and we try to map the qualities for being part of it.</p><p>INTERKULT is a nationwide cultural association whose purpose is to promote interculturalism through the means of art and culture. Using different art forms, we enable people from different backgrounds to meet on an equal footing.</p><p><b>Andreas af Enehielm</b> has been serving as the manager of Culture Hub Interkult since 2016. He also has 20 years of experience as an actor and freelance musician. <b>Natalia Castrillón</b> has worked as a cultural producer at Interkult since 2022 as well as an early childhood music pedagogue, workshop leader and guest musician since 2019.</p><p><b>Frankosun and the Family</b> is a fresh and fine-tuned afrobeat orchestra based in Helsinki, Finland. The band was founded by <b>Oladele Franck Koumolou</b>, who was born in the voodoo heartland – the Republic of Benin.</p><p>--</p><p>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 <u><a href=\"https://www.caisa.fi/en/events/?q=Global%20Club%20Nights\">event calendar</u>.</a></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 <u><a href=\"https://www.caisa.fi/en/events/event/BFDFDD7F694211E35CF77B582CE20924/Helsinki_Open_Waves_\">here</u></a>.</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/DEFBE4970070103BA8A9CD6173DA1FAE/HOW_radio_Global_Club_Nights",
                "sv": "http://www.caisa.fi/sv/evenemang/event/DEFBE4970070103BA8A9CD6173DA1FAE/HOW_radio_Global_Club_Nights",
                "en": "http://www.caisa.fi/en/events/event/DEFBE4970070103BA8A9CD6173DA1FAE/HOW_radio_Global_Club_Nights"
            },
            "name": {
                "fi": "HOW radio: Global Club Nights – Interkult with Andreas af Enehielm, Natalia Castrillón & Frankosun and the Family",
                "sv": "HOW radio: Global Club Nights – Interkult with Andreas af Enehielm, Natalia Castrillón & Frankosun and the Family",
                "en": "HOW radio: Global Club Nights – Interkult with Andreas af Enehielm, Natalia Castrillón & Frankosun and the Family"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61417/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61825",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6910,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-29T11:13:04.222514Z",
                    "last_modified_time": "2024-02-06T13:23:21.530850Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742298.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6910/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-29T11:13:04.209481Z",
            "last_modified_time": "2024-04-05T17:13:52.624328Z",
            "date_published": null,
            "start_time": "2024-03-13T08:30:00Z",
            "end_time": "2024-03-13T09: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,
            "provider": null,
            "short_description": {
                "fi": "Vauvasirkuksen jatkokurssilla ke 7.2.-13.3. (5x) klo 10.30-11.15 niin lapset kuin heidän aikuisensa pääsevät oppimaan uusia taitoja ja kehittämään alkeiskurssilla opittua.",
                "en": "During this advanced circus course Wed 7.2.-13.3. (5x) at 10.30-11.15 both child and adult get to learn new skills as well as build on the ones learnt on the beginners’ course."
            },
            "description": {
                "fi": "<p>Vauvasirkuksen jatkokurssilla ke 7.2.-13.3. (5x) klo 10.30-11.15 niin lapset kuin heidän aikuisensa pääsevät oppimaan uusia taitoja ja kehittämään alkeiskurssilla opittua.</p><p>Viiden kerran kurssi on suunnattu vauvasirkuskurssin käyneille. Stoan seuraava vauvasirkuksen alkeiskurssi alkaa 20.3.2024. <br> <br>Sirkus on hyvin monialaista, ja kurssilla opitut taidot ja liikkeet tarjoavat perustan paitsi sirkustaidoille, myös arkitaidoille ja myöhemmin myös monille liikuntalajeille.</p><p>Jännittävä ja vuorovaikutteinen tunti auttaa lasta löytämään mielen ja kehon yhteyden varhaisessa ikävaiheessa. Tässä tärkeässä oppimisjaksossa lapsen utelias mieli janoaa uusia kokemuksia ja niihin liittyviä tunteita. Tavoitteena on tarjota ilahduttavia hetkiä leikin äärellä ja mahdollisuuksia syventää vanhempien ja lasten välistä suhdetta.</p><p>Tervetuloa sukeltamaan sirkustaiteiden maailmaan!<br>Ohjaaja: sirkusohjaaja Enrique Salas<br>Vauvasirkusryhmän ikäsuositus: 5kk -1-vuotiaat, ei vielä kävelevät lapset  <br>Paikka: Stoan musiikkisali  <br>Kesto: 5 x 45 min   <br>Kieli: suomi, englanti ja espanja</p><p>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.<br> <br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "en": "<p>During this advanced circus course Wed 7.2.-13.3. (5x) at 10.30-11.15 both child and adult get to learn new skills as well as build on the ones learnt on the beginners’ course.</p><p>The course is meant for those who have already completed the Baby Circus for Beginners course. Next beginners’ course begins 20 March 2024.</p><p>Circus is very multi-disciplinary which allows for the introduction of many skills and movements that benefit not only circus skills but provide a foundation for many sports and life in general.</p><p>Expect an exciting and interactive class to help your child connect mind and body at an early age helping them enter a crucial learning period, where their curious minds are eager for new experiences and all of the fancy sensations that come with them. Playing and creating deeper bonds between parents and kids is our goal.</p><p>Welcome to play and dive into the circus arts.</p><p>Instructor: circus instructor and performer Enrique Salas</p><p>Info: hanna.westerholm@hel.fi</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/FC1340397D2BA864B51F7B53C9760B18/Vauvasirkuksen_jatkokurssi",
                "en": "http://www.stoa.fi/en/events/event/FC1340397D2BA864B51F7B53C9760B18/Baby_Circus_for_the_Advanced"
            },
            "name": {
                "fi": "Vauvasirkuksen jatkokurssi",
                "en": "Baby Circus for the Advanced"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61825/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61615",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6485,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:10.934874Z",
                    "last_modified_time": "2024-02-06T13:23:21.436328Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738490.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6485/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-07T14:14:10.918326Z",
            "last_modified_time": "2024-04-05T17:13:52.576124Z",
            "date_published": null,
            "start_time": "2024-03-13T08:00:00Z",
            "end_time": "2024-03-13T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.",
                "en": "The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while."
            },
            "description": {
                "fi": "<p>0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.<br> <br>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.<br> <br>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.<br> <br>Ovella lapsia on tervehtimässä Pikku-Myyrä. Lisäksi ke 17.1., 14.2. ja 24.4. pääset myös tapaamaan ja halaamaan Naperokinossa vierailevaa isoa Myyrää!</p><p>Näytöksillä on joka viikko vaihtuva teema:<br>• Ke 17.1.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 24.1.2024 Naperokino: seikkailu ja matka<br>• Ke 31.1.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 7.2.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 14.2.2024 Naperokino: ystävät ja perhe <br>• Ke 21.2.2024 Naperokino: luovuus ja taiteet <br>• Ke 28.2.2024 Naperokino: luonto ja eläimet <br>• Ke 6.3.2024 Naperokino: mielikuvitus<br>• Ke 13.3.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 20.3.2024 Naperokino: seikkailu ja matka<br>• Ke 27.3.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 3.4.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 10.4.2024 Naperokino: ystävät ja perhe<br>• Ke 17.4.2024 Naperokino: luovuus ja taiteet<br>• Ke 24.4.2024 Naperokino: luonto ja eläimet</p><p>Kieli: suomi<br>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa</p>",
                "sv": "<p>De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Under den första halvan av visningen som varar två timmar visas animerade filmer utan tal och under den andra halvan kommer finskspråkiga favoritfilmer med.</p><p>Språk: finska<br>För 0–3 åringar med sina föräldrar</p>",
                "en": "<p>The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue in Finnish.</p><p>For 0–3 year olds with their parents.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/17674CB3C2904345FF9AA8A4042B4908/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/17674CB3C2904345FF9AA8A4042B4908/Naperokino",
                "en": "http://www.annantalo.fi/en/events/event/17674CB3C2904345FF9AA8A4042B4908/Naperokino"
            },
            "name": {
                "fi": "Naperokino",
                "sv": "Naperokino – Knattebion",
                "en": "Naperokino – Toddler cinema"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61615/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61817",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6904,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-29T10:14:30.414869Z",
                    "last_modified_time": "2024-02-06T13:23:21.345847Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742293.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6904/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-29T10:14:30.390481Z",
            "last_modified_time": "2024-04-05T17:13:52.526051Z",
            "date_published": null,
            "start_time": "2024-03-13T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Taaperosirkuksen jatkokurssilla ke 7.2.-13.2. (5x) klo 9.15-10 niin lapset kuin heidän aikuisensa pääsevät oppimaan uusia taitoja ja kehittämään alkeiskurssilla opittua.",
                "en": "During this advanced circus course Wed 7.2.-13.2. (5x) at 9.15-10, both child and adult get to learn new skills as well as build on the ones learnt on the beginners’ course."
            },
            "description": {
                "fi": "<p>Taaperosirkuksen jatkokurssilla ke 7.2.-13.2. (5x) klo 9.15-10 niin lapset kuin heidän aikuisensa pääsevät oppimaan uusia taitoja ja kehittämään alkeiskurssilla opittua.</p><p>Viiden kerran mittainen kurssi on suunnattu vauvasirkuskurssin tai taaperojen alkeiskurssin käyneille. Stoan seuraava alkeiskurssi alkaa 20.3.2024. <br> <br>Sirkus on hyvin monialaista, ja kurssilla opitut taidot ja liikkeet tarjoavat perustan paitsi sirkustaidoille, myös arkitaidoille ja myöhemmin myös monille liikuntalajeille.</p><p>Jännittävä ja vuorovaikutteinen tunti auttaa lasta löytämään mielen ja kehon yhteyden varhaisessa ikävaiheessa. Tässä tärkeässä oppimisjaksossa lapsen utelias mieli janoaa uusia kokemuksia ja niihin liittyviä tunteita. Tavoitteena on tarjota ilahduttavia hetkiä leikin äärellä ja mahdollisuuksia syventää vanhempien ja lasten välistä suhdetta.</p><p>Tervetuloa sukeltamaan sirkustaiteiden maailmaan!</p><p>Ohjaaja: sirkusopettaja, sirkustaiteilija Enrique Salas</p><p>Taaperosirkuksen osallistujat: 1–2-vuotiaat, jo kävelevät lapset  <br>Paikka: Stoan musiikkisali  <br> <br>Kesto: 5 x 45 min   <br>Kieli: suomi, englanti ja espanja    <br> <br>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "en": "<p>During this advanced circus course Wed 7.2.-13.2. (5x) at 9.15-10, both child and adult get to learn new skills as well as build on the ones learnt on the beginners’ course.</p><p>The course is meant for those who have already completed the Toddler Circus for Beginners course. Next beginners’ course begins 20 March 2024.</p><p>Circus is very multi-disciplinary which allows for the introduction of many skills and movements that benefit not only circus skills but provide a foundation for many sports and life in general.</p><p>Expect an exciting and interactive class to help your child connect mind and body at an early age helping them enter a crucial learning period, where their curious minds are eager for new experiences and all of the fancy sensations that come with them. Playing and creating deeper bonds between parents and kids is our goal.<br> <br>Welcome to play and dive into the circus arts.</p><p>Instructor: circus instructor and performer Enrique Salas</p><p>Language: English, Spanish and Finnish    <br>Age recommendation: 1–2 years old with a parent or grandparent  <br>Duration: 5 x 45 min</p><p>Registration 10.1. at 10 a.m. www.stoa.fi</p><p>Info: hanna.westerholm@hel.fi</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/EFC95FFA89415DF3467835C4D367BE6C/Taaperosirkuksen_jatkokurssi_",
                "en": "http://www.stoa.fi/en/events/event/EFC95FFA89415DF3467835C4D367BE6C/Toddler_Circus_for_the_Advanced"
            },
            "name": {
                "fi": "Taaperosirkuksen jatkokurssi",
                "en": "Toddler Circus for the Advanced"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61817/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61788",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6866,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T10:12:46.344265Z",
                    "last_modified_time": "2024-02-06T13:23:21.251348Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742283.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6866/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-28T10:12:46.331949Z",
            "last_modified_time": "2024-04-05T17:13:52.472037Z",
            "date_published": null,
            "start_time": "2024-03-12T15:30:00Z",
            "end_time": "2024-03-12T16: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,
            "provider": null,
            "short_description": {
                "fi": "Stoan notkea sirkusryhmä 3–6-vuotiaille lapsille ja heidän aikuisilleen. Kymmenen opetuskerran kurssi: ti 6.2. -16.4. klo 17.30-18.15 (ei talvilomaviikolla ti 20.2.).",
                "sv": "Cirkus är något som väckt nyfikenhet och glädje i familjer genom tiderna. 6.2. -16.4. kl 17.30-18.15",
                "en": "The circus has awoken curiosity and joy for families during ages. Tue 6.2. -16.4. at 17.30-18.15"
            },
            "description": {
                "fi": "<p>Stoan notkea sirkusryhmä 3–6-vuotiaille lapsille ja heidän aikuisilleen. Kymmenen opetuskerran kurssi: ti 6.2. -16.4. klo 17.30-18.15 (ei talvilomaviikolla ti 20.2.).</p><p>Sirkus on aina herättänyt uteliaisuutta ja iloa niin isoissa kuin pienissäkin. Tämä lapsen ja aikuisen yhteinen harrastus avaa ovia sirkuksen maailmaan.</p><p>Sirkuskurssilla leikitään ja kokeillaan erilaisia sirkustaitoja kuten tasapainoilua, akrobatiaa ja jongleerausvälineitä. Lapsesi pääsee iloitsemaan kokonaisvaltaisesta aistikokemuksesta, joka edistää luovuutta ja hahmotuskykyä sekä kehittää tärkeitä taitoja, kuten tasapainoa, voimaa ja koordinaatiota. Aikuiset saavat samalla vetreyttää omia taitojaan, pääsevät tutustumaan muihin vanhempiin tai isovanhempiin sekä tietenkin luomaan läheistä suhdetta omaan lapseensa.</p><p>Ohjaaja: Enrique Salas <br>Kesto: 10 x 45 min <br>Max. osallistujamäärä: 12 paria <br>Kielet: englanti, espanja, suomi <br>Maksuton.</p><p>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.</p><p>HUOM! Jos et mahtunut kurssille mukaan, mutta haluat päästä tutustumaan perhesirkustoimintaan, voit tulla paikan päälle ennen kurssin alkua kokeilemaan onneasi. Otamme jokaisella kurssikerralla mukaan max kaksi lapsi-aikuinen-paria kokeilemaan harrastusta kertaluonteisesti, jos tilaa on.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Cirkus är något som väckt nyfikenhet och glädje i familjer genom tiderna. 6.2. -16.4. kl 17.30-18.15</p><p>Nu är det dags för skoj och lek i cirkusens magiska värld. Upplevelsen involverar även ditt barns alla sinnen, vilket uppmuntrar till kreativitet, utvecklar rumsuppfattningen och låter det träna på grundläggande färdigheter, såsom balans, styrka, koordination osv. Föräldrar får pröva på cirkuskonst och självklart också knyta an till sitt eget barn.</p><p>Lektioner för barn i åldern 3–6 tillsammans med vuxen.</p><p>Instruktör: cirkusinstruktören och artisten Enrique Salas  <br>Längd: 10 x45 min. <br>Språk: engelska, spanska och finska  <br>Fritt inträde</p><p>Obligatorisk förhandsregistrering fr.o.m. 10.1. kl 10. www.stoa.fi<br>Mera info: hanna.westerholm@hel.fi</p>",
                "en": "<p>The circus has awoken curiosity and joy for families during ages. Tue 6.2. -16.4. at 17.30-18.15</p><p>Now it is time to have fun with your little toddler throughout the magic of circus. It will be a complete sensory experience for your child, encouraging creativity, laterality, developing spatial awareness and building on essential skills like balance, strength, coordination and more. Parents will get a chance to have a go at some circus skills and of course bond with your own little one.</p><p>Classes for children from 3 to 6 years of age accompanied by an adult.</p><p>Instructor: circus instructor and performer Enrique Salas  <br>Duration: 10 x 45 min <br>Languages: English, Spanish, Finnish <br>Free entry</p><p>Pre-registration starting from Jan 10th at 10 a.m. at stoa.fi<br>More info: hanna.westerholm@hel.fi</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/19A57E71EC5BBBDAEE515186E9E2CD01/Stoan_perhesirkuskurssi_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/19A57E71EC5BBBDAEE515186E9E2CD01/Cirkus_for_familjer_",
                "en": "http://www.stoa.fi/en/events/event/19A57E71EC5BBBDAEE515186E9E2CD01/Circus_course_for_families_"
            },
            "name": {
                "fi": "Stoan perhesirkuskurssi",
                "sv": "Cirkus för familjer",
                "en": "Circus course for families"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61788/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61779",
            "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:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?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:51/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6854,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T09:14:14.594332Z",
                    "last_modified_time": "2024-02-06T13:23:21.059302Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742273.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6854/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2023-12-28T09:14:14.568788Z",
            "last_modified_time": "2024-04-05T17:13:52.392277Z",
            "date_published": null,
            "start_time": "2024-03-12T14:00:00Z",
            "end_time": "2024-03-12T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Liikunnan ei tarvitse olla tylsää! Ikäihmisten kymmenen opetuskerran sirkuskurssilla tehdään muun muassa tasapaino- ja liikkuvuusharjoituksia sirkusvälineillä. Kurssiaika: ti 6.2. -16.4. klo 16-17 (ei talvilomaviikolla ti 20.2.).",
                "sv": "Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.",
                "en": "At the senior circus course, the participants get to, for example, practise their balance and mobility using circus equipment."
            },
            "description": {
                "fi": "<p>Liikunnan ei tarvitse olla tylsää! Ikäihmisten kymmenen opetuskerran sirkuskurssilla tehdään muun muassa tasapaino- ja liikkuvuusharjoituksia sirkusvälineillä. Kurssiaika: ti 6.2. -16.4. klo 16-17 (ei talvilomaviikolla ti 20.2.).</p><p>Sirkusliikuntataidot pidentävät elinikää ja parantavat elämänlaatua pureutumalla etenkin ikääntyviä koskeviin tarpeisiin, kuten tasapainoon ja notkeuteen, muistiin ja virkeyteen, kiputilojen vähentämiseen ja sosiaaliseen kanssakäymiseen. Kevyet ja tehokkaat venytys- ja liikerataharjoitukset parantavat ja ylläpitävät vartalon koordinaatiota, tasapainoa ja kehonhallintaa. Laji ei vaadi pohjakuntoa, vaan pelkkä halu oppia uusia taitoja hauskalla tavalla riittää. Tervetuloa mukaan – rohkeus palkitaan!</p><p>Ohjaaja: sirkusohjaaja Enrique Salas  <br>Paikka: Stoan musiikkisali    <br>Kesto: 10 x 60 min    <br>Max. osallistujamäärä: 20<br>Kieli: englanti, espanja, suomi <br>Maksuton</p><p>Ennakkoilmoittautuminen ke 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla puolella olevan Ilmoittaudu-näppäimen kautta.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.</p><p>Cirkuskonst är ett förträfflig sätt att förlänga livet och öka livskvaliteten genom att fokusera på behov som är specifikt kopplade till åldrande, inklusive balans och vighet, minne och minnesprocesser, smärthantering och sociala relationer. Inga krav ställs på kondition eller former – det enda målet är att ha roligt och lära sig nya saker, göra lätta till moderata stretchövningar samt en rad konditionsaktiviteter som syftar till förbättrad och bibehållen koordination mellan händerna, balans och hållning. Aktiviteterna kan göras sittande eller stående.</p><p>Instruktör: cirkusinstruktören och artisten Enrique Salas  <br>Åldersrekommendation: för seniorer  <br>Längd: 10 x 60 min <br>Språk: engelska, spanska och finska  <br>Fritt inträde</p><p>Obligatorisk förhandsregistrering fr.o.m. 10.1.2024 kl 10.00 på stoa.fi.</p><p>Info: hanna.westerholm@hel.fi</p>",
                "en": "<p>At the senior circus course, the participants get to, for example, practise their balance and mobility using circus equipment.</p><p>Circus skills are excellent to increase longevity and boost the quality of life by addressing needs specific to aging including balance and flexibility, memory and processing, pain management, and social connection. It is not necessary for any condition or shape just the aim for fun and learning new skills, light to moderate stretching and range of motion activities to improve and maintain bi-manual coordination, balance, and postural control.</p><p>Instructor: circus instructor and performer Enrique Salas  <br>Age recommendation: for senior citizens  <br>Duration: 10 x 60 min <br>Languages: English, Spanish, Finnish <br>Free entry</p><p>Pre-registration starting from Jan 10th at 10 a.m. at stoa.fi</p><p>More info: hanna.westerholm@hel.fi</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/DDDFAC661BD2B86D28AC6D2E44BFB646/Stoan_seniorisirkuskurssi_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/DDDFAC661BD2B86D28AC6D2E44BFB646/Cirkus_for_seniorer_",
                "en": "http://www.stoa.fi/en/events/event/DDDFAC661BD2B86D28AC6D2E44BFB646/Circus_course_for_seniors_"
            },
            "name": {
                "fi": "Stoan seniorisirkuskurssi",
                "sv": "Cirkus för seniorer",
                "en": "Circus course for seniors"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61779/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61525",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-6/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6352,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-30T12:13:47.042401Z",
                    "last_modified_time": "2024-02-06T13:23:20.854105Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736484.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6352/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-30T12:13:47.022037Z",
            "last_modified_time": "2024-04-05T17:13:52.314739Z",
            "date_published": null,
            "start_time": "2024-03-12T11:30:00Z",
            "end_time": "2024-03-12T13: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,
            "provider": null,
            "short_description": {
                "fi": "Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "description": {
                "fi": "<p>Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.<br> <br><b>Osallistuminen </b><br>Taidetta taaperoille- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/B9FCE5DD1A76A87658D7E47A96FCDB27/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/B9FCE5DD1A76A87658D7E47A96FCDB27/Konst_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/B9FCE5DD1A76A87658D7E47A96FCDB27/Open_Art_Studio_for_Toddlers"
            },
            "name": {
                "fi": "Taidetta taaperoille",
                "sv": "Konst för småbarn",
                "en": "Open Art Studio for Toddlers"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61525/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61625",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6886,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T13:14:24.388238Z",
                    "last_modified_time": "2024-02-06T13:23:20.764451Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739505.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6886/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-28T13:14:24.341929Z",
            "last_modified_time": "2024-04-05T17:13:52.255460Z",
            "date_published": null,
            "start_time": "2024-03-11T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien ohjelmistossa vuorossa on blueshuuliharpun mestari Helge Tallqvist.",
                "sv": "Inled veckan med sväng! På programmet för vårens Juurilla-klubbar står Helge Tallqvist i tur, mästare på bluesmunspel.",
                "en": "Start your week with some catchy tunes! This autumn, At the Roots Club features the master of the blues harmonica, Helge Tallqvist."
            },
            "description": {
                "fi": "<p>Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien ohjelmistossa vuorossa on blueshuuliharpun mestari Helge Tallqvist.</p><p>Huuliharpputaituri Helge Tallqvist inspiroitui blueshuuliharpun soitosta vierailtuaan George “Harmonica” Smithin luona Los Angelesissa vuonna 1982. Tallqvistin vuonna 2005 ilmestynyt legendaarinen levy Plays George “Harmonica” Smith keräsi kiitosta Yhdysvalloissa asti. Helge Tallqvist on keikkaillut maailmalla muun muassa jazz- ja blueslaulaja Ina Forsmanin sekä soulmuusikko Emilia Siscon kanssa.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka, laulu, kitara<br>Lasse Sirkko, basso<br>Tommi Lievemaa, kitara<br>Olli Haavisto, pedal steel guitar<br>Sirpa Suomalainen, saksofoni<br>Kepa Kettunen, rummut</p><p><u><a href=\"https://www.kanneltalo.fi/maksuttomat-maanantait\">Maksuttomat maanantait</u></a> on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Inled veckan med sväng! På programmet för vårens Juurilla-klubbar står Helge Tallqvist i tur, mästare på bluesmunspel.</p><p><u><a href=\"https://www.kanneltalo.fi/sv/konstadsfria-mandagar\">Kostnadsfria måndagar</u></a> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Start your week with some catchy tunes! This autumn, At the Roots Club features the master of the blues harmonica, Helge Tallqvist.</p><p><u><a href=\"https://www.kanneltalo.fi/en/free-mondays\">Free Mondays</u></a> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/AA7C6C2CFBF5272A58880F068CEE98B9/Juurilla_Helge_Tallqvist",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/AA7C6C2CFBF5272A58880F068CEE98B9/Juurilla_Helge_Tallqvist",
                "en": "http://www.kanneltalo.fi/en/events/event/AA7C6C2CFBF5272A58880F068CEE98B9/Juurilla_Helge_Tallqvist"
            },
            "name": {
                "fi": "Juurilla: Helge Tallqvist – Maksuttomat maanantait",
                "sv": "Juurilla: Helge Tallqvist – Kostnadsfria måndagar",
                "en": "Juurilla: Helge Tallqvist – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61625/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61863",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7085,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-10T13:13:00.438579Z",
                    "last_modified_time": "2024-02-06T13:23:20.676776Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736593.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7085/?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-01-10T13:13:00.424789Z",
            "last_modified_time": "2024-04-05T17:13:52.207190Z",
            "date_published": null,
            "start_time": "2024-03-11T08:15:00Z",
            "end_time": "2024-03-11T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together."
            },
            "description": {
                "fi": "<p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p>",
                "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.<br>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska</p>",
                "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/03B7B08CB17EAA52DD7FBF3CDF220125/Tanssi_ja_leikki_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/03B7B08CB17EAA52DD7FBF3CDF220125/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/03B7B08CB17EAA52DD7FBF3CDF220125/The_dance_and_play"
            },
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek – Verkstaden",
                "en": "The dance and play – Workshop"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61863/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61862",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7084,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-10T13:13:00.363210Z",
                    "last_modified_time": "2024-02-06T13:23:20.584172Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736576.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7084/?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-01-10T12:13:05.350301Z",
            "last_modified_time": "2024-04-05T17:13:52.153328Z",
            "date_published": null,
            "start_time": "2024-03-11T07:15:00Z",
            "end_time": "2024-03-11T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together."
            },
            "description": {
                "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p><b>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</b></p>",
                "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid.</p><p><b>Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med. </b></p><p>Språk: finska</p>",
                "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/8919C38F40ACFCCA5DEC9F807787ADBB/Tanssi_ja_leikki",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8919C38F40ACFCCA5DEC9F807787ADBB/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/8919C38F40ACFCCA5DEC9F807787ADBB/The_dance_and_play"
            },
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek – Verkstaden",
                "en": "The dance and play – Workshop"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61862/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61146",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoyjazzfest/#calendar-start=2024-03",
                        "sv": "https://www.lippu.fi/artist/savoyjazzfest/#calendar-start=2024-03",
                        "en": "https://www.lippu.fi/artist/savoyjazzfest/#calendar-start=2024-03"
                    },
                    "price": {
                        "fi": "67/47/37/15 €",
                        "sv": "67/47/37/15 €",
                        "en": "67/47/37/15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5466,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-13T12:24:34.148204Z",
                    "last_modified_time": "2024-02-06T13:23:20.492124Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738060.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5466/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-13T12:24:33.159152Z",
            "last_modified_time": "2024-04-05T17:13:52.096340Z",
            "date_published": null,
            "start_time": "2024-03-09T18:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Savoy-teatteri",
                "sv": "Savoy-teatern",
                "en": "Savoy Theatre"
            },
            "short_description": {
                "fi": "Legendaarinen saksofonisti Kenny Garrett Savoy JAZZFestiin",
                "sv": "Legendariska saxofonisten Kenny Garrett till Savoy JAZZFest",
                "en": "Legendary saxophonist Kenny Garrett to Savoy JAZZFest"
            },
            "description": {
                "fi": "<p>Legendaarinen saksofonisti Kenny Garrett Savoy JAZZFestiin</p><p>Maailman arvostetuimpiin alttosaksofonisteihin lukeutuva Kenny Garrett esiintyy Savoy JAZZFestissa lauantaina 9. maaliskuuta. Grammy-palkittu muusikko on urallaan työskennellyt mm. Miles Davisin ja Art Blakeyn kanssa sekä julkaissut yli 20 sooloalbumia.</p><p>Savoy JAZZFestin konsertissa kuullaan kappaleita Garrettin uusimmalta albumilta Sounds from the Ancestors (2021), joka kumartaa Garrettin kotikaupungin Detroitin rikkaalle r&b-, jazz- ja gospel-perinteelle. Samalla levy on kunnianosoitus hänen muusikkoesikuvilleen laulaja Aretha Franklinista pianisti-säveltäjä Chucho Valdésiin. Ylistävät arviot saanut albumi nimettiin yhdeksi vuoden 2021 parhaista jazzlevyistä.</p><p>Garrettin sävellykset sisältävät elementtejä post-bopista, bluesista ja R&B:stä. Hänen soitossaan yhdistyvät virtuoosisuus, melodisuus ja vahva ilmaisuvoima. Savoy-teatterissa hänen kanssaan esiintyvät Corcoran Holt, basso, Rudy Bird, perkussiot, Keith Brown, piano, Ronald Bruner, rummut sekä Melvis Santa, laulu ja koskettimet.</p><p>Kesto n. 1,5 t, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>",
                "sv": "<p>Legendariska saxofonisten Kenny Garrett till Savoy JAZZFest</p><p>Kenny Garrett, en av världens mest uppskattade altsaxofonister, uppträder på Savoy JAZZFest lördagen den 9 mars. Den Grammy-belönade musikern har under sin karriär jobbat med bland annat Miles Davis och Art Blakey och släppt över 20 soloalbum.</p><p>Under konserten på Savoy JAZZFest får vi höra låtar från Garretts senaste album, Sounds from the Ancestors (2021), som bugar sig för den rika R&B-, jazz- och gospeltraditionen i Garretts hemstad Detroit. Albumet är på samma gång en hyllning till Garretts musikaliska förebilder, från sångerskan Aretha Franklin till pianisten och kompositören Chucho Valdés. Det hyllade albumet utsågs till ett av de bästa jazzalbumen 2021.</p><p>I Garretts kompositioner hörs inslag av post-bop, blues och R&B. Hans spelande är en mix av virtuositet, melodiskhet och uttrycksfullhet. På Savoyteatern uppträder han tillsammans med Corcoran Holt, bas, Rudy Bird, perkussioner, Keith Brown, piano, Ronald Bruner, trummor samt Melvis Santa, sång och keyboard.</p><p>Längd ca 1,5 h, utan paus.</p><p>Parkett utskänkningsområde, åldersgräns 18 år. Läktare T, ingen utskänkning.</p>",
                "en": "<p>Legendary saxophonist Kenny Garrett to Savoy JAZZFest</p><p>Kenny Garrett, one of the world’s most renowned alto saxophonists, to perform at Savoy JAZZFest on Saturday 9 March. The Grammy Award-winning musician has worked, for example, with Miles Davis and Art Blakey, and released more than 20 solo albums.</p><p>Savoy JAZZFest will feature tracks from Garrett’s latest album Sounds from the Ancestors (2021), which pays homage to the rich R&B, jazz and gospel tradition of Garrett’s hometown Detroit. The album is also a tribute to his musical role models, from singer Aretha Franklin to pianist-composer Chucho Valdés. The album, which received rave reviews, was named one of the best jazz albums of 2021.</p><p>Garrett’s compositions include elements of post bop, blues and R&B. His playing combines virtuosity, melodicism and strong expressiveness. At Savoy Theatre, he will perform with Corcoran Holt on bass, Rudy Bird on percussions, Keith Brown on piano, Ronald Bruner on drums and Melvis Santa on vocals and keyboards.</p><p>Duration is about 1.5 h, no interval.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/4E7471E9ED8244A864F4D21C8222BCA2/Kenny_Garrett_and_Sounds_From_The_Ancestors_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/4E7471E9ED8244A864F4D21C8222BCA2/Kenny_Garrett_and_Sounds_From_The_Ancestors_",
                "en": "http://www.savoyteatteri.fi/en/events/event/4E7471E9ED8244A864F4D21C8222BCA2/Kenny_Garrett_and_Sounds_From_The_Ancestors_"
            },
            "name": {
                "fi": "Kenny Garrett and Sounds From The Ancestors – Savoy JAZZFest 6.-9.3.2024",
                "sv": "Kenny Garrett and Sounds From The Ancestors – Savoy JAZZFest 6.-9.3.2024",
                "en": "Kenny Garrett and Sounds From The Ancestors – Savoy JAZZFest 6.-9.3.2024"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61146/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61804",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3560835",
                        "sv": "https://www.lippu.fi/eventseries/name-3560835",
                        "en": "https://www.lippu.fi/eventseries/name-3560835"
                    },
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6885,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T13:14:24.005312Z",
                    "last_modified_time": "2024-02-06T13:23:20.096059Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739578.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6885/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-28T13:14:23.966080Z",
            "last_modified_time": "2024-04-05T17:13:52.033747Z",
            "date_published": null,
            "start_time": "2024-03-09T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Unreality on Suomen ensimmäinen elokuva-, televisiosarja- ja videopelimusiikkiin erikoistunut sekakuoro.",
                "sv": "Unreality är Finlands första blandade kör som specialiserar sig på musik från filmer, TV-serier och videospel.",
                "en": "Unreality is Finland's first mixed choir that specialises in film, TV and game music."
            },
            "description": {
                "fi": "<p>Unreality on Suomen ensimmäinen elokuva-, televisiosarja- ja videopelimusiikkiin erikoistunut sekakuoro.</p><p>Päivät pitenevät taas, ja lisääntyvä valo herättää tunteet eloon. Astu sydämen poluille ja poimi ruusu rakkaallesi, osta se kauan haaveilemasi jahti tai nauti vain kynttilän lailla lämmittävästä arjesta.</p><p>Suomen ensimmäinen soundtrack-musiikkiin erikoistunut sekakuoro Unreality esittää monimuotoisen tarjoilun suurten tunteiden sävelmiä, joiden lähteinä ovat mm. Shingeki no Kyojin, Poldark sekä Aggretsuko. Kuoroa johtaa Jari Koivistoinen.</p><p>Kesto: 1 t<br>Ikäsuositus: kaikenikäisille</p>",
                "sv": "<p>Unreality är Finlands första blandade kör som specialiserar sig på musik från filmer, TV-serier och videospel.</p><p>Unreality-kören har dirigerats av Jari Koivistonen sedan år 2017.</p>",
                "en": "<p>Unreality is Finland's first mixed choir that specialises in film, TV and game music.</p><p>Unreality choir has been led by Jari Koivistoinen since 2017.</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2AB3E15016E6BBF8FD4D2077A2983322/Unreality-kuoro",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2AB3E15016E6BBF8FD4D2077A2983322/Unreality-koren",
                "en": "http://www.kanneltalo.fi/en/events/event/2AB3E15016E6BBF8FD4D2077A2983322/Unreality-choir"
            },
            "name": {
                "fi": "Unreality-kuoro – Heart Avenue – sydämen polut",
                "sv": "Unreality-kören",
                "en": "Unreality-choir"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61804/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61748",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/vuotalo/narinkka-klezmerkuvia-itae-helsingistae-3558152/",
                        "sv": "https://www.lippu.fi/artist/vuotalo/narinkka-klezmerkuvia-itae-helsingistae-3558152/",
                        "en": "https://www.lippu.fi/artist/vuotalo/narinkka-klezmerkuvia-itae-helsingistae-3558152/"
                    },
                    "price": {
                        "fi": "20 € / 15 € + tilausmaksut",
                        "sv": "20 € / 15 € + tilausmaksut",
                        "en": "20 € / 15 € + tilausmaksut"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6820,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-27T07:13:55.121317Z",
                    "last_modified_time": "2024-02-06T13:23:20.186553Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742797.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6820/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-27T07:13:55.097121Z",
            "last_modified_time": "2024-04-05T17:13:51.926906Z",
            "date_published": null,
            "start_time": "2024-03-09T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Miltä Uutela kuullostaa suomalaisen klezmermusiikin sävyin?",
                "sv": "Hur låter Uutela som finländsk klezmermusik?",
                "en": "What does Uutela sound like with a touch of Finnish klezmer music?"
            },
            "description": {
                "fi": "<p>Miltä Uutela kuullostaa suomalaisen klezmermusiikin sävyin?</p><p>Kolmannen albuminsa julkaisukiertueen konsertissa kansainvälisesti menestynyt itähelsinkiläinen suomiklezmeryhtye Narinkka kuvittaa Itä-Helsinkimme tuttuja ja rakkaita seutuja klezmermusiikin keinoin – omaan rempseään tyylinsä<br> <br>Omat raikkaat kuvansa saavat mm. Vartsika (Tango de Vartsika), Puotilan ostari, Uutela (Uutela Tanz) ja Roihis (A Lovescene in Roihuvuori Shopping Center). Melodiset, tunnelmaa täynnä olevat ja välillä riehakkaatkin perinteiset klezmerkappaleet sitovat illan kokonaisuuden.<br> <br>Tämä on itähelsinkiläisyyden ja klezmerin juhlailta Vuotalossa!<br> <br>Sampo Lassila, kontrabasso ja sävellykset<br>Aleksi Trygg, viola pomposa<br>Markku Lepistö,  harmonikka<br>Janne Tuomi, matkalaukut ja lyömäsoittimet</p><p>Ikäsuositus: K-18 – Klubi-ilta, A-oikeudet. Kahvila Pokkari vastaa tarjoiluista.</p><p>Alle 18-vuotiaat sisään vain huoltajan tai vanhemman seurassa.</p><p>Kesto: 1 t 50 min, sis. väliajan 20 min</p>",
                "sv": "<p>Hur låter Uutela som finländsk klezmermusik?</p><p>Det internationellt framgångsrika finländska klezmerbandet Narinkka från Östra Helsingfors turnerar i samband med sitt tredje albumsläpp. På konserten målar de upp välbekanta och kära trakter i Östra Helsingfors med hjälp av klezmermusik – i sin egen lättsamma stil.</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari.</p>",
                "en": "<p>What does Uutela sound like with a touch of Finnish klezmer music?</p><p>In this concert, during its third album release tour, the internationally successful eastern Helsinki-based Finnish klezmer band Narinkka will depict familiar and beloved neighbourhoods in eastern Helsinki through klezmer music in its own distinctive style.</p><p>Club-Night, A-rights, servicde by Café Pokkari.</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/75B6956BA2EBF369623B82B2FB1F6A4E/Narinkka_Klezmerkuvia_Ita-Helsingista_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/75B6956BA2EBF369623B82B2FB1F6A4E/Narinkka_Klezmermotiv_fran_Ostra_Helsingfors_",
                "en": "http://www.vuotalo.fi/en/events/event/75B6956BA2EBF369623B82B2FB1F6A4E/Narinkka_Klezmer_photos_of_eastern_Helsinki_"
            },
            "name": {
                "fi": "Narinkka: Klezmerkuvia Itä-Helsingistä! – Klubi-ilta",
                "sv": "Narinkka: Klezmermotiv från Östra Helsingfors! – Klubbkväll",
                "en": "Narinkka: Klezmer photos of eastern Helsinki! – Club Night"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61748/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61268",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/satakieli-3542913/",
                        "sv": "https://www.lippu.fi/artist/stoa/satakieli-3542913/",
                        "en": "https://www.lippu.fi/artist/stoa/satakieli-3542913/"
                    },
                    "price": {
                        "fi": "24 € / 15 € / 10 €",
                        "sv": "24 € / 15 € / 10 €",
                        "en": "24 € / 15 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6184,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T12:13:18.492618Z",
                    "last_modified_time": "2024-02-06T13:23:20.006675Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739156.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6184/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T12:13:18.474522Z",
            "last_modified_time": "2024-04-05T17:13:51.868022Z",
            "date_published": null,
            "start_time": "2024-03-09T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.",
                "sv": "Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.",
                "en": "Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories."
            },
            "description": {
                "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi <b>Susanna Leinosen</b> vahvaan ja ilmaisuvoimaiseen liikkeeseen. Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Tanssijoiden ääniohjauksesta on vastannut näyttelijä-laulaja <b>Eija Ahvo</b> ja teoksen musiikin on säveltänyt <b>Kasperi Laine</b>.</p><p>Stoassa kantaesityksensä 2.3. saava Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Koreografia: Susanna Leinonen<br>Ääniohjaus: Eija Ahvo<br>Musiikki: Kasperi Laine</p><p>Kesto n. 50 min.</p><p>Esitysten jälkeen järjestetään yleisökeskustelu, moderaattorina toimii Susanna Leinonen, kesto max 30 min.</p>",
                "sv": "<p>Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.</p><p>Kraften från den vishet och livserfarenhet som ålderdomen för med sig förenas med koreografen Susanna Leinonens starka och uttrycksfulla rörelse.</p>",
                "en": "<p>Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories.</p><p>The power that comes from the wisdom and life experiences brought on by age is combined with the strong and expressive movement of Choreographer Susanna Leinonen.</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/99D0F3504A2EC9DF5512A77C6DDC3204/Susanna_Leinonen_Company_Satakieli_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/99D0F3504A2EC9DF5512A77C6DDC3204/Susanna_Leinonen_Company_Naktergal_",
                "en": "http://www.stoa.fi/en/events/event/99D0F3504A2EC9DF5512A77C6DDC3204/Susanna_Leinonen_Company_Nightingale"
            },
            "name": {
                "fi": "Susanna Leinonen Company: Satakieli",
                "sv": "Susanna Leinonen Company: Näktergal",
                "en": "Susanna Leinonen Company: Nightingale"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61268/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61465",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/naekymaettoemyyksiae-3550882/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/naekymaettoemyyksiae-3550882/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/naekymaettoemyyksiae-3550882/"
                    },
                    "price": {
                        "fi": "10 € / 7 €",
                        "sv": "10 € / 7 €",
                        "en": "10 € / 7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6299,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-28T13:13:00.946672Z",
                    "last_modified_time": "2024-02-06T13:23:19.912240Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740467.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6299/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-28T13:13:00.926343Z",
            "last_modified_time": "2024-04-05T17:13:51.802635Z",
            "date_published": null,
            "start_time": "2024-03-09T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tanssitaiteen tapahtuman Näkymättömyyksiä teosten teemoja ovat kosketukseen liittyvät oletukset, ihmisten välinen kommunikaatio sekä tilan käyttö.",
                "sv": "Teman i danskonstevenemanget Osynligheter är antagandena om beröring, kommunikation mellan människor och användning av utrymme.",
                "en": "Themes of the dance art event Näkymättömyyksiä include assumptions related to touch, communication between people and the use of space."
            },
            "description": {
                "fi": "<p>Tanssitaiteen tapahtuman Näkymättömyyksiä teosten teemoja ovat kosketukseen liittyvät oletukset, ihmisten välinen kommunikaatio sekä tilan käyttö.</p><p>Huom! Kahden teoksen yhteislipun lisäksi myynnissä on lippuja pelkkään ensimmäisenä esitettävään Kinesfäärejä -teokseen.</p><p>Lauantain 9.3. esitykset kuvailutulkataan näkörajoitteisille suomeksi ja niiden jälkeen järjestetään lipun hintaan kuuluva taiteilijatapaaminen ja kahvihetki tarjoiluineen.</p><p><b>Kinesfäärejä</b><br>Kinesfäärejä on syntynyt tanssin ja äänen tuottamisen kehollisen kokemuksen tutkimisesta. Kinesfääri on kolmiulotteinen tila, jossa liikkeen ja äänen voi aistia oman itsen ympärillä.</p><p>Teoksen työryhmä on tutkinut kosketusta ja sen laatuja sekä kysymystä, miten lähestyä kosketuksen kanssa työskentelyä turvallisemman tilan periaatteiden kautta. Teoksessa kosketus on myös kehon soittamisen ja äänen tuottamisen keino.</p><p>Teoksessa tanssijoilla on jaettu ymmärrys yhteisestä matkasta teoksen läpi. Kuitenkin yksilöllinen liike- ja äänitutkimus ja omat improvisatoriset ratkaisut säilyvät matkan aikana.</p><p>Teos on toteutettu osana Ammattiopisto Liven tanssialan koulutusohjelman opintoja. Tutkinto on Suomen ainoa erityisopetuksena tarjottu tanssialan ammatillinen tutkinto. Kinesfäärejä on taidepedagoginen tanssiteos, jossa lavalla nähdään tanssialan koulutusohjelman opiskelijoita.</p><p>Koreografia: Jasmiina Sipilä<br>Äänisuunnittelu sekä kehorytmit ja -musiikit: Hannaleena Markkanen<br>Tanssin ammatillinen ohjaaja: Hanna Heino<br>Tanssijat: Jaakko Kuikka, Miika Luukko, Emmi Mäkelä, Helmi Niemi, Ana Khalili, Kadar Khristan, Tette Karila ja Hanna Heino</p><p>Kesto: 35 min</p><p><b>Tutkimusasema Nunatak</b><br>Tutkimusasema Nunatak on kokemuksellinen ja osallistuva installaatio.</p><p>Sana ’nunatak’ tarkoittaa jäätiköstä esiin työntyvää kivikkoharjannetta tai vuorenhuippua. Nunatak on kuin saari jäätyneessä valtameressä, eristynyt mutta myös paikka, jossa on mahdollista elää. Tila, jossa on omanlaisensa eläimistö ja kasvisto. Turvasatama, jossa voi hengittää ja josta voi lähteä tutkimaan ympäröivää maailmaa.<br> <br>Installaatiossa pääset tutkimaan tilan käsitettä; miten tilat syntyvät, millaisia tiloja voimme itse luoda, miten voimme vaikuttaa tilan luomiseen, millaisissa tiloissa on hyvä olla, kuinka tilat voivat laajentaa normeja. Tila voi olla esimerkiksi fyysinen tila, mielentila, muisto, jotain mitä syntyy, kun kaksi olentoa kohtaavat. <br> <br>Installaatioon voi osallistua haluamallaan tavalla. Kaikki tavat tehdä omaa tutkimusmatkaa ovat oikeita. Installaation ja loppukeskustelun aikana ei tarvitse puhua tai ottaa kontaktia muihin osallistujiin. Myös pelkkä rauhallinen oleskelu omassa tilassa on mahdollista.</p><p>Tutkimusasema Nunatak pohjautuu Fri Nilas Lindellin tanssisooloon ”Nunatak - Liikkeellinen Runo Tiloista” (2022).</p><p>Ota halutessasi mukaan omat muistiinpanovälineet. Paperia ja kyniä löytyy myös tilasta.<br> <br>Työryhmä: Fri Nilas Lindell, Hanna Heino, Topi Hurtig</p><p>Kesto: 35-45 min</p><p><b>Fri Nilas Lindell</b> valmistui tanssijaksi Ammattiopisto Liveltä joulukuusssa 2022. Ammattiopisto Live on Suomen ainoa erityisoppilaitos, jossa voi opiskella tanssialan perustutkinnon. Syyskuussa 2023 Lindell oli mukana Janina Rajakangas Projektin Tanssija -teoksessa Kiasma teatterilla neurokirjon kokemusasiantuntijana.</p><p><i>”Minua kiinnostaa tanssissa, miten taiteen ja liikkeen avulla voi saada kosketusta johonkin syvään kerrokseen mihin ei muuten pääse. Haluan edesauttaa tanssin inklusiivisuutta ja kaikkien mahdollisuutta saada sekä kokea, että tehdä tanssia.”</i></p><p>Teosten yhteiskesto: n. 1 t 35 min (sis. 20 min väliajan) + taiteilijatapaaminen (lauantai 9.3. klo 16:45)</p>",
                "sv": "<p>Teman i danskonstevenemanget Osynligheter är antagandena om beröring, kommunikation mellan människor och användning av utrymme.</p><p><b>Fri Nilas Lindells </b>soloverk <i>Nunatak</i> undersöker vilka utrymmen vi skapar, vad vi bygger utrymmena av och om man kan utvidga normerna med olika utrymmen. Föreställningen uppmuntrar upplevaren att fundera över hurdana utrymmen och av vilken kvalitet man har i sin vardag och hur de uppstår.</p><p><b>Jasmina Sipiläs</b> koreografi för studerandena inom Ammattiopisto Lives utbildningsprogram för dansbranschen <i>KINESFÄR</i> har uppkommit genom att koreografen undersökt den fysiska erfarenheten av dans och ljudproduktion. Det är ett tredimensionellt utrymme där man kan känna rörelsen och ljudet omkring sig.</p>",
                "en": "<p>Themes of the dance art event Näkymättömyyksiä include assumptions related to touch, communication between people and the use of space.</p><p>Note! In addition to the joint ticket for the two pieces, there are also tickets for only Kinesfäärejä, which will be performed first.</p><p><b>Fri Nilas Lindell’s</b> solo piece <i>Nunatak</i> explores the kind of spaces we create, what we create spaces from, and whether different types of spaces can extend the norms. The performance encourages the experiencer to consider what kind and quality of spaces their everyday life has and how the spaces are created.</p><p><i>KINESFÄÄREJÄ</i>, choreographed by <b>Jasmiina Sipilä</b> for students of Live Vocational College’s dance programme, emerged from the study of the bodily experience of dance and sound production. It is a three-dimensional space where you can sense movement and sound around you.</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/998F02C2115579D73FEFF9F14DEE522F/Fri_Nilas_Lindell_Tutkimusasema_Nunatak_Jasmiina_Sipila_tyoryhma_Kinesfaareja_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/998F02C2115579D73FEFF9F14DEE522F/Fri_Nilas_Lindell_Tutkimusasema_Nunatak_Jasmiina_Sipila_arbetsgruppen_Kinesfaareja",
                "en": "http://www.caisa.fi/en/events/event/998F02C2115579D73FEFF9F14DEE522F/Fri_Nilas_Lindell_Tutkimusasema_Nunatak_Jasmiina_Sipila_working_group_Kinesfaareja"
            },
            "name": {
                "fi": "Fri Nilas Lindell: Tutkimusasema Nunatak | Jasmiina Sipilä & työryhmä: Kinesfäärejä – Osana Näkymättömyyksiä -tanssitaiteen tapahtumaa",
                "sv": "Fri Nilas Lindell: Tutkimusasema Nunatak | Jasmiina Sipilä & arbetsgruppen: Kinesfäärejä – Osynligheter | Danskonstevenemang",
                "en": "Fri Nilas Lindell: Tutkimusasema Nunatak | Jasmiina Sipilä & working group: Kinesfäärejä – Invisibilities | Dance art event"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61465/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63145",
            "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:288/?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: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:p25966/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11187,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-04T12:13:20.658587Z",
                    "last_modified_time": "2024-03-04T12:13:20.658614Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745231.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11187/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-04T12:13:20.620564Z",
            "last_modified_time": "2024-04-05T17:13:51.722432Z",
            "date_published": null,
            "start_time": "2024-03-09T11:00:00Z",
            "end_time": "2024-03-09T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tule keskustelemaan kanssamme lähiympäristöstäsi, arkkitehtuurista ja sinulle tärkeistä paikallisyhteisöstä.",
                "en": "Join us to discuss your neighborhood, architecture and the local communities that are important to you."
            },
            "description": {
                "fi": "<p>Tule keskustelemaan kanssamme lähiympäristöstäsi, arkkitehtuurista ja sinulle tärkeistä paikallisyhteisöstä.</p><p>Usein ihmiset ajattelevat, että vain vanhat ja arvokkaat rakennukset ovat arkkitehtuuria. Arkkitehdit suunnittelevat rakennuksia ja ympäristöä, mutta suunniteltuja tiloja ja paikkoja käyttävät kaikki arjessaan. Oletko miettinyt, mitkä paikat tai rakennukset ovat tärkeitä sinulle? Ketkä tekevät arkkitehtuuria? Ketkä saavat puhua arkkitehtuurista? Voidaanko kaikki rakentaminen nähdä arkkitehtuurina, joka on arvokasta jollekin?</p><p>Arkkitehtuurimuseo ja Designmuseo ovat käynnistäneet Arkkitehtuuria laatikon ulkopuolella -hankkeen. Sen tarkoitus on tutustua pääkaupunkiseudun paikallisiin yhteisöihin ja tehdä yhteistyötä heidän kanssaan museorakennusten ulkopuolella. Haluamme oppia, miten museot voivat tukea paikallisyhteisöjä ja heidän toimintaansa. Myöhemmin vuoden aikana lähdemme yhdessä toteuttamaan yhteisöjen itse ideoimia paikallisia projekteja.</p>",
                "en": "<p>Join us to discuss your neighborhood, architecture and the local communities that are important to you.</p><p>Often people think that only historically or otherwise significant buildings are architecture. Architects design buildings and the environment but the designed spaces and places are used by everyone in their daily lives. Have you thought about what places and buildings are important to you? Who makes architecture? Who is allowed to discuss architecture? Can all construction be seen as architecture that is valuable to someone?</p><p>The Museum of Finnish Architecture and Design Museum Helsinki have launched an initiative called Architecture Outside the Box. The aim of the initiative is to get to know the local communities based in the capital region and collaborate with them outside of the museum buildings. We want to learn how the museum can support the local communities. Later during the year, we will work together on projects planned by the local communities.</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3DF7F505F4FF76608B5C2E78E1561D88/Arkkitehtuuria_laatikon_ulkopuolella_pop-up",
                "en": "http://www.kanneltalo.fi/en/events/event/3DF7F505F4FF76608B5C2E78E1561D88/Architecture_Outside_the_Box_-pop-up"
            },
            "name": {
                "fi": "Arkkitehtuuria laatikon ulkopuolella pop-up",
                "en": "Architecture Outside the Box -pop-up"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63145/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63064",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 10798,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-13T12:13:47.817345Z",
                    "last_modified_time": "2024-02-13T12:13:47.817371Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744693.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10798/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-13T12:13:47.781719Z",
            "last_modified_time": "2024-04-05T17:13:51.675193Z",
            "date_published": null,
            "start_time": "2024-03-09T11:00:00Z",
            "end_time": "2024-03-09T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa näyttelyn viittomakieliseen opastukseen klo 13-14. Opastus on suomenkielisellä viittomakielellä."
            },
            "description": {
                "fi": "<p>Tervetuloa näyttelyn viittomakieliseen opastukseen klo 13-14. Opastus on suomenkielisellä viittomakielellä.</p><p>Paheksuntaa, välinpitämättömyyttä, närkästystä, pelkoa. Näitä tuntemuksia kohdistuu Helsingin kaduilla elävään nuorisokulttuuriin, josta media on kirjoituksia täynnä.</p><p>”Kovimman tarkastelun kohteeksi päätyvät rodullistetut nuoret miehet. Olemme suosittu keskustelunaihe. Niin suosittu, että keskustelu käydään usein puolestamme. Puhutaan jengeistä, väkivallasta, rikollisuudesta. Unohdetaan kaikki muu.”<br> <br>Karun Verman dokumentaarinen teos Pelätyt nuoret kuvaa Helsingin nuoria. Se sai alkunsa turhautuneisuudesta sekä halusta näyttää. Teos on dokumentti nuorista, jotka elävät jatkuvan negatiivisen huomion kohteena kriittisten katseiden alla. Tuomalla nuorison omia tarinoita esiin Verma haluaa muuttaa kielteisen käsityksen, joka näistä nuorista on luotu.</p><p>Uskalla katsoa, kysyä, puhua. Älä jätä luulon varaan.<br> <br>Karun Verma (s. 2001) on helsinkiläinen valokuvataiteilija. Hänen teoksiaan on aikaisemmin ollut esillä mm. Amos Rexissä ja Suomen valokuvataiteen museossa. Caisassa nähtävä näyttelykokonaisuus on Verman ensimmäinen yksityisnäyttely.</p><p>Näyttelyyn järjestetään opastus suomalaisella viittomakielellä 9.3.2024 klo 13-14.</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/829A86732252E07FC822F4D2F1BB3B27/Viittomakielinen_opastus_nayttelyyn_-_oppaana_Aino_Laiho",
                "sv": "http://www.caisa.fi/sv/evenemang/event/829A86732252E07FC822F4D2F1BB3B27/Guidning_pa_teckensprak_pa_finska_Aino_Laiho_som_guide",
                "en": "http://www.caisa.fi/en/events/event/829A86732252E07FC822F4D2F1BB3B27/Sign_language_tour_in_Finnish_Aino_Laiho_as_a_guide_"
            },
            "name": {
                "fi": "Viittomakielinen opastus näyttelyyn - oppaana Aino Laiho – Valokuvanäyttely \"Pelätyt nuoret\"",
                "sv": "Guidning på teckenspråk på finska: Aino Laiho som guide",
                "en": "Sign language tour in Finnish: Aino Laiho as a guide"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63064/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61768",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/dantchev-domain-5-vuotta-3573113/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/dantchev-domain-5-vuotta-3573113/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/dantchev-domain-5-vuotta-3573113/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6838,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-27T12:12:35.340738Z",
                    "last_modified_time": "2024-02-06T13:23:19.725952Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740285.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6838/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-27T12:12:35.325176Z",
            "last_modified_time": "2024-04-05T17:13:51.627768Z",
            "date_published": null,
            "start_time": "2024-03-08T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tunne ja tarinat edellä Anna Dantchev luotsaa helsinkiläistä DANTCHEV:DOMAIN-yhtyettä.",
                "sv": "Anna Dantchev leder Helsingforsbandet DANTCHEV:DOMAIN med känsla och berättelser.",
                "en": "Emotions and stories come first with Anna Dantchev fronting the Helsinki-based band DANTCHEV:DOMAIN."
            },
            "description": {
                "fi": "<p>Tunne ja tarinat edellä Anna Dantchev luotsaa helsinkiläistä DANTCHEV:DOMAIN-yhtyettä.</p><p>Yhtye juhlii Vuotalon konsertissa 5-vuotista matkaansa soittaen yhtyeen kappaleita molemmilta albumeiltaan sekä myös tulevalta uudelta albumilta.</p><p>Vuonna 2019 perustetun DANTCHEV:DOMAIN-yhyteen musiikillisessa maailmassa ei ole rajoja. Yhtyeen keulahahmon, suomalais-bulgarialaisen laulaja-lauluntekijä <b>Anna Dantchevin</b> sävelkieli ammentaa Bulgarian rytmeistä ja harmonioista sekä vahvoista elokuvallisista melodioista samalla fuusioituen luontevasti myös mm. afroamerikkalaiseen perinteeseen.</p><p>Yhtyeen musiikin ytimessä on Dantchevin vangitseva ja vahva karismaattinen ääni.  Dantchev on tarinankertoja, joka ammentaa aiheet tarinoihinsa mm. naisen elämästä, kahden kulttuurin identiteetistä ja elämän kiertokulusta. Vahvasti omaan perinteeseensä nojaten hän rakentaa kuitenkin musiikillaan rohkeasti siltoja uuden ja vanhan – tutun ja tuntemattoman välille, luoden uutta suomalais-bulgarialaista sävelkieltä.</p><p>Anna Dantchev (FI/BG) – laulu, tupan-rumpu<br>Erno Haukkala (FI) – pasuuna, sousafoni<br>Kenneth Ojutkangas (FI/US) – kitara, tuuba<br>Antti-Pekka Rissanen (FI) – rummut</p><p>Klubi-ilta. Tarjoiluista vastaa Café Pokkari.</p>",
                "sv": "<p>Anna Dantchev leder Helsingforsbandet DANTCHEV:DOMAIN med känsla och berättelser.</p><p>Bandet firar sitt 5-årsjubileum med en konsert på Nordhuset, där de framför låtar från båda sina album och även från det kommande nya albumet.</p><p>DANTCHEV:DOMAIN-bändet grundades år 2019 och dess musikaliska värld känner inga gränser. Den finländsk-bulgariska sångerskan och låtskrivaren Anna Dantchev är bändets förgrundsfigur. Hennes tonspråk inspireras av bulgariska rytmer och harmonier samt av starka filmmelodier, och fusioneras även okonstlat med bland annat den afroamerikanska traditionen.</p><p>Dantchevs fängslande och starkt karismatiska röst utgör kärnan i bandets musik. Dantchev är en historieberättare som inhämtar sina motiv bland annat ur kvinnans liv, identiteten i två olika kulturer och livets kretslopp. Med starkt stöd i sin tradition bygger hon i musiken modigt broar mellan nytt och gammalt – välkänt och obekant, och skapar därigenom ett nytt finländskt-bulgariskt tonspråk.</p><p>Anna Dantchev (FI/BG) – sång, tupantrumma<br>Erno Haukkala (FI) – basun, sousafon<br>Kenneth Ojutkangas (FI/US) – gitarr, tuba<br>Antti-Pekka Rissanen (FI) – trummor</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari.</p><p>Biljetter à 20 € / 15 € via Lippu.fi eller vid dörren 1,5 h före.</p>",
                "en": "<p>Emotions and stories come first with Anna Dantchev fronting the Helsinki-based band DANTCHEV:DOMAIN.</p><p>The band will celebrate its fifth anniversary by playing songs from two previous albums and a new upcoming album at the Vuotalo concert.</p><p>Founded in 2019, DANTCHEV:DOMAIN’s musical world knows no boundaries. The musical language of the band’s front-person, Finnish-Bulgarian singer-songwriter Anna Dantchev, draws from Bulgarian rhythms and harmonies and strong cinematic melodies while also fusing smoothly with African-American traditions, among others.</p><p>At the heart of the band’s music is Dantchev’s captivating, powerful and charismatic voice. Dantchev is a storyteller whose stories draw from themes such as women’s lives, bi-cultural identities and the circularity of life. Drawing heavily on her own tradition, Dantchev uses her music to boldly build bridges between the new and the old – the familiar and the unknown – creating a new Finnish-Bulgarian musical language.</p><p>Anna Dantchev (FI/BG) – vocals, Tupan drum<br>Erno Haukkala (FI) – trombone, sousaphone<br>Kenneth Ojutkangas (FI/US) – guitar, tuba<br>Antti-Pekka Rissanen (FI) – drums</p><p>Club evening, refreshments provided by Café Pokkari.</p><p>Tickets sold at 20 € / 15 € online at lippu.fi and at the door 1,5 hours before the performance.</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5CBE27647618369791DB70DAE739B39F/DANTCHEV_DOMAIN_5_vuotta",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/5CBE27647618369791DB70DAE739B39F/DANTCHEV_DOMAIN_5_ars",
                "en": "http://www.vuotalo.fi/en/events/event/5CBE27647618369791DB70DAE739B39F/DANTCHEV_DOMAIN_5_years"
            },
            "name": {
                "fi": "DANTCHEV:DOMAIN 5 vuotta – Naistenpäivän klubi-ilta",
                "sv": "DANTCHEV:DOMAIN 5 års – Kvinnodagens klubbkväll",
                "en": "DANTCHEV:DOMAIN 5 years – Women's Day Club Evening"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61768/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61464",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/naekymaettoemyyksiae-3550882/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/naekymaettoemyyksiae-3550882/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/naekymaettoemyyksiae-3550882/"
                    },
                    "price": {
                        "fi": "10 € / 7 €",
                        "sv": "10 € / 7 €",
                        "en": "10 € / 7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6298,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-28T13:13:00.795475Z",
                    "last_modified_time": "2024-02-06T13:23:19.532246Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740465.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6298/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-28T13:13:00.774844Z",
            "last_modified_time": "2024-04-05T17:13:51.571569Z",
            "date_published": null,
            "start_time": "2024-03-08T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tanssitaiteen tapahtuman Näkymättömyyksiä teosten teemoja ovat kosketukseen liittyvät oletukset, ihmisten välinen kommunikaatio sekä tilan käyttö.",
                "sv": "Teman i danskonstevenemanget Osynligheter är antagandena om beröring, kommunikation mellan människor och användning av utrymme.",
                "en": "Themes of the dance art event Näkymättömyyksiä include assumptions related to touch, communication between people and the use of space."
            },
            "description": {
                "fi": "<p>Tanssitaiteen tapahtuman Näkymättömyyksiä teosten teemoja ovat kosketukseen liittyvät oletukset, ihmisten välinen kommunikaatio sekä tilan käyttö.</p><p>Huom! Kahden teoksen yhteislipun lisäksi myynnissä myös lippuja pelkkään ensimmäisenä esitettävään Kinesfäärejä -teokseen.</p><p>Lauantain 9.3. esitykset kuvailutulkataan näkörajoitteisille suomeksi ja niiden jälkeen järjestetään lipun hintaan kuuluva taiteilijatapaaminen ja kahvihetki tarjoiluineen.</p><p><b>Kinesfäärejä</b><br>Kinesfäärejä on syntynyt tanssin ja äänen tuottamisen kehollisen kokemuksen tutkimisesta. Kinesfääri on kolmiulotteinen tila, jossa liikkeen ja äänen voi aistia oman itsen ympärillä.</p><p>Teoksen työryhmä on tutkinut kosketusta ja sen laatuja sekä kysymystä, miten lähestyä kosketuksen kanssa työskentelyä turvallisemman tilan periaatteiden kautta. Teoksessa kosketus on myös kehon soittamisen ja äänen tuottamisen keino.</p><p>Teoksessa tanssijoilla on jaettu ymmärrys yhteisestä matkasta teoksen läpi. Kuitenkin yksilöllinen liike- ja äänitutkimus ja omat improvisatoriset ratkaisut säilyvät matkan aikana.</p><p>Teos on toteutettu osana Ammattiopisto Liven tanssialan koulutusohjelman opintoja. Tutkinto on Suomen ainoa erityisopetuksena tarjottu tanssialan ammatillinen tutkinto. Kinesfäärejä on taidepedagoginen tanssiteos, jossa lavalla nähdään tanssialan koulutusohjelman opiskelijoita.</p><p>Koreografia: Jasmiina Sipilä<br>Tanssijat: Jaakko Kuikka, Miika Luukko, Jenna Välikangas, Emmi Mäkelä, Helmi Niemi, Ana Khalili, Kadar Khristan, Helmi Hauta-Aho, Tette Karila, Senja Sidora ja Hanna Heino<br>Äänisuunnittelu sekä kehorytmit ja -musiikit: Hannaleena Markkanen<br>Tanssin ammatillinen ohjaaja: Hanna Heino</p><p>Kesto: 35 min</p><p><b>Tutkimusasema Nunatak</b><br>Tutkimusasema Nunatak on kokemuksellinen ja osallistuva installaatio.</p><p>Sana ’nunatak’ tarkoittaa jäätiköstä esiin työntyvää kivikkoharjannetta tai vuorenhuippua. Nunatak on kuin saari jäätyneessä valtameressä, eristynyt mutta myös paikka, jossa on mahdollista elää. Tila, jossa on omanlaisensa eläimistö ja kasvisto. Turvasatama, jossa voi hengittää ja josta voi lähteä tutkimaan ympäröivää maailmaa.<br> <br>Installaatiossa pääset tutkimaan tilan käsitettä; miten tilat syntyvät, millaisia tiloja voimme itse luoda, miten voimme vaikuttaa tilan luomiseen, millaisissa tiloissa on hyvä olla, kuinka tilat voivat laajentaa normeja. Tila voi olla esimerkiksi fyysinen tila, mielentila, muisto, jotain mitä syntyy, kun kaksi olentoa kohtaavat. <br> <br>Installaatioon voi osallistua haluamallaan tavalla. Kaikki tavat tehdä omaa tutkimusmatkaa ovat oikeita. Installaation ja loppukeskustelun aikana ei tarvitse puhua tai ottaa kontaktia muihin osallistujiin. Myös pelkkä rauhallinen oleskelu omassa tilassa on mahdollista.</p><p>Tutkimusasema Nunatak pohjautuu Fri Nilas Lindellin tanssisooloon ”Nunatak - Liikkeellinen Runo Tiloista” (2022).</p><p>Ota halutessasi mukaan omat muistiinpanovälineet. Paperia ja kyniä löytyy myös tilasta.<br> <br>Työryhmä: Fri Nilas Lindell, Hanna Heino, Topi Hurtig</p><p>Kesto: 35-45 min</p><p><b>Fri Nilas Lindell</b> valmistui tanssijaksi Ammattiopisto Liveltä joulukuusssa 2022. Ammattiopisto Live on Suomen ainoa erityisoppilaitos, jossa voi opiskella tanssialan perustutkinnon. Syyskuussa 2023 Lindell oli mukana Janina Rajakangas Projektin Tanssija -teoksessa Kiasma teatterilla neurokirjon kokemusasiantuntijana.</p><p><i>”Minua kiinnostaa tanssissa, miten taiteen ja liikkeen avulla voi saada kosketusta johonkin syvään kerrokseen mihin ei muuten pääse. Haluan edesauttaa tanssin inklusiivisuutta ja kaikkien mahdollisuutta saada sekä kokea, että tehdä tanssia.”</i></p><p>Teosten yhteiskesto: n. 1 t 35 min (sis. 20 min väliajan) + taiteilijatapaaminen (lauantai 9.3. klo 16:45)</p>",
                "sv": "<p>Teman i danskonstevenemanget Osynligheter är antagandena om beröring, kommunikation mellan människor och användning av utrymme.</p><p><b>Fri Nilas Lindells </b>soloverk <i>Nunatak</i> undersöker vilka utrymmen vi skapar, vad vi bygger utrymmena av och om man kan utvidga normerna med olika utrymmen. Föreställningen uppmuntrar upplevaren att fundera över hurdana utrymmen och av vilken kvalitet man har i sin vardag och hur de uppstår.</p><p><b>Jasmina Sipiläs</b> koreografi för studerandena inom Ammattiopisto Lives utbildningsprogram för dansbranschen <i>KINESFÄR</i> har uppkommit genom att koreografen undersökt den fysiska erfarenheten av dans och ljudproduktion. Det är ett tredimensionellt utrymme där man kan känna rörelsen och ljudet omkring sig.</p>",
                "en": "<p>Themes of the dance art event Näkymättömyyksiä include assumptions related to touch, communication between people and the use of space.</p><p>Note! In addition to the joint ticket for the two pieces, there are also tickets for only Kinesfäärejä, which will be performed first.</p><p><b>Fri Nilas Lindell’s</b> solo piece <i>Nunatak</i> explores the kind of spaces we create, what we create spaces from, and whether different types of spaces can extend the norms. The performance encourages the experiencer to consider what kind and quality of spaces their everyday life has and how the spaces are created.</p><p><i>KINESFÄÄREJÄ</i>, choreographed by <b>Jasmiina Sipilä</b> for students of Live Vocational College’s dance programme, emerged from the study of the bodily experience of dance and sound production. It is a three-dimensional space where you can sense movement and sound around you.</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/0CCCDF087880D4AA3C1A6F1CE524B238/Fri_Nilas_Lindell_Tutkimusasema_Nunatak_Jasmiina_Sipila_tyoryhma_Kinesfaareja_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/0CCCDF087880D4AA3C1A6F1CE524B238/Fri_Nilas_Lindell_Tutkimusasema_Nunatak_Jasmiina_Sipila_arbetsgruppen_Kinesfaareja",
                "en": "http://www.caisa.fi/en/events/event/0CCCDF087880D4AA3C1A6F1CE524B238/Fri_Nilas_Lindell_Tutkimusasema_Nunatak_Jasmiina_Sipila_working_group_Kinesfaareja"
            },
            "name": {
                "fi": "Fri Nilas Lindell: Tutkimusasema Nunatak | Jasmiina Sipilä & työryhmä: Kinesfäärejä – Osana Näkymättömyyksiä -tanssitaiteen tapahtumaa",
                "sv": "Fri Nilas Lindell: Tutkimusasema Nunatak | Jasmiina Sipilä & arbetsgruppen: Kinesfäärejä – Osynligheter | Danskonstevenemang",
                "en": "Fri Nilas Lindell: Tutkimusasema Nunatak | Jasmiina Sipilä & working group: Kinesfäärejä – Invisibilities | Dance art event"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61464/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61267",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/satakieli-3542913/",
                        "sv": "https://www.lippu.fi/artist/stoa/satakieli-3542913/",
                        "en": "https://www.lippu.fi/artist/stoa/satakieli-3542913/"
                    },
                    "price": {
                        "fi": "24 € / 15 € / 10 €",
                        "sv": "24 € / 15 € / 10 €",
                        "en": "24 € / 15 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6183,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T12:13:18.394898Z",
                    "last_modified_time": "2024-02-06T13:23:19.439056Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739155.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6183/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T12:13:18.375939Z",
            "last_modified_time": "2024-04-05T17:13:51.515704Z",
            "date_published": null,
            "start_time": "2024-03-08T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.",
                "sv": "Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.",
                "en": "Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories."
            },
            "description": {
                "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi <b>Susanna Leinosen</b> vahvaan ja ilmaisuvoimaiseen liikkeeseen. Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Tanssijoiden ääniohjauksesta on vastannut näyttelijä-laulaja <b>Eija Ahvo</b> ja teoksen musiikin on säveltänyt <b>Kasperi Laine</b>.</p><p>Stoassa kantaesityksensä 2.3. saava Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Koreografia: Susanna Leinonen<br>Ääniohjaus: Eija Ahvo<br>Musiikki: Kasperi Laine</p><p>Esitysten jälkeen järjestetään yleisökeskustelu, moderaattorina Susanna Leinonen, kesto max 30 min.</p>",
                "sv": "<p>Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.</p><p>Kraften från den vishet och livserfarenhet som ålderdomen för med sig förenas med koreografen Susanna Leinonens starka och uttrycksfulla rörelse.</p>",
                "en": "<p>Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories.</p><p>The power that comes from the wisdom and life experiences brought on by age is combined with the strong and expressive movement of Choreographer Susanna Leinonen.</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/65A7173F275B4E8566CFB8E5E4010F89/Susanna_Leinonen_Company_Satakieli_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/65A7173F275B4E8566CFB8E5E4010F89/Susanna_Leinonen_Company_Satakieli_",
                "en": "http://www.stoa.fi/en/events/event/65A7173F275B4E8566CFB8E5E4010F89/Susanna_Leinonen_Company_Satakieli_"
            },
            "name": {
                "fi": "Susanna Leinonen Company: Satakieli",
                "sv": "Susanna Leinonen Company: Satakieli",
                "en": "Susanna Leinonen Company: Satakieli"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61267/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}