Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

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

{
    "meta": {
        "count": 24655,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=243",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=241"
    },
    "data": [
        {
            "id": "kulke:63702",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151922,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-26T09:15:35.199969Z",
                    "last_modified_time": "2024-07-26T09:15:35.199987Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752128.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151922/?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-07-26T09:15:35.161266Z",
            "last_modified_time": "2024-12-20T01:14:11.327626Z",
            "date_published": null,
            "start_time": "2024-11-23T08:30:00Z",
            "end_time": "2024-11-23T13: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,
            "name": {
                "fi": "Kirsi Kunnas 100 vuotta – Lasten lauantai",
                "sv": "Kirsi Kunnas 100 år – Barnens lördag",
                "en": "Kirsi Kunnas 100 years – Children's Saturday"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F5EB418EB7B2FCDF2751131153C684EF/Kirsi_Kunnas_100_vuotta",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F5EB418EB7B2FCDF2751131153C684EF/Kirsi_Kunnas_100_ar",
                "en": "http://www.kanneltalo.fi/en/events/event/F5EB418EB7B2FCDF2751131153C684EF/Kirsi_Kunnas_100_years"
            },
            "short_description": {
                "fi": "Lapsen oikeuksien viikolla lasten lauantaita vietetään runollisissa merkeissä, kun juhlimme Kirsi Kunnaksen syntymän 100-vuotisjuhlaa.",
                "sv": "Under Barnrättsveckan firas Barnens lördag på ett poetiskt sätt med 100-jubileet för Kirsi Kunnas födelse.",
                "en": "On Children's Rights Week, Children's Saturday is filled with poetry, as we celebrate the 100th anniversary of the birth of Kirsi Kunnas."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Lapsen oikeuksien viikolla lasten lauantaita vietetään runollisissa merkeissä, kun juhlimme Kirsi Kunnaksen syntymän 100-vuotisjuhlaa.</p><p>Kirjailija Kirsi Kunnaksen (1924–2021) 100-vuotisjuhlaa vietetään vuonna 2024. Valtakunnallisen juhlavuoden keskiössä ovat suomalainen lastenrunous, leikki, lukuilo ja lasten kulttuurinen toimijuus.</p><p>Toivotamme koko perheen tervetulleeksi työpajaan, lorutuokioihin ja tanssiesitykseen. Runo-olohuone on avoinna aulassa koko tapahtuman ajan!</p><p><b>Ohjelma</b></p><p>klo 10.30 ja 12.30 Tiitiäisen runotunti - Kirsi Kunnas 100 vuotta satutuokiot, joissa mukana nukketeatteria, esiintyjä Liisa Viiala. Kesto noin 30 min. Kirjaston monitoimitila Tempossa. Vapaa pääsy.</p><p>klo 11-13.30 Tiitiäiselle taiteillaan Satupuu Työväenopiston kuvataideluokassa. Vapaa pääsy.</p><p>klo 12-14 Tarinasoppaa-näyttelyn taitelijat Sari Airola & Katri Kirkkopelto tavattavissa Galleriassa. Vapaa pääsy.</p><p>klo 14 Tanssiteatteri Glims & Gloms: Tii-Tii-Tiitiäinen (liput 6 € Lippu.fi)<br>Tii-Tii-Tiitiäinen on Simo Heiskasen käsikirjoittama Kirsi Kunnaksen runoihin perustuva koko perheen esitys.</p><p>Näyttämöllä seikkailee kuuden esiintyjän voimin Kunnaksen tuotannosta useille sukupolville tuttuja hahmoja, muun muassa Tiitiäinen, Haitula, Tättähäärä, Herra Pii Poo, Siili ja Peikko.</p><p>Kunnaksen riimittely ja absurdi huumori luodaan näyttämölle riemastuttavaksi, yllättävien käänteiden satumaailmaksi.</p><p>Kesto: 60 min, ei väliaikaa<br>Ikäsuositus: yli 4-vuotiaille<br>Kieli: suomi</p>",
                "sv": "<p>Under Barnrättsveckan firas Barnens lördag på ett poetiskt sätt med 100-jubileet för Kirsi Kunnas födelse.</p><p>Vi välkomnar hela familjen till en workshop, rimstunder och en dansföreställning! Diktvardagsrummet har öppet i entréhallen under hela evenemanget.</p><p>. 10.30 och 12.30 Tiitiäinens diktstund – Kirsi Kunnas 100 år-sagostunder med dockteater, framställd av Liisa Viiala. Längd cirka 30 min. I bibliotekets allaktivitetslokal Tempo.</p><p>Kl. 11–13.30 Vi pysslar ett Sagoträd för Tiitiäinen i Arbetarinstitutets bildkonstklassrum.</p><p>Kl. 12–14 Konstnärerna bakom utställningen Tarinasoppaa (Berättelsesoppa), Sari Airola & Katri Kirkkopelto i Galleriet.</p><p>Kl. 14 Dansteatern Glims & Gloms: Tii-Tii-Tiitiäinen, biljetter 6 € Lippu.fi<br>Tii-Tii-Tiitiäinen är en föreställning för hela familjen baserad på Kirsi Kunnas dikter och med manus av Simo Heiskanen.<br>På scenen får vi se sex artister framföra karaktärer från Kunnas produktion som är bekanta för flera generationer, bland annat Tiitiäinen, Haitula, Tättähäärä, Herra Pii Poo, Siili och Peikko. <br>På scenen återskapas Kunnas rim och absurda humor till en sprudlande sagovärld med överraskande vändningar.<br>Längd: 60 min, ingen paus<br>Åldersrekommendation: över 4-åringar<br>Språk: finska</p><p>I samarbete med Helsingfors finska arbetarinstitut och Gamlas bibliotek.</p>",
                "en": "<p>On Children's Rights Week, Children's Saturday is filled with poetry, as we celebrate the 100th anniversary of the birth of Kirsi Kunnas.</p><p>You whole family is welcome to join the workshop, rhyming lessons and dance show! The Poetry Living Room in the lobby will be open throughout the event.</p><p>Tiitiäinen’s Poetry at 10:30 and 12:30 – story time to celebrate a hundred years of the magic of Kirsi Kunnas, including puppet theatre, presented by Liisa Viiala. Duration approximately 30 minutes. At the library’s multifunctional space Tempo.</p><p>11:00–13:30 Creating a story tree for Tiitiäinen in the adult education centre’s visual arts classroom.</p><p>12:00–14:00 Meet the artists of the Story Soup exhibition, Sari Airola and Katri Kirkkopelto, in the gallery.</p><p>14:00 Dance Theatre Glims & Gloms: Tii-Tii-Tiitiäinen, tickets EUR 6, lippu.fi<br>Tii-Tii-Tiitiäinen is a performance for the whole family, written by Simo Heiskanen, that is based on the poems of Kirsi Kunnas.<br>The stage will feature six performers, playing characters from Kunnas’ works that are familiar to several generations, including Tiitiäinen, Haitula, Tättähäärä, Mr. Pii Poo, Siili, and Peikko. <br>Kunnas’ rhymes and absurd humor is brought to the stage as an exhilarating fairytale world of unexpected twists and turns.<br>Duration: 60 min, no interval<br>Recommended age: 4+<br>Language: Finnish</p><p>In cooperation with the Helsinki Adult Education Centre and the Kannelmäki Library.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63702/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64853",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152925,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-01T09:15:39.027922Z",
                    "last_modified_time": "2024-11-01T09:15:39.027938Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751030.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152925/?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-11-01T09:15:38.990735Z",
            "last_modified_time": "2024-12-20T01:14:11.239543Z",
            "date_published": null,
            "start_time": "2024-11-23T08:00:00Z",
            "end_time": "2024-11-23T14: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,
            "name": {
                "fi": "Tiitiäisjuhlat – Vuosaaren kirjastossa ja Vuotalossa",
                "sv": "Tiitiäinen-fest – I Nordsjö bibliotek och Nordhuset",
                "en": "Tiitiäinen’s Party – Vuosaari Library and Vuotalo"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/89E674CF9787ADA6EA42FCE73F4E50C6/Tiitiaisjuhlat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/89E674CF9787ADA6EA42FCE73F4E50C6/Tiitiainen-fest_",
                "en": "http://www.vuotalo.fi/en/events/event/89E674CF9787ADA6EA42FCE73F4E50C6/Tiitiainen_s_Party_"
            },
            "short_description": {
                "fi": "Vuosaaren kirjasto ja Vuotalo järjestävät Tiitiäisjuhlat Kirsi Kunnaksen satavuotisjuhlan kunniaksi. Tule mukaan, talo on täynnä leikkiä ja sanojen taikaa!",
                "sv": "Nordsjö bibliotek och Nordhuset ordnar en Tiitiäinen-fest för att fira hundraårsdagen av Kirsi Kunnas födelse. Kom med, huset är fullt av lek och ordmagi!",
                "en": "The Vuosaari Library and Vuotalo are organising a party for Tiitiäinen in honour of the Kirsi Kunnas centenary. Come along, the house is full of joy and word magic!"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Vuosaaren kirjasto ja Vuotalo järjestävät Tiitiäisjuhlat Kirsi Kunnaksen satavuotisjuhlan kunniaksi. Tule mukaan, talo on täynnä leikkiä ja sanojen taikaa!</p><p>Astu satumetsään, ongi runokaloja, koe nukketeatteriesitys Salaisuuksien sateenvarjo seikkailee klo 11 ja runoesitys Minä olen puu klo 12.</p><p>Tapahtuma on maksuton, paitsi Kirsin kunnailla ja kannoilla -runokonsertti klo 15 Vuosalissa (liput 6 €).</p><p>Pukeudu satumaisen ihanasti ja tule mukaan juhlimaan runoja! Tapahtuma on osa Lapsen oikeuksien viikon ohjelmaa.</p><p><b>Ohjelma</b> <br>Koko päivän ajan voit tutustua parhaisiin runokirjoihin runo-olohuoneessa, tehdä sanataidetehtäviä, osallistua Haitulan kanit karkuteillä -etsintärataan ja voittaa kirjapalkinnon. Jos keksit oikean taikasanan, saat pienen makean yllätyksen. Legonurkassa saat leikkiä, rakennella ja ratkaista salaisen koodin!</p><p><b>klo 10–13 Runokalojen ongintaa & askartelua kirjaston lastenalueella</b></p><p><b>klo 11 Esitys kirjaston aulassa: Salaisuuksien sateenvarjo seikkailee</b><br>Maria Baric Companyn yhden esiintyjän osallistava nukketeatterituokio yhdistää varjoteatterin, tanssin, musiikin ja leikin. Lapsiperheille suunnattu esitys lumoaa satumaisuudellaan ja mukaansatempaavalla otteellaan. Yleisö pääsee vaikuttamaan siihen, millaisia yllätyksiä ja musiikillisia seikkailuja salaisuuksien sateenvarjo tuo tullessaan.</p><p><b>klo 12 Esitys kirjaston aulassa: Minä olen puu</b><br>Millainen puu minä olisin? Miten liikkuu kettu tai karhu? Onko siili aina niin piikikäs? Aukaistaan runolaukku ja istahdetaan sammalmättäälle! Tanssahdellaan tuulen tuivertamina ja rauhoitutaan lopuksi siiliäidin silityksiin. Esityksen runot ja toteutus: Runoropinoita / Ulla-Maija Vanhala</p><p><b>klo 13:30 Työpaja Vuotalon aulassa: Metsäneläinten tunnepiiri</b><br>Nonstop-työpaja yhdistää askartelua ja sanataidetta. Metsäneläinten tunnelmiin tuudittaudutaan metsä- ja tunnerunojen avulla. Askarrellaan itselle mieluinen, tunteellinen jätskitikkueläin ja kirjoitetaan eläimelle tunneruno joko valmiiseen runopohjaan tai ihan omasta runokynästä. Tässä työpajassa kaikki tunteet on sallittuja! Työpajan toteutus Runoropinoita / Ulla-Maija Vanhala</p><p><b>klo 15 Esitys Vuosalissa: Kirsin kunnailla ja kannoilla</b><br>Ihana soiva, vuorovaikutuksellinen runokonsertti Kirsi Kunnaksen 100-vuotisjuhlavuoden kunniaksi. Esiintyjinä Duo Keksintö eli osallistavan musiikintekemisen ja lastenkulttuurin ammattilaiset Isa-Eerika Lehto ja Johanna Viksten. Liput 6 € Vuotalon lippuautomaatista tai osoitteesta lippu.fi.</p>",
                "sv": "<p>Nordsjö bibliotek och Nordhuset ordnar en Tiitiäinen-fest för att fira hundraårsdagen av Kirsi Kunnas födelse. Kom med, huset är fullt av lek och ordmagi!</p><p>Kliv in i en sagoskog, meta poesifisk, upplev dockteatern Salaisuuksien sateenvarjo (Hemligheternas paraply) kl. 11 och poesiföreställningen Minä olen puu (Jag är ett träd) kl. 12. Evenemanget är avgiftsfritt, med undantag för poesikonserten Kirsin kunnailla ja kannoilla (I hälarna på Kirsi) kl. 15.00 i Nordsalen (biljetter 6 €).</p><p>Klä dig sagolikt och kom och fira poesi! Evenemanget är en del av programmet för Barnrättsveckan.</p><p><b>Program</b> <br>Under hela dagen kan du utforska de bästa poesiböckerna i poesivardagsrummet, göra ordkonstuppgifter, delta i sökrutten Haitulan kanit karkuteillä (Haitulas kaniner på rymmen) och vinna ett bokpris. Om du gissar rätt magiskt ord får du en söt liten överraskning. I Legohörnan kan du leka, bygga och lösa den hemliga koden!</p><p><b>kl. 10–13 Poesifiske & pysseli bibliotekets barnavdelning</b></p><p><b>kl. 11 Föreställning i bibliotekets lobby: Salaisuuksien sateenvarjo seikkailee (Hemligheternas paraply på äventyr)</b><br>Maria Baric Companys delaktiggörande dockteaterstund med en skådespelare kombinerar skuggteater, dans, musik och lek. Föreställningen riktar sig till barnfamiljer och förtrollar med sitt sagolika och engagerande grepp. Publiken får vara med och påverka de överraskningar och musikaliska äventyr som hemligheternas paraply ska föra med sig.</p><p><b>kl. 12 Föreställning i bibliotekets lobby: Mina olen puu (Jag är ett träd)</b><br>Vad för slags träd skulle jag vara? Hur rör sig en räv eller en björn? Är igelkotten alltid så taggig? Vi öppnar poesiväskan och sätter oss ner i mossan! Vi dansar i vinden och lugnar slutligen ner oss till igelkottsmammans smekningar. Dikter och genomförande av föreställningen: Runoropinoita / Ulla-Maija Vanhala</p><p><b>kl. 13:30 Workshop i lobbyn till Nordhuset: Skogsdjurens känslokrets</b><br>Nonstop-workshoppen kombinerar pyssel och ordkonst. Vi invaggar oss i skogsdjurens sinnesstämningar med hjälp av skog- och känslodikter. Pyssla ett eget känslosamt djur av glasspinnar och skriv en känslosam dikt till djuret, antingen med hjälp av en färdig diktmall eller som du skapar själv. I den här workshoppen är alla känslor tillåtna! Genomförande av workshoppen Runoropinoita / Ulla-Maija Vanhala</p><p><b>kl. 15.00 Föreställning i Nordsalen: Kirsin kunnailla ja kannoilla (I hälarna på Kirsi)</b><br>En underbar, musikalisk och interaktiv diktkonsert för att fira 100-årsdagen av Kirsi Kunnas födelse. Duo Keksintö, det vill säga proffsen på deltagande musikskapande och barnkultur Isa-Eerika Lehto och Johanna Viksten uppträder. Biljetter 6 € från Nordhusets biljettautomat eller lippu.fi.</p>",
                "en": "<p>The Vuosaari Library and Vuotalo are organising a party for Tiitiäinen in honour of the Kirsi Kunnas centenary. Come along, the house is full of joy and word magic!</p><p>Enter the fairytale forest, cast your hook for poem fish, experience the puppet show Salaisuuksien sateenvarjo seikkailee (Adventures of the Mysterious Umbrella) at 11 am and a poem reading presentation, Minä olen puu (I am a tree), at noon. The event is free of charge, except for the poetry concert Kirsin kunnailla ja kannoilla at 3pm in Vuosali (tickets €6).</p><p>Dress fabulously and join us to celebrate her poetry! The event is part of the Children's Rights Week programme.</p><p><b>Programme</b><br>Throughout the day, you can explore the best poetry books in the poetry lounge, do word art, join the Haitulan kanit karkuteillä (Rabbits on the Run) treasure hunt, and win a book prize. If you discover and speak the magic word, you'll get a small sweet surprise. At the LEGO Corner, you get to play, build and solve a secret code!</p><p><b>10 am – 1 pm Angling for Poem Fish as well as arts and crafts in the children's area of the library</b></p><p><b>11 am Puppet theatre in the library lobby: Salaisuuksien sateenvarjo seikkailee (Adventures of the Mysterious Umbrella)</b><br>Maria Baric Company's one-person participatory puppet theatre show combines shadow theatre, dance, music and play. This show is sure enchant families with children with its fairytale-like, immersive touch. The audience gets to influence what kinds of surprises and musical adventures the mysterious umbrella encounters.</p><p><b>12 am Noon Poetry reading in the library lobby: Minä olen puu (I am a tree)</b><br>What kind of tree would I be? How does a fox or bear move? Is a hedgehog always so prickly? Let's open the poetry bag and sit down on the moss! Let’s dance with the wind and calm down to the smoothing caress of a mother hedgehog. Poems and performance: Runoropinoita / Ulla-Maija Vanhala</p><p><b>1:30 pm Workshop in the Vuotalo lobby: Emotional Wheel for Forest Animals</b><br>This Nonstop Workshop combines craftsmanship and word art. Explore the moods of forest animals with the help of poems about the forest and emotions. Let’s create your very own, emotional ice cream bar animal and write them an emotional poem, either with a template or all on your own. In this workshop, all emotions are allowed! Workshop implementation Runoropinoita / Ulla-Maija Vanhala</p><p><b>3 pm Concert in Vuosali: Kirsin kunnailla ja kannoilla</b><br>A wonderful interactive poetry concert to celebrate Kirsi Kunnas' 100th birthday. The performers are Duo Keksintö, that is, the professionals of participatory music making and children's culture: Isa-Eerika Lehto and Johanna Viksten. Tickets €6 from the Vuotalo ticket machine or from lippu.fi.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64853/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64041",
            "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: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151858,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T12:15:08.120566Z",
                    "last_modified_time": "2024-07-25T12:15:08.120587Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755081.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151858/?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-07-25T12:15:08.087725Z",
            "last_modified_time": "2024-12-20T01:14:10.741047Z",
            "date_published": null,
            "start_time": "2024-11-22T08:00:00Z",
            "end_time": "2024-11-22T09: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,
            "name": {
                "fi": "Päistikka ja elävä maailma | päiväkodeille ja kouluille – Lapsen oikeuksien viikko",
                "sv": "Päistikka och den levande världen | Konsert för daghems- och skolgrupper – Barnrättsveckan",
                "en": "Päistikka and the Living World concert | Concert for day-care and school groups – Children's Rights Week"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/F01D79B8EB3B58588517D08B11175ED2/Paistikka_ja_elava_maailma_paivakodeille_ja_kouluille",
                "sv": "http://www.stoa.fi/sv/evenemang/event/F01D79B8EB3B58588517D08B11175ED2/Paistikka_och_den_levande_varlden_Konsert_for_daghems-_och_skolgrupper_",
                "en": "http://www.stoa.fi/en/events/event/F01D79B8EB3B58588517D08B11175ED2/Paistikka_and_the_Living_World_concert_Concert_for_day-care_and_school_groups_"
            },
            "short_description": {
                "fi": "Päistikka ja elävä maailma -lastenmusiikkikonsertti tuo yhteen Päistikka-yhtyeen kolmannen studioalbumin kappaleet ja videomapping-taiteen.",
                "sv": "Barnmusikkonserten Päistikka ja elävä maailma sammanför låtar från Päistikka-bandets tredje studioalbum med videomapping-konst.",
                "en": "Children’s music concert Päistikka and the Living World brings together the songs and video mapping art from Päistikka's third studio album."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Päistikka ja elävä maailma -lastenmusiikkikonsertti tuo yhteen Päistikka-yhtyeen kolmannen studioalbumin kappaleet ja videomapping-taiteen.</p><p>Konsertin kappaleissa kuljetaan pilvien päällä ja ruohonkorsien tasolla, varotaan laavalattiaa, tutkitaan elävää ja muuttuvaa maailmaa ja ylistetään mielikuvitusta ja kasvamista.</p><p>Jokaisen kappaleen ympärille luodaan videomapping-tekniikalla illuusionomaisia maisemia, joka vievät katsojat visualliselle matkalle ja monenlaisiin tunnelmiin.</p><p>Konsertin idea ja suunnittelu: Elina Vehkaoja ja Tuukka Martiskainen</p><p>Päistikka: Tuukka Martiskainen, Elina Vehkaoja, Erno Kettunen ja Juhani Saari<br>Videot: Mikko Lampinen</p><p>Konsertin kesto: n. 45 minuuttia<br>Kieli: suomi</p><p>Perjantain konserttiin ennakkoilmoittautuminen päiväkoti- ja koululaisryhmille ma 19.8. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta <br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Barnmusikkonserten Päistikka ja elävä maailma sammanför låtar från Päistikka-bandets tredje studioalbum med videomapping-konst.</p><p>I låtarna på konserten reser vi på moln och nere i gräset, aktar oss för lavagolvet, utforskar den levande och föränderliga världen, och hyllar fantasin och tillväxten.</p><p>Kring varje låt skapas illusoriska landskap med hjälp av videomapping-teknik, som tar tittarna med på en visuell resa och in i olika stämningar.</p><p>Idé och design till konserten: Elina Vehkaoja och Tuukka Martiskainen</p><p>Päistikka: Tuukka Martiskainen, Elina Vehkaoja, Erno Kettunen och Juhani Saari<br>Videor: Mikko Lampinen</p><p>Konsertens längd: ca 45 minuter<br>Språk: finska</p><p>Förhandsanmälan till fredagens konsert för daghems- och skolgrupper från och med må 19.8. kl. 10.00: stoa.fi, vid evenemanget, via Anmäl dig-knappen till höger på skärmen. <br>Mer information: hanna.westerholm@hel.fi <br>i</p>",
                "en": "<p>Children’s music concert Päistikka and the Living World brings together the songs and video mapping art from Päistikka's third studio album.</p><p>The concert’s songs take listeners on a walk through the clouds and the grassroots, watching our for the floor that is lava, exploring the living and changing world and praising imagination and growth.</p><p>With video mapping technology, illusory landscapes are created for each song, taking viewers on a visual journey and into a wide variety of moods.</p><p>Concert idea and design: Elina Vehkaoja and Tuukka Martiskainen</p><p>Päistikka: Tuukka Martiskainen, Elina Vehkaoja, Erno Kettunen and Juhani Saari<br>Videos: Mikko Lampinen</p><p>Duration of the concert: approx. 45 minutes<br>Language: Finnish</p><p>Pre-registration for Friday's concert for day-care and school groups from Mon 19 August at 10 am: stoa.fi, via the Register button on the right of the screen next to the event <br>Additional information: hanna.westerholm@hel.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64041/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64625",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152780,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-11T08:15:14.216952Z",
                    "last_modified_time": "2024-10-11T08:15:14.216970Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758791.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152780/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-10-11T08:15:14.180855Z",
            "last_modified_time": "2024-12-20T01:14:10.452480Z",
            "date_published": null,
            "start_time": "2024-11-21T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Unelmien ilta – Perhetapahtuma",
                "sv": "Drömmarnas kväll",
                "en": "Night of Dreams"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/9474D98F0AB72783CB50A84F54A670AC/Unelmien_ilta",
                "sv": "http://www.caisa.fi/sv/evenemang/event/9474D98F0AB72783CB50A84F54A670AC/Drommarnas_kvall",
                "en": "http://www.caisa.fi/en/events/event/9474D98F0AB72783CB50A84F54A670AC/Night_of_Dreams"
            },
            "short_description": {
                "fi": "Unelmien ilta on nuorille ja heidän perheilleen suunnattu inspiroiva tapahtuma, jossa keskitytään nuorten unelmien tukemiseen sekä perheen ja yhteiskunnan rooliin tavoitteiden saavuttamisessa.",
                "sv": "Drömmarnas kväll är ett inspirerande evenemang för unga och deras familjer, med fokus på att stödja de ungas drömmar samt familjens och samhällets roll i att förverkliga dem.",
                "en": "The Night of Dreams is an inspiring event aimed at young adults and their families, focusing on supporting the dreams of youth and the role of the family and society in achieving those goals."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Unelmien ilta on nuorille ja heidän perheilleen suunnattu inspiroiva tapahtuma, jossa keskitytään nuorten unelmien tukemiseen sekä perheen ja yhteiskunnan rooliin tavoitteiden saavuttamisessa.</p><p>Tapahtuman inspiraatio on noussut Uskalla unelmoida -lyhytelokuvasta, joka myös nähdään illan aikana.</p><p>Ohjelmassa on elokuvan lisäksi keynote-puheenvuoro sekä paneelikeskustelu, joissa kaikissa käsitellään rohkeuden ja tuen merkitystä unelmien saavuttamisessa.</p><p>Uskalla unelmoida -lyhytelokuva kertoo Wariksen tarinan. Waris kohtaa koulumaailmassa ennakkoluuloja, mutta löytää rohkeutta ja itseluottamusta toteuttaakseen unelmansa.</p><p>Käsikirjoitus ja ohjaus: Salaado Qasim, Faisa Qasim ja Ada Johnsson</p><p>Unelmien illan järjestävät yhteistyössä Peace and Wellbeing Org ja Caisa</p><p>Kieli: suomi<br>Tapahtuman kesto: noin 2 tuntia, ei väliaikaa</p><p>Vapaa pääsy, ilmoittaudu tapahtumaan etukäteen:https://link.webropolsurveys.com/Participation/Public/0e5892b2-3184-406a-a64a-e8f79eec1f23?displayId=Fin3220584</p><p><b>Ohjelma</b></p><p>Avauspuheenvuoro: Faisa Qasim, erityisasiantuntija, Rauhan ja hyvinvoinnin järjestö ry</p><p>Puheenvuoro: Ahmed Hoseinin tarina (englanniksi)</p><p>Elokuvaesitys: Uskalla unelmoida</p><p>Paneelikeskustelu: <br>Keskustelu Uskalla unelmoida -elokuvasta ja siitä, kuinka perhe ja yhteiskunta voivat tukea nuorten identiteettiä, unelmia ja kasvua yhteiskunnan odotusten keskellä. <br>Moderaattori: Fatxi Qasim<br>Paneelin osallistujat:<br>Makay Mohamed / Uskalla unelmoida -näyttelijä<br>Hani Hersi / Uskalla unelmoida -näyttelijä<br>Hamza Abdikafi / Uskalla unelmoida -lapsinäyttelijä<br>Salaado Qasim / Uskalla unelmoida -elokuvan ohjaaja<br>Faisa Qasim / Uskalla unelmoida -elokuvan ohjaaja<br>Meveena Ramadoss / Mentoring for Future -mentorointiohjelman nuori</p>",
                "sv": "<p>Drömmarnas kväll är ett inspirerande evenemang för unga och deras familjer, med fokus på att stödja de ungas drömmar samt familjens och samhällets roll i att förverkliga dem.</p><p>Evenemanget är inspirerat av kortfilmen Uskalla unelmoida (Våga drömma) som också kommer att visas under kvällen.</p><p>Utöver filmen innehåller programmet även ett keynote-anförande och en paneldiskussion, som fokuserar på vikten av mod och stöd för att uppnå drömmar.</p><p>Kortfilmen Uskalla unelmoida berättar historien om Waris. Waris möter fördomar i skolvärlden, men finner mod och självförtroende att följa sina drömmar.</p><p>Manus och regi: Salaado Qasim, Faisa Qasim och Ada Johnsson<br>Drömmarnas kväll ordnas i samarbete med Peace and Wellbeing Org och Caisa</p><p>Språk: finska<br>Evenemangets längd: ca 2 timmar, ingen paus</p><p>Gratis inträde, anmäl dig till evenemanget i förväg: https://link.webropolsurveys.com/Participation/Public/0e5892b2-3184-406a-a64a-e8f79eec1f23?displayId=Fin3220584</p>",
                "en": "<p>The Night of Dreams is an inspiring event aimed at young adults and their families, focusing on supporting the dreams of youth and the role of the family and society in achieving those goals.</p><p>The inspiration for the event rises from the short film, Uskalla unelmoida (Dare to Dream), which will also be screened during the evening.</p><p>In addition to the film, the programme includes a keynote speech and a panel discussion, all of which discuss the importance of courage and support in achieving dreams.</p><p>Dare to Dream is a short film that tells the story of Waris. Waris faces prejudices at school, but finds the courage and confidence to make his dreams come true.</p><p>Script and direction: Salaado Qasim, Faisa Qasim and Ada Johnson<br>The Night of Dreams is organised in cooperation by Peace and Wellbeing Org and Caisa</p><p>Language: Finnish<br>Event duration: approx. 2 hours, no intermission</p><p>Free entry with advance sign-up: https://link.webropolsurveys.com/Participation/Public/0e5892b2-3184-406a-a64a-e8f79eec1f23?displayId=Fin3220584</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64625/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64309",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:751/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151945,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-29T13:13:47.670682Z",
                    "last_modified_time": "2024-07-29T13:13:47.670695Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753052.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151945/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-29T13:13:47.656075Z",
            "last_modified_time": "2024-12-20T01:14:10.200526Z",
            "date_published": null,
            "start_time": "2024-11-20T13:00:00Z",
            "end_time": "2024-11-20T14: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,
            "name": {
                "fi": "HOW radio: Global Club Nights – Jaranas del Norte",
                "sv": "HOW radio: Global Club Nights – Jaranas del Norte",
                "en": "HOW radio: Global Club Nights – Jaranas del Norte"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/744BAE88698667A1D07B8CC9AF516BEA/HOW_radio_Global_Club_Nights_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/744BAE88698667A1D07B8CC9AF516BEA/HOW_radio_Global_Club_Nights_",
                "en": "http://www.caisa.fi/en/events/event/744BAE88698667A1D07B8CC9AF516BEA/HOW_radio_Global_Club_Nights_"
            },
            "short_description": {
                "fi": "Taika on totta, ja sukellamme syvälle Jaranas del Norten taianomaiseen maailmaan. Jaranas del Norte on helsinkiläinen kollektiivi, joka esittää ja edistää meksikolaista kansanmusiikkityyliä son jarochoa.",
                "sv": "Magi finns på riktigt! Vi djupdyker i Jaranas del Nortes magiska värld, ett Helsingforsbaserat kollektiv som uppträder med och främjar jarocho, en typ av folkmusik från Mexiko.",
                "en": "Magic is real and we deep dive into the magical world of Jaranas del Norte, a Helsinki-based collective that performs and promotes son jarocho, a folk musical style from Mexico."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Taika on totta, ja sukellamme syvälle Jaranas del Norten taianomaiseen maailmaan. Jaranas del Norte on helsinkiläinen kollektiivi, joka esittää ja edistää meksikolaista kansanmusiikkityyliä son jarochoa.</p><p>Jarochossa yhdistyvät alkuperäiskansojen, espanjalaisen ja afrikkalaisen musiikin elementit. Perinteisesti sitä on esitettty fandango-juhlissa. Ne ovat osallistavia ja yhteisöllisiä kokoontumisia, joihin kuuluu improvisoitua musiikkia, zapateado-tanssia ja décima-runolaulua. Millä tavoin voimme tehdä näin tärkeistä ja ihanista perinteistä osan arkielämäämme? Voimmeko juurruttaa musiikkiperinteen uuteen ympäristöön ja pitää paikallisen kulttuurin elossa? Tässä jaksossa sukellamme syvälle musiikin paikallisuuteen ja tarkastelemme sitä osallisuuden ja monimuotoisuuden edistämisen välineenä.</p><p>Tämä uraauurtava hanke on tarjonnut vuodesta 2019 lähtien konsertteja ja työpajoja instituutioille ja festivaaleille, kuten Kaustisen kansanmusiikkijuhlille, Etno-Espalle, Helsingin juhlaviikoille, Feel Helsinki -festivaalille, Suomen kansallismuseolle, Museum of Impossible Formsille (Mahdottomien muotojen museo) ja Kolibrí Festivaalille. Vuonna 2021 bändi äänitti ensimmäisen EP-julkaisunsa TAIKE:n tuella.</p><p>Haastateltavat:<br>Yesmith Sánchez – laulaja, jaranan soittaja ja monimuotoisuus-, tasa-arvo- ja osallisuusasiantuntija<br>Paola Nieto – zapateado-tanssija ja kulttuurijohtaja</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>",
                "sv": "<p>Magi finns på riktigt! Vi djupdyker i Jaranas del Nortes magiska värld, ett Helsingforsbaserat kollektiv som uppträder med och främjar jarocho, en typ av folkmusik från Mexiko.</p><p>Jarocho kombinerar inhemska, spanska och afrikanska element. Musiken framförs traditionellt på fandango-fester: deltagande samhällssammankomster med improviserad musik, ”zapateado”-danser och ”décima”-poesisång. På vilka sätt kan man göra sådana viktiga och fantastiska traditioner till en del av vårt vanliga liv? Kan vi ingjuta musiktraditioner på nya sätt och hålla lokala traditioner vid liv? Idag fördjupar vi oss i musiklokalitet och ser det som ett verktyg för att främja inkludering och mångfald.</p><p>Alltsedan det grundades 2019 har det här banbrytande projektet arrangerat konserter och workshoppar för organisationer och festivaler, däribland Kaustinen Folk Music Festival, Etno-Espa, Helsinki Festival, Feel Helsinki, Finlands Nationalmuseum, Museum of Impossible Forms och Kolibrí Festivaali. 2021 spelade bandet in sin första EP med stöd av TAIKE.</p><p>Intervjudeltagare:<br>Yesmith Sánchez – sångare, jarana-spelare och DEI-expert<br>Paola Nieto – zapateado-dansös och kulturchef</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>",
                "en": "<p>Magic is real and we deep dive into the magical world of Jaranas del Norte, a Helsinki-based collective that performs and promotes son jarocho, a folk musical style from Mexico.</p><p>Jarocho combines indigenous, Spanish, and African elements. It is traditionally performed during fandango celebrations: participative and communitarian gatherings that include improvised music, ”zapateado” dancing, and ”décima” poetry singing. What are the ways of making such important and wonderful traditions part of our regular life? Can we instill music tradition in new setup and keep the local alive? Today we deep dive into music locality and see is as a tool for advocating inclusion and diversity.</p><p>Since its creation in 2019, this pioneer project has offered concerts and workshops for institutions and festivals, including Kaustinen Folk Music Festival, Etno-Espa, Helsinki Festival, Feel Helsinki, the National Museum of Finland, the Museum of Impossible Forms, and Kolibrí Festivaali. In 2021, the band recorded its first EP production with the support of TAIKE.</p><p>Interview participants:<br>Yesmith Sánchez – singer, jarana player and DEI expert<br>Paola Nieto – zapateado dancer and cultural manager</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64309/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64585",
            "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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152442,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-17T10:14:07.498582Z",
                    "last_modified_time": "2024-09-17T10:14:07.498596Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758084.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152442/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-17T10:14:07.485187Z",
            "last_modified_time": "2024-12-20T01:14:10.049861Z",
            "date_published": null,
            "start_time": "2024-11-20T09:00:00Z",
            "end_time": "2024-11-20T11: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,
            "name": {
                "fi": "Keskiviikon lounasjamit",
                "sv": "Jams till onsdagslunchen",
                "en": "Wednesday lunch jams"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/25241B348144F7F6052E4492DBCB25F6/Keskiviikon_lounasjamit",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/25241B348144F7F6052E4492DBCB25F6/Jams_till_onsdagslunchen",
                "en": "http://www.kanneltalo.fi/en/events/event/25241B348144F7F6052E4492DBCB25F6/Wednesday_lunch_jams"
            },
            "short_description": {
                "fi": "Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.",
                "sv": "På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.",
                "en": "In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja miksei iskelmäkin! Luvassa myös paljon muuta sielukasta musiikkia. Tervetuloa nauttimaan ruoasta ja musiikista!</p><p>Kesto 2 tuntia</p><p>Kanneltalon kahvilan stage<br>Vapaa pääsy</p>",
                "sv": "<p>På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.</p><p>Vid lunchtid får vi lyssna till genrer från hela världen. På scenen får du höra anatolisk funk, afrikansk highlife, pop och varför inte också ett par schlagersånger! Massor av annan själfull musik utlovas också. Välkommen till bords!</p><p>Längd 2 timmar<br>Caféscen<br>Fritt inträde</p>",
                "en": "<p>In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage.</p><p>At lunchtime, anyone can come listen to genres from around the world. Anatolian funk, African highlife, pop and why not Finnish iskelmä too! And of course, lots of other soulful music. Come and listen!</p><p>Duration: 2 hours<br>Café stage<br>Free of charge</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64585/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64271",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151835,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T16:15:02.915575Z",
                    "last_modified_time": "2024-07-24T16:15:02.915603Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751211.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151835/?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-07-24T16:15:02.894220Z",
            "last_modified_time": "2024-12-20T01:14:09.965754Z",
            "date_published": null,
            "start_time": "2024-11-20T09:00:00Z",
            "end_time": "2024-11-20T09: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,
            "name": {
                "fi": "Jussi Ollilan suomi-englanti-satutuokiot – Lapsen oikeuksien viikko",
                "sv": "Finsk-engelska sagostunder med Jussi Ollila – Barnrättsveckan",
                "en": "Jussi Ollila's Finnish-English fairy-tale sessions – Children's Rights Week"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3CCFB2687629C6F5107091C3F32BB9D7/Jussi_Ollilan_suomi-englanti-satutuokiot_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/3CCFB2687629C6F5107091C3F32BB9D7/Finsk-engelska_sagostunder_med_Jussi_Ollila",
                "en": "http://www.vuotalo.fi/en/events/event/3CCFB2687629C6F5107091C3F32BB9D7/Jussi_Ollila_s_Finnish-English_fairy-tale_sessions"
            },
            "short_description": {
                "fi": "Jussi Ollilan kanssa löydetään jännittävimmät sadut ja maagisimmat tarinat, tällä kertaa suomeksi ja englanniksi!",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna, denna gång på finska och engelska!",
                "en": "Jussi Ollila helps you discover your next, most exciting fairy tale and the most magical stories, this time in both Finnish and English!"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa löydetään jännittävimmät sadut ja maagisimmat tarinat, tällä kertaa suomeksi ja englanniksi!</p><p>Lapsen oikeuksien päivän kunniaksi järjestetään kolme satutuokiota, jotka sopivat erinomaisesti englantia opetteleville ja jo osaaville lapsille. <br>Paikkana on Pikkusali, Vuotalon K-kerroksessa.</p><p>Ikäsuositus: 3–8-vuotiaille <br>Kesto: 30 min<br>Kieli: suomi ja englanti</p><p>Vapaa pääsy</p><p>Tarkoitettu päiväkoti- ja kouluryhmille ja perheille.</p><p>Ryhmille ennakkoilmoittautumiset osoitteessa: https://www.kultus.fi/fi/event/kultus:agjeoaqciq?text=Jussi+Ollilan&returnPath=%2Fsearch</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna, denna gång på finska och engelska!</p><p>För att fira Barnrättsdagen ordnar vi tre sagostunder som lämpar sig utmärkt för barn som håller på att lära sig engelska, och barn som redan kan engelska. <br>Platsen är Lilla salen, på K-våningen i Nordhuset.</p><p>Åldersrekommendation: 3–8-åringar <br>Längd: 30 min.<br>Språk: finska och engelska</p><p>Fritt inträde</p><p>Avsedd för daghems- och skolgrupper samt familjer. Förhandsanmälan för grupper på www.kultus.fi</p>",
                "en": "<p>Jussi Ollila helps you discover your next, most exciting fairy tale and the most magical stories, this time in both Finnish and English!</p><p>To celebrate Children's Rights Day, we are holding three fairy-tale sessions, which are perfect for children who are learning English and who already know English. <br>The place is the Little Hall, on the basement floor of Vuotalo.</p><p>Age recommendation: for 3–8-year-olds <br>Duration: 30 mins.<br>Language: Finnish and English</p><p>Free of charge</p><p>Intended for kindergarten and school groups and families. Advance registration for groups at www.kultus.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64271/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64523",
            "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:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152305,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-05T11:14:00.463775Z",
                    "last_modified_time": "2024-09-05T11:14:00.463788Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749843.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152305/?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-09-05T11:14:00.448465Z",
            "last_modified_time": "2024-12-20T01:14:09.880356Z",
            "date_published": null,
            "start_time": "2024-11-20T08:00:00Z",
            "end_time": "2024-11-20T10: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,
            "name": {
                "fi": "Naperokino",
                "sv": "Knattebion",
                "en": "Toddler cinema"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/01009614F90DB92DF28B62304325C96B/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/01009614F90DB92DF28B62304325C96B/Knattebion",
                "en": "http://www.annantalo.fi/en/events/event/01009614F90DB92DF28B62304325C96B/Toddler_cinema"
            },
            "short_description": {
                "fi": "Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "Knattebion är en biograf för 0–3-åringar! 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": "Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Naperokino on 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.</p><p>Naperokinossa esitetään lapsille laadukkaita elokuvia ja totutellaan heitä 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.</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ovella lapsia on tervehtimässä Pikku-Myyrä. Isoa Myyrää pääsee tapaamaan syyslomaviikolla ke 16.10. ja Lapsen oikeuksien päivänä ke 20.11.</p><p>Naperokinon näytöksillä on joka viikko vaihtuva teema.</p><p>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa<br>Kieli: suomi<br>Maksuton</p><p>Naperokinon teemat syksyllä 2024:</p><p>Ke 4.9.2024 Naperokino: Luonto ja eläimet<br>Ke 11.9.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 18.9.2024 Naperokino: seikkailu ja matka<br>Ke 25.9.2024 Naperokino: huolenpito ja rakkaus</p><p>Ke 2.10.2024 Naperokino: rohkeus ja auttaminen<br>Ke 9.10.2024 Naperokino: ystävät ja perhe<br>Ke 16.10.2024 Naperokino: luovuus ja taiteet<br>Ke 23.10.2024 Naperokino: luonto ja eläimet<br>Ke 30.10.2024 Naperokino: mielikuvitus</p><p>Ke 6.11.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 13.11.2024 Naperokino: seikkailu ja matka<br>Ke 20.11.2024 Naperokino: huolenpito ja rakkaus<br>Ke 27.11.2024 Naperokino: rohkeus ja auttaminen</p><p>Ke 4.12.2024 Naperokino: ystävät ja perhe<br>Ke 11.12.2024 Naperokino: luovuus ja taiteet<br>Ke 18.12.2024 Naperokino: luonto ja eläimet</p>",
                "sv": "<p>Knattebion är en biograf för 0–3-åringar! 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>Den avslappnade, bekväma lokalen och situationen gör det möjligt att värma mat, mata/amma och introducera barnen till biografen i deras egen takt. Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Knattebion visar barnen filmer av hög kvalitet och vänjer dem gradvis vid att titta på långa barnfilmer på biografer. Den första halvan av visningen som varar två timmar består av animerade filmer utan tal och den andra halvan av favoritfilmer med tal. Vid sidan av filmerna är Knattebion en mötesplats för små barn och deras vuxna.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Barnen hälsas välkomna vid dörren av Lilla Mullvaden. Du kan träffa Stora Mullvaden under höstlovsveckan ons 16.10. och på Barnrättsdagen ons 20.11.</p><p>Temat för Knattebions föreställningar varierar varje vecka.</p><p>Åldersrekommendation: 0–3-åringar i sällskap med sina föräldrar<br>Språk: finska<br>Fritt inträde</p><p>Teman för Knattebion hösten 2024:</p><p>Ons 4.9.2024 Knattebion: Natur och djur<br>Ons 11.9.2024 Knattebion: samhälle och stad<br>Ons 18.9.2024 Knattebion: äventyr och resor<br>Ons 25.9.2024 Knattebion: omsorg och kärlek</p><p>Ons 2.10.2024 Knattebion: mod och att hjälpa andra<br>Ons 9.10.2024 Knattebion: vänner och familj<br>Ons 16.10.2024 Knattebion: kreativitet och konst<br>Ons 23.10.2024 Knattebion: natur och djur<br>Ons 30.10.2024 Knattebion: fantasi</p><p>Ons 6.11.2024 Knattebion: samhälle och stad<br>Ons 13.11.2024 Knattebion: äventyr och resor<br>Ons 20.11.2024 Knattebion: omsorg och kärlek<br>Ons 27.11.2024 Knattebion: mod och att hjälpa andra</p><p>Ons 4.12.2024 Knattebion: vänner och familj<br>Ons 11.12.2024 Knattebion: kreativitet och konst<br>Ons 18.12.2024 Knattebion: natur och djur</p>",
                "en": "<p>Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>A relaxed, comfortable venue and setting allows you to heat up food, feed or breastfeed, and introduce your child to cinema at their own pace. A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler cinema presents high-quality films for children and gradually get them used to watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue. Alongside the films, the Toddler Cinema serves as a meeting place for small children and their adults.</p><p>Toddler Cinema is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>Little Mole will greet the children at the door. Big Mole will be available to meet on Wednesday, 16 October during the autumn holiday week as well as on Children's Day, Wednesday, 20 November.</p><p>The Toddler Cinema screenings have a different theme each week.</p><p>Age recommendation: For 0–3-year-olds with parents<br>Language: Finnish<br>Free of charge</p><p>Toddler Cinema themes for autumn 2024:</p><p>Wed 04 Sept 2024 Toddler Cinema: Nature and Animals<br>Wed 11 Sept 2024 Toddler Cinema: Society and the City<br>Wed 18 Sept 2024 Toddler Cinema: Adventure and Travel<br>Wed 25 Sept 2024 Toddler Cinema: Care and Love</p><p>Wed 2 Oct 2024 Toddler Cinema: Courage and Helping Others<br>Wed 9 Oct 2024 Toddler Cinema: Friends and Family<br>Wed 16 Oct 2024 Toddler Cinema: Creativity and the Arts<br>Wed 23 Oct 2024 Toddler Cinema: Nature and Animals<br>Wed 30 Oct 2024 Toddler Cinema: The Imagination</p><p>Wed 06 Nov 2024 Toddler Cinema: Society and the City<br>Wed 13 Nov 2024 Toddler Cinema: Adventure and Travel<br>Wed 20 Nov 2024 Toddler Cinema: Care and Love<br>Wed 27 Nov 2024 Toddler Cinema: Courage and Helping Others</p><p>Wed 04 Dec 2024 Toddler Cinema: Friends and Family<br>Wed 11 Dec 2024 Toddler Cinema: Creativity and the Arts<br>Wed 18 Dec 2024 Toddler Cinema: Nature and Animals</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64523/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64270",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151834,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T16:15:02.761552Z",
                    "last_modified_time": "2024-07-24T16:15:02.761570Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751210.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151834/?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-07-24T16:15:02.742399Z",
            "last_modified_time": "2024-12-20T01:14:09.799549Z",
            "date_published": null,
            "start_time": "2024-11-20T08:00:00Z",
            "end_time": "2024-11-20T08: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,
            "name": {
                "fi": "Jussi Ollilan suomi-englanti-satutuokiot – Lapsen oikeuksien viikko",
                "sv": "Finsk-engelska sagostunder med Jussi Ollila – Barnrättsveckan",
                "en": "Jussi Ollila's Finnish-English fairy-tale sessions – Children's Rights Week"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/699AF28A4F49F8B58979F71999467B4F/Jussi_Ollilan_suomi-englanti-satutuokiot_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/699AF28A4F49F8B58979F71999467B4F/Finsk-engelska_sagostunder_med_Jussi_Ollila",
                "en": "http://www.vuotalo.fi/en/events/event/699AF28A4F49F8B58979F71999467B4F/Jussi_Ollila_s_Finnish-English_fairy-tale_sessions"
            },
            "short_description": {
                "fi": "Jussi Ollilan kanssa löydetään jännittävimmät sadut ja maagisimmat tarinat, tällä kertaa suomeksi ja englanniksi!",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna, denna gång på finska och engelska!",
                "en": "Jussi Ollila helps you discover your next, most exciting fairy tale and the most magical stories, this time in both Finnish and English!"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa löydetään jännittävimmät sadut ja maagisimmat tarinat, tällä kertaa suomeksi ja englanniksi!</p><p>Lapsen oikeuksien päivän kunniaksi järjestetään kolme satutuokiota, jotka sopivat erinomaisesti englantia opetteleville ja jo osaaville lapsille. <br>Paikkana on Pikkusali, Vuotalon K-kerroksessa.</p><p>Ikäsuositus: 3–8-vuotiaille <br>Kesto: 30 min<br>Kieli: suomi ja englanti</p><p>Vapaa pääsy</p><p>Tarkoitettu päiväkoti- ja kouluryhmille ja perheille.</p><p>Ryhmille ennakkoilmoittautumiset osoitteessa: https://www.kultus.fi/fi/event/kultus:agjeoaqciq?text=Jussi+Ollilan&returnPath=%2Fsearch</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna, denna gång på finska och engelska!</p><p>För att fira Barnrättsdagen ordnar vi tre sagostunder som lämpar sig utmärkt för barn som håller på att lära sig engelska, och barn som redan kan engelska. <br>Platsen är Lilla salen, på K-våningen i Nordhuset.</p><p>Åldersrekommendation: 3–8-åringar <br>Längd: 30 min.<br>Språk: finska och engelska</p><p>Fritt inträde</p><p>Avsedd för daghems- och skolgrupper samt familjer. Förhandsanmälan för grupper på www.kultus.fi</p>",
                "en": "<p>Jussi Ollila helps you discover your next, most exciting fairy tale and the most magical stories, this time in both Finnish and English!</p><p>To celebrate Children's Rights Day, we are holding three fairy-tale sessions, which are perfect for children who are learning English and who already know English. <br>The place is the Little Hall, on the basement floor of Vuotalo.</p><p>Age recommendation: for 3–8-year-olds <br>Duration: 30 mins.<br>Language: Finnish and English</p><p>Free of charge</p><p>Intended for kindergarten and school groups and families. Advance registration for groups at www.kultus.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64270/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64269",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151833,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T16:15:02.578913Z",
                    "last_modified_time": "2024-07-24T16:15:02.578931Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751209.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151833/?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-07-24T16:15:02.553450Z",
            "last_modified_time": "2024-12-20T01:14:09.725519Z",
            "date_published": null,
            "start_time": "2024-11-20T07:00:00Z",
            "end_time": "2024-11-20T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jussi Ollilan suomi-englanti-satutuokiot – Lapsen oikeuksien viikko",
                "sv": "Finsk-engelska sagostunder med Jussi Ollila – Barnrättsveckan",
                "en": "Jussi Ollila's Finnish-English fairy-tale sessions – Children's Rights Week"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/FF4B8E6DCCDA25A0F7CABAC8EA5E872F/Jussi_Ollilan_suomi-englanti-satutuokiot_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/FF4B8E6DCCDA25A0F7CABAC8EA5E872F/Finsk-engelska_sagostunder_med_Jussi_Ollila",
                "en": "http://www.vuotalo.fi/en/events/event/FF4B8E6DCCDA25A0F7CABAC8EA5E872F/Jussi_Ollila_s_Finnish-English_fairy-tale_sessions"
            },
            "short_description": {
                "fi": "Jussi Ollilan kanssa löydetään jännittävimmät sadut ja maagisimmat tarinat, tällä kertaa suomeksi ja englanniksi!",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna, denna gång på finska och engelska!",
                "en": "Jussi Ollila helps you discover your next, most exciting fairy tale and the most magical stories, this time in both Finnish and English!"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa löydetään jännittävimmät sadut ja maagisimmat tarinat, tällä kertaa suomeksi ja englanniksi!</p><p>Lapsen oikeuksien päivän kunniaksi järjestetään kolme satutuokiota, jotka sopivat erinomaisesti englantia opetteleville ja jo osaaville lapsille. <br>Paikkana on Pikkusali, Vuotalon K-kerroksessa.</p><p>Ikäsuositus: 3–8-vuotiaille <br>Kesto: 30 min<br>Kieli: suomi ja englanti</p><p>Vapaa pääsy</p><p>Tarkoitettu päiväkoti- ja kouluryhmille ja perheille.</p><p>Ryhmille ennakkoilmoittautumiset osoitteessa: https://www.kultus.fi/fi/event/kultus:agjeoaqciq?text=Jussi+Ollilan&returnPath=%2Fsearch</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna, denna gång på finska och engelska!</p><p>För att fira Barnrättsdagen ordnar vi tre sagostunder som lämpar sig utmärkt för barn som håller på att lära sig engelska, och barn som redan kan engelska. <br>Platsen är Lilla salen, på K-våningen i Nordhuset.</p><p>Åldersrekommendation: 3–8-åringar <br>Längd: 30 min.<br>Språk: finska och engelska</p><p>Fritt inträde</p><p>Avsedd för daghems- och skolgrupper samt familjer. Förhandsanmälan för grupper på www.kultus.fi</p>",
                "en": "<p>Jussi Ollila helps you discover your next, most exciting fairy tale and the most magical stories, this time in both Finnish and English!</p><p>To celebrate Children's Rights Day, we are holding three fairy-tale sessions, which are perfect for children who are learning English and who already know English. <br>The place is the Little Hall, on the basement floor of Vuotalo.</p><p>Age recommendation: for 3–8-year-olds <br>Duration: 30 mins.<br>Language: Finnish and English</p><p>Free of charge</p><p>Intended for kindergarten and school groups and families. Advance registration for groups at www.kultus.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64269/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64085",
            "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: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151857,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T12:15:07.609332Z",
                    "last_modified_time": "2024-07-25T12:15:07.609362Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755635.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151857/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-07-25T12:15:07.566811Z",
            "last_modified_time": "2024-12-20T01:14:09.240249Z",
            "date_published": null,
            "start_time": "2024-11-19T07: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,
            "name": {
                "fi": "Yläkoulukino: Havumetsän lapset (7) – Lapsen oikeuksien viikko",
                "sv": "Högstadiekino: Havumetsän lapset (Barrskogens barn) (7) – Barnrättsveckan",
                "en": "Junior High School Cinema: Havumetsän lapset (Children of Pine Forest) (7) – Children's Rights Week"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/8F7758337248C715AF4FE5E86130A0F7/Ylakoulukino_Havumetsan_lapset_7_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/8F7758337248C715AF4FE5E86130A0F7/Hogstadiekino_Havumetsan_lapset_Barrskogens_barn_7_",
                "en": "http://www.stoa.fi/en/events/event/8F7758337248C715AF4FE5E86130A0F7/Junior_High_School_Cinema_Havumetsan_lapset_Children_of_Pine_Forest_7_"
            },
            "short_description": {
                "fi": "Palkitun Virpi Suutarin uusi elokuva Havumetsän lapset pöllyttää raikkaalla tavalla käsityksiämme metsistä ja niiden suojelusta. Asiantuntijavieraana elokuvan ohjaaja Virpi Suutari.",
                "sv": "Virpi Suutaris nya prisbelönta film Havumetsän lapset ruskar om våra uppfattningar om skogarna och skyddet av dem på ett fräscht sätt. Expertgäst är filmens regissör Virpi Suutari.",
                "en": "Virpi Suutari’s award-winning new documentary, Havumetsän lapset shakes up our image of forests and how to protect them. The expert guest is the director, Virpi Suutari."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Palkitun Virpi Suutarin uusi elokuva Havumetsän lapset pöllyttää raikkaalla tavalla käsityksiämme metsistä ja niiden suojelusta. Asiantuntijavieraana elokuvan ohjaaja Virpi Suutari.</p><p>Elokuvan nuoret päähenkilöt Ida, Minka, Otto, Ville ja Otso haluavat pelastaa Suomen metsät. Vastassaan heillä on metsäteollisuus ja kansallinen ideologia metsistä taloudellisen hyvinvoinnin perustana. Ovatko nuoret sankareita vai isänmaan pettureita puolustaessaan jäkäliä ja katoamassa olevia hömötiaisia?</p><p>Suutarin humaani metsäkertomus kuljettaa katsojansa lumoavalle luontomatkalle vanhojen havupuiden suojasta Aalistunturin huipulle, selluteollisuuden kabineteista Idan isoisä Taunon, entisen metsätyömiehen, kotisohvalle. Suomen ja suomalaisuuden kuvaajana ansioituneen Suutarin (mm. Aalto, Eedenistä pohjoiseen) elokuva ravistelee kohtaamaan hupenevan metsäluontomme kauneuden ja hädän.</p><p>Asiantuntijavieraana elokuvan ohjaaja Virpi Suutari.</p><p>Kesto: 1 t 32 min + asiantuntijapuheenvuoro noin 30 min<br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset www.kultus.fi ke 19.8. klo 10 alkaen.<br>Ohjaaja: Virpi Suutari<br>Pääosissa: Ida Korhonen, Minka Virtanen, Otto Snellman, Ville Murmann, Otso Piitulainen<br>Ensi-ilta: 28.3.2024<br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Virpi Suutaris nya prisbelönta film Havumetsän lapset ruskar om våra uppfattningar om skogarna och skyddet av dem på ett fräscht sätt. Expertgäst är filmens regissör Virpi Suutari.</p><p>De unga huvudpersonerna i filmen, Minka, Otto, Ville och Otso vill rädda Finlands skogar. Emot sig har de skogsindustrin och den nationella ideologin om skogarna som grunden till den ekonomiska välfärden. Är de unga hjältar eller landsförrädare då de försvarar lavar och den utrotningshotade talltitan?</p><p>Suutaris humana skogsberättelse tar med sig åskådarna på en hänförande naturutflykt från gamla barrskogar till toppen av Aalistunturi, från cellulosaindustrins kabinett till soffan hemma hos Idas farfar Tauno som har jobbat som skogsarbetare. Suutari har utmärkt sig som en skildrare av Finland och finländskhet (bland annat Aalto, Eedenistä pohjoiseen (Norr om Eden)). Denna film utmanar oss att möta den krympande skogsnaturens skönhet och nöd.</p><p>Expertgäst är filmens regissör Virpi Suutari.</p><p>Längd: 1 h 32 min. + expertanförande ca 30 min.<br>Fritt inträde, obligatorisk anmälning för grupper på www.kultus.fi från och med ons 19.8. kl. 10.00.<br>Regi: Virpi Suutari<br>I huvudrollerna: Ida Korhonen, Minka Virtanen, Otto Snellman, Ville Murmann, Otso Piitulainen<br>Premiär: 28.3.2024<br>Mer information: hanna.westerholm@hel.fi</p>",
                "en": "<p>Virpi Suutari’s award-winning new documentary, Havumetsän lapset shakes up our image of forests and how to protect them. The expert guest is the director, Virpi Suutari.</p><p>The young protagonists, Ida, Minka, Otto, Ville and Otso want to save Finland's forests. They are facing the forest industry and the national ideology of forests as the foundation of financial wellbeing. Are they heroes or traitors in defending the lichens and endangered willow tits?</p><p>Suutari’s humane story about the forests takes its viewers on an enchanting trip through nature, from the shade of the ancient conifers to the top of Aalistunturi, from the paper industry’s cabinets to the sofa of Ida’s grandfather Tauno, a former forest worker. Suutari, who’s acclaimed for her depictions of Finland and Finnishness (incl. Aalto, Garden Lovers), has created a film that makes you face the beauty and distress of our diminishing forests.</p><p>The expert guest is the director, Virpi Suutari.</p><p>Duration: 1 h 32 min + expert talk about 30 min<br>Free admission, mandatory registration for groups at www.kultus.fi from Wed 19 August at 10 am.<br>Director: Virpi Suutari<br>Featuring: Ida Korhonen, Minka Virtanen, Otto Snellman, Ville Murmann, Otso Piitulainen<br>Premiere: 28 March 2024<br>Additional information: hanna.westerholm@hel.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64085/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64655",
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152776,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-10T13:16:12.426737Z",
                    "last_modified_time": "2024-10-10T13:16:12.426752Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758871.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152776/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-10-10T13:16:12.389614Z",
            "last_modified_time": "2024-12-20T01:14:09.097393Z",
            "date_published": null,
            "start_time": "2024-11-18",
            "end_time": "2024-11-24",
            "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,
            "name": {
                "fi": "Seikkailutaidekoulu: Taikametsä-installaatio ja Mehiläispurppura-työpajat – Lapsen oikeuksien viikko",
                "sv": "Taikametsä (Trollskogen) & Workshop – Mehiläispurppura (Bipurpur) – Barnrättsveckan",
                "en": "Magic Forest installation & Purple Bee Workshops – Children's Rights Week"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/AE3D92BD09A40585E0EE09FD9C98C924/Seikkailutaidekoulu_Taikametsa-installaatio_ja_Mehilaispurppura-tyopajat",
                "sv": "http://www.stoa.fi/sv/evenemang/event/AE3D92BD09A40585E0EE09FD9C98C924/Taikametsa_Trollskogen_Workshop_Mehilaispurppura_Bipurpur_",
                "en": "http://www.stoa.fi/en/events/event/AE3D92BD09A40585E0EE09FD9C98C924/Magic_Forest_installation_Purple_Bee_Workshops"
            },
            "short_description": {
                "fi": "Taikametsä on utooppinen satumaailma, jossa puun lehdet loistavat sinisinä ja kukat hohtavat pimeässä. Tähän metsään kaikki ovat tervetulleita.",
                "sv": "Taikametsä är en utopisk sagovärld där trädens löv lyser i blått och blommorna glöder i mörkret. Alla är välkomna i denna skog.",
                "en": "The Magic Forest is a utopian fairy tale world, in which the tree leaves shine blue and the flowers glow in the dark. Everyone is welcome in this forest."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Taikametsä on utooppinen satumaailma, jossa puun lehdet loistavat sinisinä ja kukat hohtavat pimeässä. Tähän metsään kaikki ovat tervetulleita.</p><p>Seikkailutaidekoulun yhdessä noin sadan itähelsinkiläisen lapsen kanssa koostaman Taikametsän inspiraationa toimivat lasten seikkailulliset mielikuvitusmaailmat ja pörriäisten mesiviitat, Tove Janssonin ja Hayao Miyazakin satumaailmat. UV-installaatiossa vieraileminen sopii kaiken ikäisille. Myös päiväkotiryhmät ovat tervetulleita ilman ilmoittautumista.</p><p>Paikka: Kerhohuone<br>Ikäsuositus: 3+<br>Vapaa pääsy talon aukioloaikoina: ma-to klo 8.30-19, pe klo 8.30-17, la klo 10-15.30 ja su klo 12-17.</p><p><b>Seikkailutaidekoulu: Mehiläispurppura -työpajat ma 18.11. klo 9 ja klo 12</b><br>Miten ötökät näkevät värejä? Mehiläispurppura-työpajassa leikitellään pörriäisten värinäöllä. Maalaamme kukkia ja ihmettelemme niiden hehkuvia värejä uv-valossa. Miltä ne näyttäisivät mehiläisten silmin? Työpajassa syntyneet maalaukset liitetään osaksi Taikametsä-installaatiota.<br>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu</p><p>Ikäsuositus työpajoille: viskarit ja eskarit<br>Kesto: 45 min <br>Kieli: suomi ja englanti <br>Vapaa pääsy. Pakolliset ennakkoilmoittautumiset: kultus.fi <br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Taikametsä är en utopisk sagovärld där trädens löv lyser i blått och blommorna glöder i mörkret. Alla är välkomna i denna skog.</p><p>Skogen är inspirerad av barns äventyrliga fantasier och insekternas nektarguider, Tove Janssons och Hayao Miyazakis sagovärldar.</p><p>Plats: Kerhohuone<br>Rekommenderad ålder: 3+<br>Fri entré<br>Öppet mån–thur klo 8.30-19, fre klo 8.30-17, lör klo 10-15.30 ja sön klo 12-17.</p><p><b>Workshop – Mehiläispurppura (Bipurpur)</b><br>Hur ser insekter färger? I workshoppen Mehiläispurppura leker vi med insekternas färgseende. Vi målar blommor och förundras över deras lysande färger under uv-ljus. Hur skulle de se ut för bin? De målningar som skapas i workshoppen införlivas i Taikametsä-installationen</p><p>Åldersrekommendation: femåringar och förskolebarn<br>Längd: 45 min. <br>Språk: finska och engelska <br>Fritt inträde. Obligatorisk förhandsanmälan: kultus.fi<br>Mer information: hanna.westerholm@hel.fi</p>",
                "en": "<p>The Magic Forest is a utopian fairy tale world, in which the tree leaves shine blue and the flowers glow in the dark. Everyone is welcome in this forest.</p><p>The forest is inspired by children’s adventurous fantasy worlds and the honeyed capes of insects, the fairytale worlds of Tove Jansson and Hayao Miyazaki.</p><p>Location: Kerhohuone<br>Recommended age: 3+<br>Free admission<br>Open Mon–Thur 8.30-19, Fri 8.30-17, Sat 10-15.30 and Sun 12-17.</p><p><b>Purple Bee workshop</b><br>How do bugs see colour? In the Purple Bee workshop, participants play around with bugs’ colour vision. They paint flowers and marvel at the glowing colours under a UV light. What would they look like through the eyes of a bee? The paintings created in the workshop will be incorporated into the Magic Forest installation</p><p>Recommended age: 5–6-year-olds<br>Duration: 45 mins. <br>Language: Finnish and English <br>Admission is free. Pre-registration required at kultus.fi</p><p>Additional information: hanna.westerholm@hel.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64655/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63567",
            "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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152096,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-13T13:15:51.577930Z",
                    "last_modified_time": "2024-08-13T13:15:51.577948Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751506.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152096/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-08-13T13:15:51.549045Z",
            "last_modified_time": "2024-12-20T01:14:09.008972Z",
            "date_published": null,
            "start_time": "2024-11-18",
            "end_time": "2025-02-15",
            "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,
            "name": {
                "fi": "Elävät kuvat 3",
                "sv": "Levande bilder 3",
                "en": "Moving Pictures 3"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/11247D98140BDDF5E4CC5AEBE991AC20/Elavat_kuvat_3",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/11247D98140BDDF5E4CC5AEBE991AC20/Levande_bilder_3",
                "en": "http://www.annantalo.fi/en/events/event/11247D98140BDDF5E4CC5AEBE991AC20/Moving_Pictures_3"
            },
            "short_description": {
                "fi": "Annantalon toisen kerroksen pohjoinen galleria muuttuu elokuvasaliksi, jossa nähdään animaatioita, videoita ja lyhytelokuvaa – perinteistä sekä kokeellista, uutta ja vanhaa sopivassa suhteessa.",
                "sv": "Det norra galleriet på Annegårdens andra våning förvandlas till en filmsal, där vi får titta på animationer, videor och kortfilmer – traditionella och experimentella, nya och gamla i rätt proportion.",
                "en": "The northern gallery on the second floor of Annantalo will be transformed into a cinema, featuring animations, videos and short films – both traditional and experimental, new and old in appropriate proportion."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Annantalon toisen kerroksen pohjoinen galleria muuttuu elokuvasaliksi, jossa nähdään animaatioita, videoita ja lyhytelokuvaa – perinteistä sekä kokeellista, uutta ja vanhaa sopivassa suhteessa.</p><p><b>Elävät kuvat 3 vie lyhytelokuvan pariin!</b></p><p>Näytöksessä nähdään kokoelma kiperiä tilanteita ja nerokkaita ratkaisuja! Haiseeko palaneen käry? Onko syksy pilalla?</p><p>Yhden videon kesto on noin 2 minuuttia ja koko näytöksen kesto alle 30 minuuttia.</p><p>Videot pyörivät nonstoppina galleriatilassa, tule vaikka hetkeksi tai viivy pidempään - ota mukava asento sohvalta ja nauti!</p><p>Lyhytelokuvanäytös: <b>Vauhtia ja vaikeita tilanteita</b></p><p>Ryhmät: Helsingin ranskalais-suomalainen koulu 5A, Kalasataman peruskoulu 4ABC, Katajanokan ala-aste 4A, Latokartanon peruskoulu 4A, 4B ja 4D, Munkkiniemien ala-aste 5C, Pukinmäki 4C, Ressun peruskoulu 3AC, Suomalais-Venäläinen koulu 3A ja Vallilan ala-aste 4A</p><p>Opettaja: Jenna Saarinen</p><p>Kieli: Suomi<br>Kokonaiskesto: 26min<br>Ikäsuositus: 6+</p>",
                "sv": "<p>Det norra galleriet på Annegårdens andra våning förvandlas till en filmsal, där vi får titta på animationer, videor och kortfilmer – traditionella och experimentella, nya och gamla i rätt proportion.</p><p>Samlingen består av videor som gjorts av Annegårdens elever under 2023–2024.</p><p>Speltiden för en visning är ca 30 minuter. Videorna visas non-stop i galleriutrymmet.</p><p>Sätt dig bekvämt tillrätta i soffan och njut!</p><p>En del av filmerna är på finska och en del är ordlösa.<br>Åldersrekommendation: 6+</p>",
                "en": "<p>The northern gallery on the second floor of Annantalo will be transformed into a cinema, featuring animations, videos and short films – both traditional and experimental, new and old in appropriate proportion.</p><p>The current showcase consists of videos made by Annantalo students from 2023 to 2024.</p><p>The total duration of one show is about 30 minutes. The videos run on repeat in the gallery area.</p><p>Take a comfortable position on the couch and enjoy!</p><p>Some of the videos are in Finnish and some are non-verbal.<br>Age recommendation: 6+</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63567/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64488",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152484,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-19T13:14:25.497882Z",
                    "last_modified_time": "2024-09-19T13:14:25.497897Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757551.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152484/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-19T13:14:25.480577Z",
            "last_modified_time": "2024-12-20T01:14:08.761427Z",
            "date_published": null,
            "start_time": "2024-11-17T10:00:00Z",
            "end_time": "2024-11-17T11: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,
            "name": {
                "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Calixto Neto",
                "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Calixto Neto",
                "en": "Moving in November: Soup Talks – Talk with Calixto Neto"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/475B88D07D71FBD1A48DCB37FA15A9DE/Liikkeella_marraskuussa_Soup_Talks",
                "sv": "http://www.caisa.fi/sv/evenemang/event/475B88D07D71FBD1A48DCB37FA15A9DE/Liikkeella_marraskuussa_Soup_Talks",
                "en": "http://www.caisa.fi/en/events/event/475B88D07D71FBD1A48DCB37FA15A9DE/Moving_in_November_Soup_Talks"
            },
            "short_description": {
                "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.",
                "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.",
                "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64488/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64443",
            "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: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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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-115/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152205,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-23T12:13:32.648620Z",
                    "last_modified_time": "2024-08-23T12:13:32.648634Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757176.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152205/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-08-23T12:13:32.640746Z",
            "last_modified_time": "2024-12-20T01:14:08.065531Z",
            "date_published": null,
            "start_time": "2024-11-16T12: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,
            "name": {
                "fi": "Lasten inklusiivinen tanssitunti",
                "sv": "Inkluderande danslektion för barn",
                "en": "Children’s Inclusive Dance Class"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/19253EB158316E6A1C3ECD6DEBD115F3/Lasten_inklusiivinen_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/19253EB158316E6A1C3ECD6DEBD115F3/Inkluderande_danslektion_for_barn",
                "en": "http://www.annantalo.fi/en/events/event/19253EB158316E6A1C3ECD6DEBD115F3/Children_s_Inclusive_Dance_Class_"
            },
            "short_description": {
                "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.",
                "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen.</p><p>Ohjauskielet: suomi/englanti<br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Tila: Tanssiluokka</p><p>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi</p>",
                "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.  Fri entré, förhandsanmälning.</p><p>Antal deltagare: max 18 (barn och vuxna tillsammans)<br>Lokal: Dansklassrummet<br>Undervisningsspråk: Finska, engelska</p><p>Anmäl dig på förhand via e-post: info@kaaoscompany.fi</p>",
                "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability.</p><p>The lesson lasts one hour. <br>The space is accessible. <br>The lessons are free.</p><p>Languages: Finnish and English<br>Number of participants: max 18 (children and adults together)</p><p>Register in advance by email: info@kaaoscompany.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64443/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64487",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152483,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-19T13:14:25.239581Z",
                    "last_modified_time": "2024-09-19T13:14:25.239620Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757549.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152483/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-19T13:14:25.223924Z",
            "last_modified_time": "2024-12-20T01:14:07.982568Z",
            "date_published": null,
            "start_time": "2024-11-16T10:00:00Z",
            "end_time": "2024-11-16T11: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,
            "name": {
                "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Tiran Willemse",
                "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Tiran Willemse",
                "en": "Moving in November: Soup Talks – Talk with Tiran Willemse"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/F4CBD7D148283932788C5A9EE8AF7C56/Liikkeella_marraskuussa_Soup_Talks",
                "sv": "http://www.caisa.fi/sv/evenemang/event/F4CBD7D148283932788C5A9EE8AF7C56/Liikkeella_marraskuussa_Soup_Talks",
                "en": "http://www.caisa.fi/en/events/event/F4CBD7D148283932788C5A9EE8AF7C56/Moving_in_November_Soup_Talks"
            },
            "short_description": {
                "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.",
                "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.",
                "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64487/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64650",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152695,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-02T09:35:18.377356Z",
                    "last_modified_time": "2024-10-02T09:35:18.377368Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758482.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152695/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-10-02T09:35:18.358648Z",
            "last_modified_time": "2024-12-20T01:14:07.895427Z",
            "date_published": null,
            "start_time": "2024-11-16T09:00:00Z",
            "end_time": "2024-11-16T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ukrainalainen lastenfestivaali – Juhlitaan yhdessä! – Український дитячий фестиваль!",
                "sv": "Ukrainska Dagen - Vi firar! – Український дитячий фестиваль!"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9AA748011EADF85BB19535A22A334738/Ukrainalainen_lastenfestivaali_Juhlitaan_yhdessa_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9AA748011EADF85BB19535A22A334738/Ukrainska_Dagen_-_Vi_firar_"
            },
            "short_description": {
                "fi": "Vietämme yhdessä unohtumattoman päivän täynnä taidetta, musiikkia, tanssia ja teatteria! Приєднуйтеся до нас 16 листопада на незабутній день, наповнений мистецтвом, музикою, танцями та театром!",
                "sv": "Kom med oss för en oförglömlig dag fylld av konst, musik, dans och teater! Приєднуйтеся до нас 16 листопада на незабутній день, наповнений мистецтвом, музикою, танцями та театром!"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Vietämme yhdessä unohtumattoman päivän täynnä taidetta, musiikkia, tanssia ja teatteria! Приєднуйтеся до нас 16 листопада на незабутній день, наповнений мистецтвом, музикою, танцями та театром!</p><p>Työpajat: Päästä luovuutesi valloilleen kuvataiteen, keramiikan, tanssin, laulun, karaoken ja monen muun toiminnan avulla!<br> <br>Teatteri-, tanssi- ja musiikkiesitykset: Nauti kiehtovista esityksistä, jotka inspiroivat ja ilahduttavat.<br> <br>Festivaalin järjestävät Ad Astra sekä ukrainalaisten taiteilijoiden ja taidekasvattajien verkosto \"Hei-Hei\".</p><p>Tulkaa mukaan juhlimaan!</p><p>Vapaa pääsy.</p><p>Майстер-класи: <br>Розкрийте свою творчість через заняття мистецтвом , керамікою, танцями, співом та  іншими цікавостями!<br> <br>Театральні та танцювально-музичні виступи: <br>Насолоджуйтесь захопливими виставами, які надихнуть і подарують радість.<br> <br>Фестиваль організовано Ad Astra та Мережею українських митців і арт-педагогів у Фінляндії «Hei-Hei».<br> <br>Святкуймо разом!</p>",
                "sv": "<p>Kom med oss för en oförglömlig dag fylld av konst, musik, dans och teater! Приєднуйтеся до нас 16 листопада на незабутній день, наповнений мистецтвом, музикою, танцями та театром!</p><p>Workshops: Släpp loss din kreativitet med aktiviteter inom konst, keramik, dans, sång, karaoke och mycket mer!<br> <br>Teater- och dans-musikföreställningar: Njut av fängslande föreställningar som kommer att inspirera och glädja.<br> <br>Festivalen arrangeras av Ad Astra och nätverket för ukrainska konstnärer och konstpedagoger i Finland \"Hei-Hei\". Gratis inträde!<br> <br>Låt oss fira tillsammans!</p><p>Майстер-класи: <br>Розкрийте свою творчість через заняття мистецтвом , керамікою, танцями, співом та  іншими цікавостями!<br> <br>Театральні та танцювально-музичні виступи: <br>Насолоджуйтесь захопливими виставами, які надихнуть і подарують радість.<br> <br>Фестиваль організовано Ad Astra та Мережею українських митців і арт-педагогів у Фінляндії «Hei-Hei».<br> <br>Святкуймо разом!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64650/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64424",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152190,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-22T12:14:56.685872Z",
                    "last_modified_time": "2024-08-22T12:14:56.685887Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757167.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152190/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-08-22T12:14:56.661759Z",
            "last_modified_time": "2024-12-20T01:14:07.806385Z",
            "date_published": null,
            "start_time": "2024-11-16T09:00:00Z",
            "end_time": "2024-11-16T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Annantalon taidelauantai: Luonnon äänellä -soitinrakennustyöpaja",
                "sv": "Annegårdens konstlördag: Naturljud – instrumentworkshop",
                "en": "Annantalo Art Saturday: Nature's Voice instrument building workshop"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CC966B81A60C2DA5E40B4DEAC6CD2205/Annantalon_taidelauantai_Luonnon_aanella_-soitinrakennustyopaja",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CC966B81A60C2DA5E40B4DEAC6CD2205/Annegardens_konstlordag_Naturljud_instrumentworkshop_",
                "en": "http://www.annantalo.fi/en/events/event/CC966B81A60C2DA5E40B4DEAC6CD2205/Annantalo_Art_Saturday_Nature_s_Voice_instrument_building_workshop"
            },
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.",
                "sv": "På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken. Vi erbjuder non-stop workshopverksamhet som är öppen för alla, där du kan titta in en stund eller stanna längre.",
                "en": "At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.</p><p><b>Luonnon äänellä -soitinrakennustyöpaja</b><br> <br>Soitinrakennustyöpajassa tehdään omat soittimet luonnon- ja kierrätysmateriaaleista. Rakennamme muun muassa rikkakasvista huiluja ja erilaisista korsista ja heinistä suteja.   <br>Työpajan lopuksi on yhteinen musisointihetki halukkaille. <br> <br>Työpajan ohjaa taiteilija-muusikko Katri Oikarinen. <br> <br>Työpaja on osa Annantalon Äänen äärellä -näyttelyä, 28.9.2024 – su 2.2.2025. Näyttely järjestetään yhteistyössä taidejärjestö MUU ry:n kanssa. <br> <br>Osallistumiseen ei tarvita ennakkotaitoja eikä täydellistä suomen kielen taitoa. Annantalon taidelauantai on maksuton.<br>Tarjolla kuulosuojaimia ja muita aistiapuvälineitä. Lisäksi käytössä on erillinen hiljainen tila.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken. Vi erbjuder non-stop workshopverksamhet som är öppen för alla, där du kan titta in en stund eller stanna längre.</p><p><b>Naturljud – instrumentworkshop</b></p><p>I instrumentworkshoppen tillverkar vi egna instrument av naturliga och återvunna material.</p><p>Vi tillverkar bland annat flöjter av ett ogräs och borstar av olika slags gräs och ris. Workshoppen avslutas med en musikstund där alla villiga får spela med. Workshoppens språk är finska och engelska. Det går också att delta även om du inte talar dessa språk.</p><p>Handledare är konstnären och musikern Katri Oikarinen.</p><p>Workshoppen ingår i utställningen Vid ljudet på Annegården 28.9.2024–2.2.2025. Utställningen ordnas i samarbete med konstföreningen MUU ry.</p><p>Inga förkunskaper och ingen anmälan krävs för att delta. Annegårdens konstlördag är avgiftsfri.<br>Workshopparnas språk varierar, men inga kunskaper i finska krävs för att delta. Hörselskydd och andra hjälpmedel finns tillgängliga för barn med särskilda behov. Det finns också ett separat tyst utrymme.</p><p>Varmt välkomna till Annegården på lördagar!</p>",
                "en": "<p>At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer.</p><p><b>Nature's Voice instrument building workshop</b></p><p>In the instrument building workshop, you make your own musical instruments from natural and recycled materials.</p><p>We build, for example, reed flutes and various brushes from reeds and weeds. At the end of the workshop, everyone that wants to can play their new instruments together. This workshop is held in Finnish and English. You can also participate without knowing the languages in question. <br>The workshop is led by artist-musician Katri Oikarinen.</p><p>The workshop is part of the Annantalo World of Sound exhibition, which is held on 28 September 2024 – 2 February 2025.  <br>The exhibition is organized in cooperation with Art Association MUU.</p><p>No advance skills or registration is required to participate. The Annantalo Art Saturday is free of charge.<br>The language of the workshops varies, Finnish language skills are not required to participate. Hearing protection and other aids are available for children with special needs. In addition, there is a separate quiet space.</p><p>A warm welcome to Annantalo on Saturday!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64424/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64303",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152127,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-16T11:15:03.433837Z",
                    "last_modified_time": "2024-08-16T11:15:03.433856Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753861.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152127/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-16T11:15:03.405869Z",
            "last_modified_time": "2024-12-20T01:14:07.512068Z",
            "date_published": null,
            "start_time": "2024-11-15T16:00:00Z",
            "end_time": "2024-11-15T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Daniel Al Attrash | SINIMUSO – Global Club Nights / Etnosoi!",
                "sv": "Daniel Al Attrash | SINIMUSO – Global Club Nights / Etnosoi!",
                "en": "Daniel Al Attrash | SINIMUSO – Global Club Nights / Etnosoi!"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E3091ED4258D7D4BBFD0A309C606FFC0/Daniel_Al_Attrash_SINIMUSO_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E3091ED4258D7D4BBFD0A309C606FFC0/Daniel_Al_Attrash_SINIMUSO_",
                "en": "http://www.kanneltalo.fi/en/events/event/E3091ED4258D7D4BBFD0A309C606FFC0/Daniel_Al_Attrash_SINIMUSO_"
            },
            "short_description": {
                "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.",
                "sv": "Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.",
                "en": "Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Etnosoi!-festivaalin kanssa toteutetussa klubi-illassa kuullaan Daniel Al Attrashia ja Sinimusoa, joka on Etnosoi!-festivaalin artistivieras.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Aloitetaan viikonloppu yhdessä!</p><p><b>Daniel Al-Attrash</b><br>Liity Daniel Al-Attrashin ja hänen ystäviensä seuraan, kun he lähtevät musiikilliselle odysseialle Lähi-idän melodioiden ja soundien halki. Daniel Al-Attrashin esittämä konsertti vie sinut matkalle Syyrian, Turkin ja Irakin sydämeen, jossa muinaiset perinteet kietoutuvat yhteen nykyajan ilmaisujen kanssa. Uppoudu melodioiden ja rytmien rikkaaseen kirjoon, kun muusikot sukeltavat arabialaisen ja turkkilaisen musiikin lumoavaan maailmaan. Kappaleet vaihtelevat aavemaisen kauniista balladeista eläväisiin kansansävelmiin ja niistä jokainen esittelee näiden erilaisten kulttuurien ainutlaatuista viehätysvoimaa.</p><p>Daniel AlAttrash näyttää koko konsertin ajan, miten hyvin hän hallitsee tämän musiikin monimutkaiset melodiat ja pienimmätkin sävyt, ja kutsuu sinut kokemaan ne hienovaraiset vivahteet, jotka antavat itämaiselle musiikille sen erityisen viehätyksen.</p><p>Daniel Al Attrash – qanun<br>Ana Lazar – viulu<br>Ali Haitham – ud<br>Ricardo Padilla – rummut/lyömäsoittimet<br>Repkat Parhat – basso/kitara</p><p><b>SINIMUSO</b><br>SINIMUSO – tulevaisuuden naiset Bambaran kielellä – syntyi vuonna 2022 osana World Wide Women – naismuusikot rajojen ylittäjinä ja tulevaisuuden rakentajina -hanketta. SINIMUSO yhtyeessä keskitytään naisinstrumentalismiin ja erilaisiin musiikkiperinteisiin niin Malissa kuin suomalais-ugrilaisten kansojen alueella. SINIMUSO näyttää tietä tulevaisuuteen tuomalla valokeilaan seitsemän virtuoottista naismuusikkoa ja heidän yhteistyönsä. Musiikissa malilainen ja suomalainen perinne.  Kalevalamittaiset runolaulut ja vanhat kantelemelodiat kohtaavat Sahara-bluesin, groovaavat Bambara -kansan rytmit, villin tanssin ja sielukkaat peul-kansan melodiat. Laulujen aiheet liittyvät naisten elämään erilaisissa elämän vaiheissa. Yhtyeen debyyttialbumi, Nouskaa sisaret, julkaistaan lokakuussa 2024 Pohjoismaihin suuntautuvan levynjulkaisukiertueen kera.</p><p>Kadidiatou Bah, laulu (Mali)<br>Jenni Hanikka, puhaltimet, laulu (Suomi)<br>Marieta Dembélé, rummut (Mali)<br>Bintou Koita, lyömäsoittimet, laulu (Mali)<br>Marjo Smolander, kanteleet, laulu (Suomi)<br>Tima Maiga, kitara, laulu (Mali)<br>Ouassa Sogoba, bala, laulu (Mali)</p><p>Global Club Nights -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu Sibelius-Akatemian globaalin musiikin osaston, Kanneltalon ja Etnosoi!-festivaalin yhteistyönä.</p>",
                "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper.</p><p>I klubben som anordnas tillsammans med Etnosoi!-festivalen hör vi Daniel Al Attrash och SINIMUSO, som är en artistgäst på Etnosoi!-festivalen.</p><p>Gratis klubbkvällar börjar i tid, så barn är också välkomna i vuxet sällskap. Låt oss börja helgen tillsammans!</p>",
                "en": "<p>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment.</p><p>Global Club Night on November the 15th is part of Etnosoi! festival.</p><p>The free club nights start on time, so children are also welcome with an adult. Let’s start the weekend together!</p><p><b>Daniel Al-Attrash</b><br>Join Daniel Al-Attrash and friends as they embark on a musical odyssey through the melodies and sounds of the Middle East. Presented by Daniel Al-Attrash, this concert aims to take you on a journey to the heart of Syria, Turkey, and Iraq, where ancient traditions intertwine with contemporary expressions. Immerse yourself in the rich tapestry of melodies and rhythms as the musicians delve into the mesmerizing world of Arabic and Turkish music. From hauntingly beautiful ballads to lively folk tunes, each piece showcases the unique allure of these diverse cultures.</p><p>Throughout the concert, Daniel AlAttrash will showcase his mastery of the intricate melodies and microtones inherent in this music, inviting you to experience the subtle nuances that give Eastern music its distinctive charm.</p><p>Daniel Al Attrash – qanun<br>Ana Lazar – violin<br>Ali Haitham – oud<br>Ricardo Padilla – drums/percussion<br>Repkat Parhat – bass/guitar</p><p><b>SINIMUSO</b><br> SINIMUSO – meaning “Women of the Future” in the Bambara language – was born in 2022 as part of the World Wide Women – Women Musicians Crossing Borders and Building Futures project. SINIMUSO focuses on female instrumentalism and various musical traditions from Mali and the regions of the Finno-Ugric peoples. SINIMUSO shows the way to the future by spotlighting seven virtuoso female musicians and collaborations between them. The music is based on Malian and Finnish traditions. Kalevala-metre rune songs and ancient kantele melodies meet Sahara blues, the groovy rhythms of the Bambara people, wild dance and soulful melodies of the Peul (Fulani) people. The songs’ themes relate to the lives of women at various stages of life. The band’s debut album, Rise Up, Sisters, will be released in October 2024, accompanied by a Nordic tour.</p><p>Kadidiatou Bah, vocals (ML)<br>Jenni Hanikka, wind instruments, vocals<br>Marieta Dembélé, drums (ML)<br>Bintou Koita, percussion, vocals (ML)<br>Marjo Smolander, kanteles, vocals<br>Tima Maiga, guitar, vocals (ML)<br>Ouassa Sogoba, bala (balafon), vocals (ML)</p><p>The events attempt to build bridges between all music lovers and their communities.</p><p>Global Club Nights (GCN) is produced in collaboration with the Global music Department of Sibelius Academy and Cultural Centre Kanneltalo and Etnosoi! festival.</p><p>Free event</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64303/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64867",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-15T10:14:35.326226Z",
                    "last_modified_time": "2024-11-15T10:14:35.326245Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760588.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-15T10:14:35.261431Z",
            "last_modified_time": "2024-12-20T01:14:07.316108Z",
            "date_published": null,
            "start_time": "2024-11-15",
            "end_time": "2024-12-20",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Heijastuksia",
                "sv": "Heijastuksia",
                "en": "Heijastuksia"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4F29939AA891A9588E4A12AA54C2842D/Heijastuksia",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4F29939AA891A9588E4A12AA54C2842D/Heijastuksia",
                "en": "http://www.malmitalo.fi/en/events/event/4F29939AA891A9588E4A12AA54C2842D/Heijastuksia"
            },
            "short_description": {
                "fi": "Malmitalon aulassa esillä Tapanilan kylätilalla toimivan kamerakerhon valokuvaajien töitä."
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Malmitalon aulassa esillä Tapanilan kylätilalla toimivan kamerakerhon valokuvaajien töitä.</p><p>Kuvaajat: Heikki Ahola, Ilmo Kolehmainen, Kalevi Ristola.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64867/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}