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&page=173&publisher_ancestor=ahjo%3A00001
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 10852,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=174&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=172&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:63244",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "20 € /10 € / 5 €",
                        "sv": "20 € /10 € / 5 €",
                        "en": "20 € /10 € / 5 €"
                    },
                    "info_url": {
                        "fi": "https://www.esitys.fi/lippukauppa",
                        "sv": "https://www.esitys.fi/lippukauppa",
                        "en": "https://www.esitys.fi/lippukauppa"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150910,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-30T14:13:10.412139Z",
                    "last_modified_time": "2024-04-30T14:13:10.412160Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746223.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150910/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-30T14:13:10.398370Z",
            "last_modified_time": "2024-06-12T05:13:26.937324Z",
            "date_published": null,
            "start_time": "2024-06-01T14: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,
            "short_description": {
                "fi": "Suu kurottaa kohti kohtaamista, ihoa ja ravintoa. Suu voi aistia maailmaa, mutta myös vahingoittaa, hajottaa ja uhata. Koreografi Lin Da työryhmänsä kanssa tuo Stoaan vaikuttavan tanssikokemuksen, jonka teemana on suu.",
                "sv": "Munnen sträcker sig mot bemötande, hud och näring. Munnen kan förnimma världen, men den kan också skada, söndra och hota. Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.",
                "en": "Jäljellä olevaa is a dance performance about the mouth. The title Jäljellä olevaa can be translated as “remaining traces” as well as “something remaining after most things are gone”."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/1CF89C1C2DCB3E2E909B06D06FE2BA09/Jaljella_olevaa_tanssiesitys_suusta",
                "sv": "http://www.stoa.fi/sv/evenemang/event/1CF89C1C2DCB3E2E909B06D06FE2BA09/Jaljella_olevaa_dansforestallningen_om_munnen",
                "en": "http://www.stoa.fi/en/events/event/1CF89C1C2DCB3E2E909B06D06FE2BA09/Jaljella_olevaa_dance_performance_about_mouth"
            },
            "description": {
                "fi": "<p>Suu kurottaa kohti kohtaamista, ihoa ja ravintoa. Suu voi aistia maailmaa, mutta myös vahingoittaa, hajottaa ja uhata. Koreografi Lin Da työryhmänsä kanssa tuo Stoaan vaikuttavan tanssikokemuksen, jonka teemana on suu.</p><p>Suu on pulssaava konsertti, maisema ja tila, jossa kehot kytkeytyvät itseensä, toisiin ja äärettömään. Suun reflektoimisen myötä ruumiillisuus, kokemuksellisuus ja sisäinen maailma ovat laajentuneet pohdinnoiksi äärettömyydestä ja rajattomuudesta, jossa kaikki oleva on kytköksissä toisiinsa.</p><p>Jäljellä olevaa avaa tilaa suulle purkaen sen ilmaisun kahleita ja sallien ruumiin näkyväksi tulemisen. Työryhmä rentoutuu suun olemuksen äärelle – sen hetkellisyyteen ja aistillisuuteen. Katsojat kohtaavat teoksen ryhmässä, joka kutsutaan matkalle, ravitaan ja stimuloidaan.</p><p><b>Lin Da</b> (aka Lin Martikainen) on muunsukupuolinen taiteilija, koreografi ja esiintyjä, jonka työskentelyn keskiössä ovat vuorovaikutus, huolenpito, kosketus, somatiikka sekä keskeneräisyyden kanssa oleminen. Linin taiteellinen työskentely tapahtuu nykykoreografian ja nykytanssin sekä esitystaiteen ja kuvataiteiden välisyyksissä ruumiillisen olemisen herkkyyden kanssa työskennellen.</p><p>Hänen töitään on esitetty mm. Mad House Helsingissä, Musiikkitalon Camerata-salissa, UrbanApa X Ateneum -festivaalilla, Loikka-tanssielokuvafestivaalilla sekä Kölnissä Tanzfaktur’n Sommer Akademie -festivaalilla ja Amsterdamissa NEU/NOW Online -festivaalilla. Lin on valmistunut Taideyliopistosta kuvataiteen maisteriksi (2023) ja tanssitaiteen maisteriksi (2016).</p><p><b>Työryhmä:</b><br>Koreografi ja ohjaaja Lin Da<br>Esiintyjät Taru Aho, Geoffrey Erista, Amita Kilumanga ja Jyri Pirinen<br>Pukusuunnittelija Amita Kilumanga<br>Äänisuunnittelija Jyri Pirinen<br>Tuotanto Lin Da, Esitystaiteen seura ja Stoa</p><p><b>Tukijat:</b><br>Jenny ja Antti Wihurin rahasto, Niilo Helanderin säätiö, Esitystaiteen seura ja Stoa</p>",
                "sv": "<p>Munnen sträcker sig mot bemötande, hud och näring. Munnen kan förnimma världen, men den kan också skada, söndra och hota. Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.</p><p>Munnen är en pulserande konsert, ett landskap och ett utrymme där kroppar ansluter till sig själva, andra och oändligheten. I och med reflektionerna över munnen har förkroppsligandet, upplevelsen och den inre världen utvidgats till begrundande över oändlighet och gränslöshet, där allt som är sammanlänkas.</p><p>Det som återstår öppnar utrymme för munnen, bryter dess uttrycksbojor och låter kroppen bli synlig. Arbetsgruppen slappnar av inför munnens väsen – dess momentanitet och sinnlighet. Åskådarna möter verket i grupp, bjuds in på en resa, får näring och stimulans.</p><p>Lin Da (alias Lin Martikainen) är en icke-binär konstnär, koreograf och artist vars arbete fokuserar på interaktion, omsorg, beröring, somatik och att vara närvarande med det ofullbordade. Lins konstnärliga arbete utspelar sig i skärningspunkten mellan samtida koreografi och modern dans, scenkonst och bildkonst, och de arbetar med känsligheten i det förkroppsligade tillvaron.</p><p>Deras verk har presenterats på bland annat Mad House Helsinki, Camerata-salen i Musikhuset, på UrbanApa X Ateneum-festivalen, Loikka-dansfilmfestivalen, Tanzfakturs Sommer Akademie-festivalen i Köln och NEU/NOW Online-festivalen i Amsterdam. Lin har utexaminerats som magister i bildkonst (2023) och magister i danskonst (2016) från Konstuniversitetet.</p><p><b>Arbetsgrupp:</b><br>Koreograf och regissör Lin Da<br>Medverkande Taru Aho, Geoffrey Erista, Amita Kilumanga och Jyri Pirinen<br>Kostymdesigner Amita Kilumanga<br>Ljuddesigner Jyri Pirinen<br>Produktion Lin Da, Esitystaiteen seura och Stoa</p><p><b>Stödd av:</b><br>Jenny och Antti Wihuris stiftelse, Niilo Helanders stiftelse, Esitystaiteen seura och Stoa</p>",
                "en": "<p>Jäljellä olevaa is a dance performance about the mouth. The title Jäljellä olevaa can be translated as “remaining traces” as well as “something remaining after most things are gone”.</p><p>The mouth reaches to encounter, it reaches towards the skin and nourishment. The mouth can sense the world, yet also harm, disassemble and threaten. The working group puts itself on display on stage while opening to the contradictions of the mouth and questioning the definition of the stage.</p><p>The tone of the dance performance is created by the experience of the mouth – it is a pulsating concert, a landscape, and a space where bodies connect within themselves, with others and the infinite.</p><p>The audience members encounter the work as a collective who is invited on a journey to be nourished and stimulated.</p><p>Jäljellä olevaa creates space for the mouth, unshackling its expression and allowing the body to become visible. The working group relaxes into the essence of the mouth – its ephemerality and sensuality.</p><p>Choreographer Lin Da's longing to be with a limited area and theme evokes its limitless potential. Reflection on the mouth, corporeality, experientiality, and the inner world have expanded into reflections on infinity and limitlessness, where all beings are connected.</p><p>The performances take place at Stoa - make sure to secure your spot!</p><p>The performance is accompanied by an exhibition that will take place in Stoa's gallery 19.5-9.6.2024. Lin Da's Jälkiä ja kaikuja (Traces and echoes) exhibition asks whether the cavity of the mouth could be perceived as a landscape. A warm welcome to the opening of the exhibition at Stoa gallery on Saturday 18.5. at 15:00. As part of the opening program Lin Da will perform their latest work - titled Dripping sketch - solo for a mouth.</p><p>Lin Da (they/them) is a non-binary artist, choreographer and performer whose work focuses on interaction, care, touch, somatics and being with incompleteness. Lin's artistic work takes place between contemporary choreography and contemporary dance, as well as performance art and visual arts. They work with the sensitivity of the bodily being.</p><p>Lin’s works have been displayed at Mad House Helsinki, Camerata Hall at the Helsinki Music Centre, UrbanApa X Ateneum Festival, Loikka Dance Film Festival, Tanzfaktur's Sommer Akademie Festival in Cologne and NEU/NOW Online Festival in Amsterdam. Lin graduated from the Uniarts Helsinki with the Master of Fine Arts degree (2023) and the Master of Arts in Dance (2016).</p><p><b>Working group</b><br>Choreographer and director Lin Da<br>Performers Taru Aho, Geoffrey Erista, Amita Kilumanga and Jyri Pirinen<br>Costume designer Amita Kilumanga<br>Sound designer Jyri Pirinen<br>Production Lin Da<br>Co-producers Esitystaiteen seura (Live Art Society) ja Stoa<br>Supporters Jenny ja Antti Wihurin rahasto (Jenny and Antti Wihuri Foundation, Niilo Helanderin säätiö (Niilo Helander Foundation), Taiteen edistämiskeskus (Arts Promotion Finland), Helsingin kaupunki (City of Helsinki), Esitystaiteen seura (Live Art Society) and Stoa</p><p>Performances at Stoa (Turunlinnantie 1, Itäkeskus, Helsinki).</p><p>Premier:<br>Fri 31.5. at 20.30</p><p>Other performances:<br>Sat 1.6. at 17<br>Sun 2.6. at 19<br>Fri 7.6. at 19<br>Sun 9.6. at 19</p><p>Tickets: https://www.esitys.fi/lippukauppa</p><p>Age recommendation: 12+</p><p>Accessibility<br>There are two wheelchair spaces in each performance. If you would like to reserve a wheelchair spot, please contact the Live Art Society's producer Sonja Korkman (+358 44 725 77 00/info@esitys.fi) to inquire about the availability. Please let us know at the same time if you want to reserve a seat for an assistant. The seats are unnumbered.</p><p>There is very little talking in the performance. The languages are Finnish and English.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Jäljellä olevaa – tanssiesitys suusta – Lin Da & työryhmä",
                "sv": "Jäljellä olevaa – dansföreställningen om munnen – Lin Da med arbetsgrupp",
                "en": "Jäljellä olevaa – dance performance about mouth – Lin Da & working group"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63244/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63243",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "20 € /10 € / 5 €",
                        "sv": "20 € /10 € / 5 €",
                        "en": "20 € /10 € / 5 €"
                    },
                    "info_url": {
                        "fi": "https://www.esitys.fi/lippukauppa",
                        "sv": "https://www.esitys.fi/lippukauppa",
                        "en": "https://www.esitys.fi/lippukauppa"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150909,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-30T14:13:10.309943Z",
                    "last_modified_time": "2024-04-30T14:13:10.309958Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746221.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150909/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-30T14:13:10.285122Z",
            "last_modified_time": "2024-06-12T05:13:26.693649Z",
            "date_published": null,
            "start_time": "2024-05-31T17:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suu kurottaa kohti kohtaamista, ihoa ja ravintoa. Suu voi aistia maailmaa, mutta myös vahingoittaa, hajottaa ja uhata. Koreografi Lin Da työryhmänsä kanssa tuo Stoaan vaikuttavan tanssikokemuksen, jonka teemana on suu.",
                "sv": "Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.",
                "en": "Jäljellä olevaa is a dance performance about the mouth. The title Jäljellä olevaa can be translated as “remaining traces” as well as “something remaining after most things are gone”."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/3CA5D4DBA68B0C90BE50493BC4231487/Jaljella_olevaa_ENSI-ILTA",
                "sv": "http://www.stoa.fi/sv/evenemang/event/3CA5D4DBA68B0C90BE50493BC4231487/Jaljella_olevaa_PREMIAR",
                "en": "http://www.stoa.fi/en/events/event/3CA5D4DBA68B0C90BE50493BC4231487/Jaljella_olevaa_PREMIER"
            },
            "description": {
                "fi": "<p>Suu kurottaa kohti kohtaamista, ihoa ja ravintoa. Suu voi aistia maailmaa, mutta myös vahingoittaa, hajottaa ja uhata. Koreografi Lin Da työryhmänsä kanssa tuo Stoaan vaikuttavan tanssikokemuksen, jonka teemana on suu.</p><p>Suu on pulssaava konsertti, maisema ja tila, jossa kehot kytkeytyvät itseensä, toisiin ja äärettömään. Suun reflektoimisen myötä ruumiillisuus, kokemuksellisuus ja sisäinen maailma ovat laajentuneet pohdinnoiksi äärettömyydestä ja rajattomuudesta, jossa kaikki oleva on kytköksissä toisiinsa.</p><p>Jäljellä olevaa avaa tilaa suulle purkaen sen ilmaisun kahleita ja sallien ruumiin näkyväksi tulemisen. Työryhmä rentoutuu suun olemuksen äärelle – sen hetkellisyyteen ja aistillisuuteen. Katsojat kohtaavat teoksen ryhmässä, joka kutsutaan matkalle, ravitaan ja stimuloidaan.</p><p><b>Lin Da</b> (aka Lin Martikainen) on muunsukupuolinen taiteilija, koreografi ja esiintyjä, jonka työskentelyn keskiössä ovat vuorovaikutus, huolenpito, kosketus, somatiikka sekä keskeneräisyyden kanssa oleminen. Linin taiteellinen työskentely tapahtuu nykykoreografian ja nykytanssin sekä esitystaiteen ja kuvataiteiden välisyyksissä ruumiillisen olemisen herkkyyden kanssa työskennellen.</p><p>Hänen töitään on esitetty mm. Mad House Helsingissä, Musiikkitalon Camerata-salissa, UrbanApa X Ateneum -festivaalilla, Loikka-tanssielokuvafestivaalilla sekä Kölnissä Tanzfaktur’n Sommer Akademie -festivaalilla ja Amsterdamissa NEU/NOW Online -festivaalilla. Lin on valmistunut Taideyliopistosta kuvataiteen maisteriksi (2023) ja tanssitaiteen maisteriksi (2016).</p><p><b>Työryhmä:</b><br>Koreografi ja ohjaaja Lin Da<br>Esiintyjät Taru Aho, Geoffrey Erista, Amita Kilumanga ja Jyri Pirinen<br>Pukusuunnittelija Amita Kilumanga<br>Äänisuunnittelija Jyri Pirinen<br>Tuotanto Lin Da, Esitystaiteen seura ja Stoa</p><p><b>Tukijat:</b><br>Jenny ja Antti Wihurin rahasto, Niilo Helanderin säätiö, Esitystaiteen seura ja Stoa</p>",
                "sv": "<p>Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.</p><p>Munnen sträcker sig mot bemötande, hud och näring. Munnen kan förnimma världen, men den kan också skada, söndra och hota. Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.</p><p>Munnen är en pulserande konsert, ett landskap och ett utrymme där kroppar ansluter till sig själva, andra och oändligheten. I och med reflektionerna över munnen har förkroppsligandet, upplevelsen och den inre världen utvidgats till begrundande över oändlighet och gränslöshet, där allt som är sammanlänkas.</p><p>Det som återstår öppnar utrymme för munnen, bryter dess uttrycksbojor och låter kroppen bli synlig. Arbetsgruppen slappnar av inför munnens väsen – dess momentanitet och sinnlighet. Åskådarna möter verket i grupp, bjuds in på en resa, får näring och stimulans.</p><p>Lin Da (alias Lin Martikainen) är en icke-binär konstnär, koreograf och artist vars arbete fokuserar på interaktion, omsorg, beröring, somatik och att vara närvarande med det ofullbordade. Lins konstnärliga arbete utspelar sig i skärningspunkten mellan samtida koreografi och modern dans, scenkonst och bildkonst, och de arbetar med känsligheten i det förkroppsligade tillvaron.</p><p>Deras verk har presenterats på bland annat Mad House Helsinki, Camerata-salen i Musikhuset, på UrbanApa X Ateneum-festivalen, Loikka-dansfilmfestivalen, Tanzfakturs Sommer Akademie-festivalen i Köln och NEU/NOW Online-festivalen i Amsterdam. Lin har utexaminerats som magister i bildkonst (2023) och magister i danskonst (2016) från Konstuniversitetet.</p><p>Arbetsgrupp:<br>Koreograf och regissör Lin Da<br>Medverkande Taru Aho, Geoffrey Erista, Amita Kilumanga och Jyri Pirinen<br>Kostymdesigner Amita Kilumanga<br>Ljuddesigner Jyri Pirinen<br>Produktion Lin Da, Esitystaiteen seura och Stoa<br>Stödd av:</p><p>Jenny och Antti Wihuris stiftelse, Niilo Helanders stiftelse, Esitystaiteen seura och Stoa</p>",
                "en": "<p>Jäljellä olevaa is a dance performance about the mouth. The title Jäljellä olevaa can be translated as “remaining traces” as well as “something remaining after most things are gone”.</p><p>The mouth reaches to encounter, it reaches towards the skin and nourishment. The mouth can sense the world, yet also harm, disassemble and threaten. The working group puts itself on display on stage while opening to the contradictions of the mouth and questioning the definition of the stage.</p><p>The tone of the dance performance is created by the experience of the mouth – it is a pulsating concert, a landscape, and a space where bodies connect within themselves, with others and the infinite.</p><p>The audience members encounter the work as a collective who is invited on a journey to be nourished and stimulated.</p><p>Jäljellä olevaa creates space for the mouth, unshackling its expression and allowing the body to become visible. The working group relaxes into the essence of the mouth – its ephemerality and sensuality.</p><p>Choreographer Lin Da's longing to be with a limited area and theme evokes its limitless potential. Reflection on the mouth, corporeality, experientiality, and the inner world have expanded into reflections on infinity and limitlessness, where all beings are connected.</p><p>The performances take place at Stoa - make sure to secure your spot!</p><p>The performance is accompanied by an exhibition that will take place in Stoa's gallery 19.5-9.6.2024. Lin Da's Jälkiä ja kaikuja (Traces and echoes) exhibition asks whether the cavity of the mouth could be perceived as a landscape. A warm welcome to the opening of the exhibition at Stoa gallery on Saturday 18.5. at 15:00. As part of the opening program Lin Da will perform their latest work - titled Dripping sketch - solo for a mouth.</p><p>Lin Da (they/them) is a non-binary artist, choreographer and performer whose work focuses on interaction, care, touch, somatics and being with incompleteness. Lin's artistic work takes place between contemporary choreography and contemporary dance, as well as performance art and visual arts. They work with the sensitivity of the bodily being. Lin’s works have been displayed at Mad House Helsinki, Camerata Hall at the Helsinki Music Centre, UrbanApa X Ateneum Festival, Loikka Dance Film Festival, Tanzfaktur's Sommer Akademie Festival in Cologne and NEU/NOW Online Festival in Amsterdam. Lin graduated from the Uniarts Helsinki with the Master of Fine Arts degree (2023) and the Master of Arts in Dance (2016).</p><p>Working group<br>Choreographer and director Lin Da<br>Performers Taru Aho, Geoffrey Erista, Amita Kilumanga and Jyri Pirinen<br>Costume designer Amita Kilumanga<br>Sound designer Jyri Pirinen<br>Production Lin Da<br>Co-producers Esitystaiteen seura (Live Art Society) ja Stoa<br>Supporters Jenny ja Antti Wihurin rahasto (Jenny and Antti Wihuri Foundation, Niilo Helanderin säätiö (Niilo Helander Foundation), Taiteen edistämiskeskus (Arts Promotion Finland), Helsingin kaupunki (City of Helsinki), Esitystaiteen seura (Live Art Society) and Stoa</p><p>Performances at Stoa (Turunlinnantie 1, Itäkeskus, Helsinki).</p><p>Premier:<br>Fri 31.5. at 20.30</p><p>Other performances:<br>Sat 1.6. at 17<br>Sun 2.6. at 19<br>Fri 7.6. at 19<br>Sun 9.6. at 19</p><p>Tickets: https://www.esitys.fi/lippukauppa</p><p>Age recommendation: 12+</p><p>Accessibility<br>There are two wheelchair spaces in each performance. If you would like to reserve a wheelchair spot, please contact the Live Art Society's producer Sonja Korkman (+358 44 725 77 00/info@esitys.fi) to inquire about the availability. Please let us know at the same time if you want to reserve a seat for an assistant. The seats are unnumbered.</p><p>There is very little talking in the performance. The languages are Finnish and English. More accessibility information will be added soon.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Jäljellä olevaa – ENSI-ILTA – Lin Da & työryhmä",
                "sv": "Jäljellä olevaa – PREMIÄR",
                "en": "Jäljellä olevaa – PREMIER"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63243/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63230",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?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:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 131098,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-12T10:13:52.738071Z",
                    "last_modified_time": "2024-04-12T10:13:52.738087Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746166.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/131098/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-12T10:13:52.688613Z",
            "last_modified_time": "2024-06-12T05:13:26.412866Z",
            "date_published": null,
            "start_time": "2024-05-31",
            "end_time": "2024-06-27",
            "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,
            "short_description": {
                "fi": "Lumottu puutarha (Enchanted Garden) on kokemuksellinen ja monialainen kokonaisuus taiteilija Jessica Alexandra Northin teoksia käsitöistä ja keramiikasta maalauksiin, valokuviin ja installaatioon.",
                "sv": "Den förtrollade trädgården (Enchanted Garden) är en erfarenhetsbaserad och multidisciplinär helhet av konstnären Jessica Alexandra Norths verk från handarbete till keramik, målningar, fotografier och en installation.",
                "en": "Lumottu puutarha (Enchanted Garden) is an experiential and multidisciplinary showcase of artist Jessica Alexandra North’s works, from handcrafts and ceramics to painting, photographs and installations."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/92E8EA98870A7519D319E1F46BA53961/Jessica_Alexandra_North",
                "sv": "http://www.caisa.fi/sv/evenemang/event/92E8EA98870A7519D319E1F46BA53961/Jessica_Alexandra_North",
                "en": "http://www.caisa.fi/en/events/event/92E8EA98870A7519D319E1F46BA53961/Jessica_Alexandra_North"
            },
            "description": {
                "fi": "<p>Lumottu puutarha (Enchanted Garden) on kokemuksellinen ja monialainen kokonaisuus taiteilija Jessica Alexandra Northin teoksia käsitöistä ja keramiikasta maalauksiin, valokuviin ja installaatioon.</p><p>Näyttelyä ovat inspiroineet kesyttömät, rönsyilevät puutarhat, päivien ja öiden rajapinnat, suomalaiset metsämyytit sekä luonnon- ja kierrätysmateriaalien kanssa työskentely.</p><p>Näyttely etsii intuition, tunteiden sekä aistien sijaa rationaalisten periaatteiden synnyttämässä sosiaalisessa todellisuudessa, jossa mielikuvitus, luovuus ja spontaanius uhkaavat hiipua, ja yhteiskunnalliset prosessit suunnataan kohti taloudellisia tavoitteita.</p><p>Lumottu puutarha etsii paikkaa tuon todellisuuden ulkopuolelta, ja siksi lumoutumisessa onkin kumouksellinen mahdollisuus yhdistää se, minkä kapitalismi on erottanut: suhteemme luontoon, muihin ihmisiin ja kehoihimme.</p><p>Näyttelytilassa kuullaan äänitaiteilija Tiikka Draman toteuttama äänimaisema, ja teosten luona on tilaa ja mahdollisuuksia istahtaa omanlaisensa luontokokemuksen äärelle. Osassa teoksista käytetyt kasviväriliidut, ja tekstiilien ja lankojen värjäykset on toteuttanut kasvivärjäri Enni Heinä.</p>",
                "sv": "<p>Den förtrollade trädgården (Enchanted Garden) är en erfarenhetsbaserad och multidisciplinär helhet av konstnären Jessica Alexandra Norths verk från handarbete till keramik, målningar, fotografier och en installation.</p><p>Utställningen har inspirerats av vilda, slingrande trädgårdar, gränssnitt mellan dagar och nätter, finländska skogsmyter och arbete med natur- och återvinningsmaterial.</p><p>Utställningen söker platsen för intuition, emotioner och sinnen i en social verklighet som har uppkommit på basis av rationella principer och där fantasin, kreativiteten och spontaniteten hotar att tyna bort, då de samhälleliga processerna riktas mot ekonomiska mål. Den förtrollade trädgården letar efter en plats utanför denna verklighet, och därför har förtrollningen en omvälvande möjlighet att återkoppla det som kapitalismen har avskiljt: vårt förhållande till naturen, andra människor och våra kroppar.</p><p>I utställningsutrymmet hör vi ett ljudlandskap som har genomförts av ljudkonstnär Drama Tiika, och det finns utrymme och möjlighet att sätta sig ner vid verken för en personlig naturupplevelse. En del av verken har genomförts med växtfärgskritor, och textilierna och trådarna har färgats av växtfärgaren Enni Heinä.</p>",
                "en": "<p>Lumottu puutarha (Enchanted Garden) is an experiential and multidisciplinary showcase of artist Jessica Alexandra North’s works, from handcrafts and ceramics to painting, photographs and installations.</p><p>This exhibition was inspired by wild and unkempt gardens, the boundary between night and day, Finnish forest myths, as well as working with natural and recycled materials.</p><p>It is an attempt to find the place for intuition, feelings and the senses in a social reality formed by rational principles, in which imagination, creativity and spontaneity are at risk of being left by the wayside, with all of society’s processes in service of financial targets. Enchanted Garden tries to find a place outside of reality, which is why enchantment is a revolutionary opportunity to reconnect us with the things capitalism has taken away: our relationship with nature, other people, and our bodies.</p><p>The exhibition will feature a soundscape by audio artist Drama Tiikka, and each piece has room to sit and relax in your type of nature experience. The plant-based crayons used in some of the pieces as well as the textile and thread dyeing are the handiwork of Enni Heinä.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Jessica Alexandra North – Lumottu puutarha / Enchanted Garden",
                "sv": "Jessica Alexandra North – Den förtrollade trädgården",
                "en": "Jessica Alexandra North – Enchanted Garden"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63230/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63563",
            "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/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150952,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-03T12:13:02.845325Z",
                    "last_modified_time": "2024-05-03T12:13:02.845341Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749059.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150952/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-03T12:13:02.820074Z",
            "last_modified_time": "2024-06-12T05:13:26.199265Z",
            "date_published": null,
            "start_time": "2024-05-31",
            "end_time": "2024-06-13",
            "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,
            "short_description": {
                "fi": "Aalto-yliopiston arkkitehtuurin maisterivaiheen opiskelijoille annettiin tehtäväksi ideoida minkälainen Malmin hangaarin eli lentokonehallin tulevaisuus voisi olla.",
                "sv": "Aalto-universitetets magisterstuderande i arkitektur fick som uppgift att komma med idéer till hurudan framtiden för Malms flyghangar skulle kunna vara.",
                "en": "Aalto university Masters students in Architecture were given the task to come up with concepts for future use of the Malmi's hangar."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DCF7AC323BD07DCA060998722695343F/Tulevaisuuden_hangaari",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DCF7AC323BD07DCA060998722695343F/Framtidens_flyghangar",
                "en": "http://www.malmitalo.fi/en/events/event/DCF7AC323BD07DCA060998722695343F/The_Future_Hangar"
            },
            "description": {
                "fi": "<p>Aalto-yliopiston arkkitehtuurin maisterivaiheen opiskelijoille annettiin tehtäväksi ideoida minkälainen Malmin hangaarin eli lentokonehallin tulevaisuus voisi olla.</p><p>Malminkentän alueesta suunnitellaan koko koillista Helsinkiä yhdistävä ja sen identiteettiä vahvistava omaleimainen ja monimuotoinen alue noin 25 000 asukkaalle.</p><p>Vaikka alue muuttuu, vanhat lentoaseman rakennukset, terminaali ja hangaari, tulevat säilymään. Rakennukset on suojeltu asemakaavalla, jonka tavoitteena on mahdollistaa niiden monipuolinen käyttö. Mutta mitä kaikkea monipuolinen käyttö voisi olla?</p><p>Näyttely koostuu opiskelijoiden töistä ja tarkoituksena on herättää pohtimaan hangaarin käyttömahdollisuuksia. Kyse on ReUse-nimisestä kurssista, jossa aiheena on aikaisemmin ollut mm. Pasilan linkkitorni, Hernesaaren viljasiilot ja Karjaan vanha veturitalli.</p>",
                "sv": "<p>Aalto-universitetets magisterstuderande i arkitektur fick som uppgift att komma med idéer till hurudan framtiden för Malms flyghangar skulle kunna vara.</p><p>Malms flygplats planeras bli ett personligt och mångfaldigt område för cirka 25 000 invånare som sammanför hela nordöstra Helsingfors och stärker dess identitet.</p><p>Trots att området förändras bevaras flygplatsens gamla byggnader, terminalen och flyghangaren. Byggnaderna är skyddade med en detaljplan, vars mål är att möjliggöra en mångsidig användning av dem. Men vad skulle en mångsidig användning kunna vara?</p><p>Utställningen består av de studerandes arbeten och avsikten är att väcka upp tankar om användningsmöjligheterna för flyghangaren. Det är fråga om en kurs med namnet ReUse, som tidigare har behandlat bland annat länktornet i Böle, spannmålssiloerna på Ärtholmen och det gamla lokomotivstallet i Karis.</p>",
                "en": "<p>Aalto university Masters students in Architecture were given the task to come up with concepts for future use of the Malmi's hangar.</p><p>Malminkenttä is a new area planned for 25 000 inhabitants and the most significant new construction in Malmi. The area is designed as a diverse high quality urban area that connects the entire north-eastern Helsinki.</p><p>The existing airport buildings, the old terminal and hangar, are protected by the detail plan and will be renovated. The detail plan allows the buildings to be used for a variety of purposes - but what could it be?</p><p>Aalto university Masters students in Architecture were given the task to come up with concepts for future use of the hangar. This as part of a “Reuse-course”, where previous subjects for design have been Pasila link tower, Hernesaari grain silos and Karjaa old locomotive port. The exhibition displays the concept ideas of the students. The aim of the exhibition is to spark discussion about what the future of the hangar could be.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Tulevaisuuden hangaari",
                "sv": "Framtidens flyghangar",
                "en": "The Future Hangar"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63563/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63314",
            "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: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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 82540,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-04T10:13:47.556262Z",
                    "last_modified_time": "2024-04-04T10:13:47.556276Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_747732.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/82540/?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-04-04T10:13:47.534612Z",
            "last_modified_time": "2024-06-12T05:13:21.794778Z",
            "date_published": null,
            "start_time": "2024-05-18T09:00:00Z",
            "end_time": "2024-05-18T12: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,
            "short_description": {
                "fi": "Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa.",
                "sv": "Välkommen till Annegården under Barnkulturens festvecka, då vi firar litteratur, läsning och lyssnande! Jubileumsveckans kärna är poesirummet Kirsi Kunnas 100 år, med program under hela veckan.",
                "en": "Welcome to Annantalo during the Children's Culture Week, a celebration of literature, reading and listening! At the heart of the week is the Kirsi Kunnas 100 Years Poetry Room, with a programme of events throughout the week."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6005AB95CEA94AF2CA6B1288E27D59BC/IKI-TIK_TIKI-TAK_-tapahtumapaiva",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/6005AB95CEA94AF2CA6B1288E27D59BC/IKI-TIK_TIKI-TAK_",
                "en": "http://www.annantalo.fi/en/events/event/6005AB95CEA94AF2CA6B1288E27D59BC/IKI-TIK_TIKI-TAK_"
            },
            "description": {
                "fi": "<p>Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa.</p><p>Lauantain IKI-TIK TIKI-TAK -tapahtumapäivä huipentaa Lastenkulttuurin juhlaviikon Annantalolla.</p><p>Ohjelmassa on Kirsi Kunnaksen saduista ja runoista inspiroituneita työpajoja sekä maistiainen Tanssiteatteri Glims & Glomsin Tii-tii-tiitiäinen -tanssillisesta runoesityksestä.</p><p>Margaret Wise Brownin teos Maalarikissat (suom. Kirsi Kunnas) nähdään Teatteri ILMI Ö.:n esityksenä Annantalon juhlasalissa.</p><p>Eteläisessä lasigalleriassa avautuu Christelle Masin Superluonto-näyttely, jossa luonto kohtaa teknologian. Avajaiset klo 13.30 alkaen. Lisää tietoa näyttelystä <a href=\"https://www.annantalo.fi/fi/tapahtumat/event/D6A55AB6E545C84C2E79F2B7D80E7CB2/Christelle_Mas__Superluonto\"><b>täältä</b></a>.</p><p><b>TYÖPAJAT</b></p><p>Klo 12-15<br><b>VILLE JA VALLE</b><br>Työpajassa rakennetaan mekaaninen lelu Kirsi Kunnaksen ja Annantalon oppilasnäyttely Liikkuvan laboratorion hengessä.<br>Ohjaajina Annantalon taidekasvattajat Noomi Ljungdell ja Heli Niska<br>Ikäsuositus: Alle 8v. aikuisen kanssa.<br>Non-stop-työpaja</p><p>Klo 12-15<br><b>PIIRESPAARESMAAN KUNINGAS</b> <br>Tule auttamaan Piirespaaresmaan kuningasta pukeutumaan. Hän ei itse oikein tiedä mitä laittaa päälleen. Piirrämme hänestä kuvia ja jatkamme piirroksia miettien missä kuningas asuu ja keitä hänellä on seuranaan.<br>Vetäjinä Annantalon taidekasvattajat Simo Koivunen ja Anne Rossi-Horto<br>Kohderyhmä 5+<br>Non-stop-työpaja</p><p>Klo 12-15<br><b>RASIAN SISÄSSÄ RASIAN SISÄSSÄ RASIA JA SIINÄ ASIA. MIKÄ? KOKO RASIA </b><br>Liikkuvaa lorurasiaa kuljettavat Elinoora ja Fassiloora. Tule kuulemaan Kirsi Kunnaksen loruja ja runoja yhdessä heidän kanssaan.<br>Ohjaajat: Sanna Kuusisto, Sari Tupamäki<br>Non-stop</p><p>Klo 12-15<br><b>YSTÄVÄ MULLE -työpaja</b><br>Luo omia satuhahmoja leimasinpainotekniikalla. Työpajassa hahmot painetaan kangaskassiin, jonka voit ottaa kotiin. <br>Ohjaaja: Piia Nieminen<br>Ikäsuositus alle 8v. aikuisen seurassa.</p><p>Non-stop</p><p><b>ESITYKSET</b></p><p>Klo 12 ja 13.30<br><b>Teatteri ILMI Ö.: Maalarikissat</b><br>Maalarikissat on kuvataidetta ja teatteria yhdistävä esitys yli 2–vuotiaille lapsille. Musiikkiin, visuaalisuuteen ja fyysiseen teatteriin painottuva esitys sopii monenkielisille yleisöille.</p><p>Ohjaus: Merja Pennanen<br>Esiintyjät: Sanna Kärkkäinen ja Merja Pennanen<br>Videoprojisointi ja musiikki: Nikolai Tiitinen<br>Lapsikertojat ääninauhalla: Irinja Klevering, Kerttu Pulkkinen, Otso Tola<br>Skenografi: Jonna Kuittinen<br>Koreografi: Lindon Shimizu<br>Esityksen kesto: 30 min.</p><p>HUOM! Maalarikissat-esityksiin ilmoittaudutaan ennakkoon. Ilmoittautuminen aukeaa Maalarikissojen tapahtumasivuilla 18.4.2024 klo 9.</p><p><b><a href= \"https://www.annantalo.fi/fi/tapahtumat/event/A4C73CCC324F4F429218A56295C15893/Teatteri_ILMI____Maalarikissat\"> Ilmoittaudu klo 12 Maalarikissat-esitykseen täältä </a></b></p><p><b><a href= \"https://www.annantalo.fi/fi/tapahtumat/event/CB053EDEA848765C4670B85AF4EDBF34/Teatteri_ILMI____Maalarikissat\"> Ilmoittaudu klo 13.30 Maalarikissat-esitykseen täältä </a></b></p><p>Klo 13-13.10 ja klo 14-14.10<br> <b>Glims & Gloms: Tii-tii-tiitiäinen</b><br>Tii-Tii-Tiitiäinen on Kirsi Kunnaksen runoihin perustuva koko perheen esitys, josta nähdään Annantalolla maistiainen.<br>Esityksessä seikkailevat Kunnaksen tuotannosta useille sukupolville tutut hahmot, muun muassa Tiitiäinen, Haitula ja Tättähäärä.<br>Annantalon 2.kerros, pohjoinen lasipääty<br>Ei ennakkoilmoittautumista.</p>",
                "sv": "<p>Välkommen till Annegården under Barnkulturens festvecka, då vi firar litteratur, läsning och lyssnande! Jubileumsveckans kärna är poesirummet Kirsi Kunnas 100 år, med program under hela veckan.</p><p>På lördagen kulminerar Barnkulturens festvecka med evenemangsdagen IKI-TIK TIKI-TAK i Annegården.<br>Programmet omfattar workshoppar som inspireras av Kirsi Kunnas sagor och dikter och ett smakprov av dansteater Glims & Gloms dansanta diktuppvisning Tii-tii-tiitiäinen. Margaret Wise Browns verk Målarkatterna (översättning till finska Kirsi Kunnas) förevisas av Teatteri ILMI Ö i Annegårdens festsal. I det södra glasgalleriet öppnas Christelle Mas utställning Supernatur, där naturen möter tekniken.</p><p><b>Workshoppar</b></p><p>Kl. 12–15<br><b>VILLE JA VALLE</b><br>I workshoppen bygger vi en mekanisk leksak i anda med Kirsi Kunnas och Annegårdens elevutställning Rörliga laboratoriet.</p><p>Kl. 12–15<br><b>KUNGEN I PIIRESPAARESMAA</b> <br>Kom och hjälp kungen i Piirespaaresmaa att klä sig. Han vet inte riktigt vad han ska ha på sig. Vi ritar teckningar av honom och fortsätter teckningarna genom att fundera på var kungen bor och vem han har sällskap av.</p><p>Kl. 12–15<br><b>EN ASK I EN ASK I EN ASK OCH I DEN EN SAK. VAD? HELA ASKEN </b> <br>Elinoora och Fassiloora flyttar på den rörliga rimasken. Kom och lyssna på Kirsi Kunnas ramsor och dikter tillsammans med dem.</p><p>Kl. 12–15<br><b>Workshop EN VÄN TILL MIG</b><br>Skapa dina egna sagofigurer med stämpeltryck.</p><p><b>FÖRESTÄLLNING</b></p><p>Kl 12 och 13.30<br><b>Teater ILMI Ö.: MålarKatter</b><br>En färgglad föreställning för barn över 2 år. Med fokus på musik, bildkonst och fysisk teater passar föreställningen för flerspråkiga publiker.</p><p>\"Dörren är blå, och genom den målade dörren kommer du till målarkatternas värld.\"</p><p>Regi: Merja Pennanen<br>Artister: Sanna Kärkkäinen och Merja Pennanen<br>Videoprojicering och musik: Nikolai Tiitinen<br>Barnberättare på ljudband: Irinja Klevering, Kerttu Pulkkinen, Otso Tola<br>Scenografi: Jonna Kuittinen<br>Koreografi: Lindon Shimizu<br>Föreställningens längd: 30 min.<br> <br>Registreringen öppnar 18.4.2024 kl. 9.00</p><p><b><a href= \"https://www.annantalo.fi/fi/tapahtumat/event/A4C73CCC324F4F429218A56295C15893/Teatteri_ILMI____Maalarikissat\"> Anmäl dig till evenemang kl. 12.00 här </a></b></p><p><b><a href= \"https://www.annantalo.fi/fi/tapahtumat/event/CB053EDEA848765C4670B85AF4EDBF34/Teatteri_ILMI____Maalarikissat\"> Anmäl dig till evenemang kl. 13.30 här </a></b></p><p>kl 13-13.10 och 14-14.10<br><b>Dansteater GLIMS & GLOMS: Tii-tii-tiitiäinen</b><br>Tii-tii-tiitiäinen är en föreställning för hela familjen som grundar sig på Kirsi Kunnas dikter. På Annegården får vi se ett smakprov av föreställningen.<br>I föreställningen är figurerna från Kirsi Kunnas produktion som är välbekanta för flera generationer, exempelvis Tiitiäinen och Hattula, ute på äventyr.</p>",
                "en": "<p>Welcome to Annantalo during the Children's Culture Week, a celebration of literature, reading and listening! At the heart of the week is the Kirsi Kunnas 100 Years Poetry Room, with a programme of events throughout the week.</p><p>Saturday's IKI-TIK TIKI-TAK event day is the climax of the Children's Culture Week at Annantalo.<br>The programme includes workshops inspired by Kirsi Kunnas' fairy tales and poems as well as a piece of the Glims & Gloms Dance Theatre’s Tii-tii-tiitiäinen poetry show. The ILMI Ö theatre group will be putting on a performance of Margaret Wise Brown's The Color Kittens (Finnish translation by Kirsi Kunnas) at Annantalo’s banquet hall. The southern glass gallery will feature Christelle Mas’ Supernature exhibition, where nature meets technology.</p><p><b>WORKSHOPS</b></p><p>12 noon – 3 pm<br>VILLE AND VALLE<br>In this workshop, participants build mechanical toys in the spirit of Kirsi Kunnas and the Annantalo Moving Laboratory student exhibition.</p><p>12 noon – 3 pm<br>THE KING OF PIIRESPAARESMAA<br>Come and help the king of Piirespaaresmaa to get dressed. He doesn't really know what to wear. Draw pictures of him and add to the drawings, wondering where the king lives and who is with him.</p><p>12 noon – 3 pm<br>RASIAN SISÄSSÄ RASIAN SISÄSSÄ RASIA JA SIINÄ ASIA. MIKÄ? KOKO RASIA <br>Elinoora and Fassiloora carry around the mobile box of poems. Come and listen to Kirsi Kunnas' rhymes and poems together with them.</p><p>12 noon – 3 pm<br>A FRIEND FOR ME workshop<br>Create your own fairy tale characters with stamp printing. In the workshop, the characters will be printed on a cloth bag for you to take home.</p><p><b>PERFORMANCES</b></p><p><b>Theater ILMIÖ.: Painter Cats</b><br>Painter Cats is a performance combining visual arts and theater for children over 2 years old. With a focus on music, visual arts, and physical theater, the performance is suitable for multilingual audiences.</p><p>Direction: Merja Pennanen<br>Performers: Sanna Kärkkäinen and Merja Pennanen<br>Video projection and music: Nikolai Tiitinen<br>Child narrators on audio tape: Irinja Klevering, Kerttu Pulkkinen, Otso Tola<br>Set designer: Jonna Kuittinen<br>Choreographer: Lindon Shimizu<br>Duration of the performance: 30 min.<br> <br>Registration will open on 18 Ap</p><p><b><a href= \"https://www.annantalo.fi/fi/tapahtumat/event/A4C73CCC324F4F429218A56295C15893/Teatteri_ILMI____Maalarikissat\"> Register for events at 12.00 here </a></b></p><p><b><a href= \"https://www.annantalo.fi/fi/tapahtumat/event/CB053EDEA848765C4670B85AF4EDBF34/Teatteri_ILMI____Maalarikissat\"> Register for events at 13.30 here </a></b></p><p>at 13- 13.10 and 14-14.10<br>GLIMS & GLOMS Dance Theatre: Tii-Tii-Tiitiäinen<br>Tii-Tii-Tiitiäinen is a performance for the whole family based on the poems of Kirsi Kunnas, which is being previewed at Annantalo.<br>The performance features generational favourite characters from Kunnas' works, including Tiitiäinen and Haitula.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "IKI-TIK TIKI-TAK -tapahtumapäivä – Lastenkulttuurin juhlaviikko",
                "sv": "IKI-TIK TIKI-TAK – Barnkultus festvecka",
                "en": "IKI-TIK TIKI-TAK – Children´s Culture Week"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63314/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61200",
            "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: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:668/?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:p1377/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7537,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-02T14:13:18.598836Z",
                    "last_modified_time": "2024-02-06T13:23:41.996789Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739055.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7537/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-02T14:13:18.579107Z",
            "last_modified_time": "2024-06-12T05:13:21.673558Z",
            "date_published": null,
            "start_time": "2024-05-18T07:00:00Z",
            "end_time": "2024-08-24T13: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,
            "short_description": {
                "fi": "Näyttelyssä luonto kohtaa teknologian: Voiko hyönteisellä olla robotin jalat? Tai jonkin koneen kädet? Miltä tulevaisuuden ötökät näyttävät?",
                "sv": "I utställningen möts naturen och tekniken: Kan en insekt ha robotben? Kan en maskin ha armar? Hur ser framtidens insekter ut?",
                "en": "In the exhibition nature meets technology: Can an insect have the legs of a robot? Or mechanical arms? What will insects look like in the future?"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D6A55AB6E545C84C2E79F2B7D80E7CB2/Christelle_Mas_Superluonto",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D6A55AB6E545C84C2E79F2B7D80E7CB2/Christelle_Mas_Supernatur",
                "en": "http://www.annantalo.fi/en/events/event/D6A55AB6E545C84C2E79F2B7D80E7CB2/Christelle_Mas_Supernature"
            },
            "description": {
                "fi": "<p>Näyttelyssä luonto kohtaa teknologian: Voiko hyönteisellä olla robotin jalat? Tai jonkin koneen kädet? Miltä tulevaisuuden ötökät näyttävät?</p><p>Kuvataiteilija Christelle Masin Superluonto-näyttelyssä uppoudutaan uudenlaiseen maailmaan, jossa pohditaan taideteoksien avulla miten muuttuva ilmasto ja teknologian kehitys vaikuttavat luonnon monimuotoisuuteen.</p><p>Evoluutio vie meitä jatkuvasti eteenpäin, mutta se ei aina pysy ilmaston nopean muuttumisen mukana. Jotkin lajit selviytyvät, toiset eivät. Näyttelyssä mietitään muun muassa sitä, mitä kaikkea hyönteiset tarvitsevat selvitäkseen ilmastonmuutoksesta, ja kuinka teknologian kehittyminen voi näkyä luonnossa tulevaisuudessa.</p><p>Voisivatko näyttelyn teokset kuvata jopa täysin uudenlaisia lajeja?</p><p>Näyttelyn teokset on toteutettu kollaasitekniikalla, joissa yhdistellään videoita ja valokuvia erilaisista koneista, roboteista sekä mikroskoopilla kuvatuista hyönteisistä ja käärmeistä. Lopputuloksena on eri muotoisia, eri värisiä ja mielikuvitusta kutkuttavia taideteoksia, jotka muistuttavat jostain entuudestaan tutusta asiasta luonnossa.</p><p>Ihminen-eläin-suhde on monimutkainen, monisäikeinen ja muutoksessa, mutta ehkä se myös ohjaa suhtautumistamme tulevaisuuden olioihin.</p><p><b>Näyttelyn avajaiset la 18.5. klo 13.30 alkaen - Tervetuloa!</b><br>Avajaiset ovat IKI-TIK TIKI-TAK -tapahtumapäivän yhteydessä - päivän tarkempi ohjelma löytyy <a href=\"https://www.annantalo.fi/fi/tapahtumat/event/6005AB95CEA94AF2CA6B1288E27D59BC/IKI-TIK_TIKI-TAK_-tapahtumap_iv_\"><b>täältä</b></a>.</p><p><b>Christelle Mas</b> (s. 1984) on ranskalainen taiteilija, joka asuu ja työskentelee parhaillaan Oulussa. Mas työskentelee monimuotoisesti valokuvamateriaalin kanssa käyttäen sitä esimerkiksi kollaasissa ja installaatiossa. Hän on tutkinut valokuvausta mediana ja teknologiana sekä totuuden käsitettä suhteessa valokuvaan. Hän luo usein kiehtovia maailmoja, joissa tiede ja mytologia sekä luonnollinen ja keinotekoinen kohtaavat.</p><p>Näyttely on valittu ohjelmistoon avoimen haun kautta. Annantalon ensimmäiseen avoimeen hakuun keväällä 2023 tuli yli 120 hakemusta. Niiden joukosta lapsista ja henkilökunnasta koostuva raati valitsi näyttelykokonaisuuden eteläpäädyn galleriaan.</p><p>Näyttelyä on tukenut Oulun kaupunki sekä Ranskan instituutti Helsingissä.</p>",
                "sv": "<p>I utställningen möts naturen och tekniken: Kan en insekt ha robotben? Kan en maskin ha armar? Hur ser framtidens insekter ut?</p><p>Bildkonstnären Christelle Mas utställning Supernatur fördjupar sig i en ny värld där man med hjälp av konstverk funderar över hur det föränderliga klimatet och den tekniska utvecklingen påverkar den biologiska mångfalden.</p><p><b>Christelle Mas</b> (född 1984) är en fransk konstnär som för närvarande bor och arbetar i Uleåborg. Mas arbetar mångsidigt med fotografiskt material exempelvis i collage och installationer.</p><p>Utställningen har valts till repertoaren genom öppen ansökan. Över 120 ansökningar inkom till Annegårdens första öppna ansökan våren 2023. Bland dessa valde en jury bestående av barn och personal en utställningshelhet till galleriet i södra gaveln.</p>",
                "en": "<p>In the exhibition nature meets technology: Can an insect have the legs of a robot? Or mechanical arms? What will insects look like in the future?</p><p>Visual artist Christelle Mas’s Supernature exhibition immerses the visitor into a new kind of world where artworks are used to reflect on how the changing climate and technological development affect biodiversity.</p><p><b>Christelle Mas</b> (born 1984) is a French artist who currently lives and works in Oulu. Mas uses photographs in a variety of ways in collages and installations, for example.</p><p>The exhibition was selected through an open call procedure. More than 120 applications were submitted for the first open call for Annantalo in the spring of 2023. A jury consisting of children and staff selected the artworks for the exhibition at the southern end of the building.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Christelle Mas: Superluonto",
                "sv": "Christelle Mas: Supernatur",
                "en": "Christelle Mas: Supernature"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61200/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63360",
            "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:55/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151099,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-13T09:13:26.782009Z",
                    "last_modified_time": "2024-05-13T09:13:26.782024Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749215.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-13T09:13:26.724129Z",
            "last_modified_time": "2024-06-12T05:13:20.472317Z",
            "date_published": null,
            "start_time": "2024-05-16",
            "end_time": "2024-06-08",
            "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,
            "short_description": {
                "fi": "Taiteilija Tim Smith on viimeisen viidentoista vuoden aikana dokumentoinut ja luonut suhteita hutteriittiyhteisöihin Pohjois-Amerikassa.",
                "en": "Beginning with a chance encounter, Tim Smith has been documenting and building relationships with Hutterite communities in North America over the past fifteen years."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/14A3150D1BD6D9738B13F4D48FB6EE90/Tim_Smith_-_In_The_World_But_Not_Of_It",
                "en": "http://www.malmitalo.fi/en/events/event/14A3150D1BD6D9738B13F4D48FB6EE90/Tim_Smith_-_In_The_World_But_Not_Of_It"
            },
            "description": {
                "fi": "<p>Taiteilija Tim Smith on viimeisen viidentoista vuoden aikana dokumentoinut ja luonut suhteita hutteriittiyhteisöihin Pohjois-Amerikassa.</p><p>Hutteriitit ovat anabaptistinen ryhmä, jonka juuret ulottuvat Itävallan Tirolin jälkeiseen 16. vuosisadan radikaaliin reformaatioon. Hutteriitit elävät yhteisöllisesti asutuilla tiloilla läpi läntisen Kanadan ja Luoteis-Yhdysvaltojen. Heidän kulttuurinsa säilyy valtavirrasta tarkoituksellisen eristäytymisen ja taloudellisen omavaraisuuden takia.</p><p>Hutteriitit ovat tällä hetkellä yhdellä menestyksekkäimmistä jaksoistaan noin 500 vuoden historiansa aikana. Ulkoisten uhkien ulottumattomilla he ovat menestyneet ja heidän väestönsä on kasvanut lukumäärältään noin 50 000 yksilöön. Jäsenet saavat yhteisöltään tukea läpi elämän, ja he kokevat vähemmän yksinäisyyden ja eristäytyneisyyden tunteita kuin nykymaailmassa yleisesti.</p><p>Perhe-elämän, sosiaalisen elämän ja hengellisen osallistumisen tärkeys sekä määritelty elämän tarkoitus tarkoittavat, että hutteriittiyhteisöt täyttävät monia edellytyksiä tulla pidetyksi alueina, joilla terveys, onnellisuus ja eliniänodote ovat keskimääräistä korkeammat.</p><p>Hutteriitteja usein romantisoidaan tai halvennetaan yksinkertaisina, takapajuisina, viehättävinä ja/tai vanhanaikaisina. Totuus on, että heidän yhteiskuntansa on hyvin monimutkainen.</p><p>Smith käyttää valokuvia dokumentoimaan hutteriittielämän laajuutta ja monimutkaisuutta sekä osoittaakseen, kuinka yhteisöt navigoivat tarvetta reagoida ympäröivän maailman tuomiin ulkoisiin paineisiin ja samalla säilyttävät keskeiset perinteet uskonsa keskiössä.</p><p>Smithin valokuvat tarjoavat nykyaikaisen ja monisyisen näkemyksen hutteriittiyhteisöistä. Valokuvat syventävät jokapäiväisten monimutkaisten päätösten ytimeen ja tarjoavat vilauksen hutteriittielämän jatkuvasti neuvotelluista puolista.</p><p>Monet kuvat keskittyvät nuorisokulttuuriin yhteisöissä, missä kapinan ilmaukset, perinteiden kunnioitus ja tiukkojen sukupuoliroolien ylläpito luovat tunteen kaksinaisesta vastavirrasta – samanaikaisesti ulkomaailman paineita ja perinnettä vastaan.</p><p>Omistettuaan neljätoista vuotta dokumentaatiolle, Smithin ymmärrys hutteriittiyhteisöistä luo mahdollisuuden näyttää heidän monimutkaisuuttaan tavalla, joka vastaa yhteisöjen toiveita siitä, miten heidät halutaan nähtävän.</p>",
                "en": "<p>Beginning with a chance encounter, Tim Smith has been documenting and building relationships with Hutterite communities in North America over the past fifteen years.</p><p>An Anabaptist group whose roots trace back to Tyrol, Austria in the wake of the 16th century Radical Reformation, Hutterites live communally on colonies throughout western Canada and the north-western United States. Their culture continues to be preserved through deliberate separation from mainstream society and economic self- sufficiency.</p><p>The Hutterites are currently amid one of the most successful periods of their approximately 500-year history. Facing no overt threats from the outside world they have prospered, and their population has grown to approximately 50,000. Members are provided for throughout their entire lives and on the whole experience less of the loneliness and isolation prevalent in the modern world.</p><p>The importance given to engagement in family life, social life and spirituality, and the defined purpose for their lives means Hutterite communities meet many of the requirements to be considered Blue Zones; areas where health, happiness and life expectancy rates are higher than average.</p><p>Hutterites are often either romanticized or denigrated as simple, backwards, quaint and/or old fashioned. The reality is that their society is very complex. Smith uses photography to document the breadth and complexity of the Hutterite experience as well as to show how colonies navigate the need to respond to the external pressures of the world around them while holding on to key traditions central to their faith.</p><p>Smith’s photographs provide a contemporary and nuanced view of the Hutterite colonies – delving into complex decisions at the heart of the everyday. They offer a glimpse into the continuously negotiated sites of Hutterite life. Many of the images focus on the youth culture in the colonies, where expressions of rebellion, respect for tradition, and maintenance of strict gender roles all create a sense of dual resistance – at once against the pressures of the outside world and against tradition.</p><p>Having devoted fourteen years to this ongoing documentation, Smith’s understanding of the Hutterite communities creates a possibility of showing their complexity in ways that are responsive to how they wish to be seen.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Tim Smith - In The World But Not Of It",
                "en": "Tim Smith - In The World But Not Of It"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63360/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63291",
            "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: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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p21812/?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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 82047,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-04T08:13:16.278768Z",
                    "last_modified_time": "2024-04-04T08:13:16.278784Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746445.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/82047/?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-04-04T08:13:16.235599Z",
            "last_modified_time": "2024-06-12T05:13:19.869138Z",
            "date_published": null,
            "start_time": "2024-05-14T14:00:00Z",
            "end_time": "2024-05-14T16: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,
            "short_description": {
                "fi": "Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa. Tiistain ohjelma on ruotsinkielinen. Ohjelmassa on tanssiesitys ja työpaja.",
                "sv": "Välkommen till Annegården under Barnkulturens festvecka, då vi firar litteratur, läsning och lyssnande! Jubileumsveckans kärna är poesirummet Kirsi Kunnas 100 år, med program under hela veckan. På tisdagen utlovas det dans och en verkstad. Tisdagens program är på svenska."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/02329C27F1171FB6325342BD31CD35FB/Husfluga_ljusfluga_och_Rattan_Bettan_och_Masken_Baudelaire_-workshop",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/02329C27F1171FB6325342BD31CD35FB/Husfluga_ljusfluga_och_Rattan_Bettan_och_Masken_Baudelaire_-workshop"
            },
            "description": {
                "fi": "<p>Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa. Tiistain ohjelma on ruotsinkielinen. Ohjelmassa on tanssiesitys ja työpaja.</p><p><b>KATVE Company: Lamppukärpänen</b><br>klo 17-17.30<br>Kaikenikäisille<br>Annantalon 2.kerros. <br>Ei ennakkoilmoittautumista.</p><p>Lamppukärpänen on tanssiteos maailman isoimmasta kärpäsestä, joka rakastaa kirjoja ja kaikenlaisia hyönteisiä. Maailmassa on ällistyttävä määrä ötököitä kuten esimerkiksi siira, lymymuurahainen, kirjanpainaja, papupiilokas, harsokorento, saksanturilainen, hyppyhäntäinen, kirjatäi ja niin edelleen!</p><p>Pienet hyönteiset pyörittävät maailmaa omalla toiminnallaan; niiden ansiosta kasvit kantavat hedelmää ja ihmiset saavat syödäkseen - eikä maailma tai varsinkaan ihmiset tulisi toimeen ilman pieniä hyönteisiä. Sen tähden Lamppukärpänen lukee ja tutustuu kaikkeen mahdolliseen. Ja kyllä hänkin on sen verran paljon hyönteinen, että saa kokea kiehtovan muodonmuutoksen kelta-vihreästä toukasta komeaksi kärpäseksi.</p><p>Koreografia ja tanssi: Heidi Masalin<br>Runot: Eppu Nuotio<br>Äänisuunnittelu: Olli Havu<br>Äänitehosteet: YLE arkisto, freesound /RTB45, Olli Havu<br>Runojen lausunta (suomi): Olli Havu, Aaron Frösén, Emilia Frösén, Rasmus Frösén, Irene Havu, Hilla Havu<br>Runojen käännös ruotsiksi: Henrik Huldén<br>Runojen lausunta (ruotsi): Henrik Huldén Aaron Frösén, Emilia Frösén, Rasmus Frösén, Irene Havu, Hilla Havu<br>Tuotanto: KATVE [blind spot] yhteistyössä Hanasaaren ruotsalais-suomalaisen Kulttuurikeskuksen kanssa<br>Teoksen tukijat: Helsingin kaupunki, Taiteen Edistämiskeskus, Opetus- ja kulttuuriministeriö</p><p><b>Työpaja: Baudeliero ja Mette-rotta</b><br>Klo: 17.30-19<br>Annantalon 2. kerros<br>Ikäsuositus 5+<br>Ei ennakkoilmoittautumista.</p><p>Tervetuloa runolliseen työpajaan! Luemme yhdessä runoja Annika Sandelinin teoksesta ”Baudeliero ja Mette-rotta”. Työpajan aikana keskustelemme runoista ja luomme niitä itse.</p><p>Lasten lukemiseen keskittyvä hanke Pohjoismainen kirja-ahmatti tarjoaa opetusmateriaalia yli 50 pohjoismaiseen kuvakirjaan osoitteessa https://bokslukaren.org/fi/. Tästä laajasta joukosta inspiraatiota ja lukemiseen innostavaa materiaalia löydät myös Annika Sandelinin hahmot Baudelieron ja Mette-rotan.</p><p>Pohjoismainen kulttuuripiste <br>Pohjoismainen kulttuuripiste on Helsingissä toimiva virallinen pohjoismainen kulttuurilaitos, jolla on toimintaa koko Pohjolassa. Pohjoismainen kulttuuripiste pyrkii vahvistamaan kulttuurialan yhteistyötä ja lisäämään pohjoismaisen kulttuurin tunnettavuutta Suomessa. Osana tätä työtä järjestämme lapsille ja nuorille tapahtumia ja aktiviteetteja tarjotaksemme uusia elämyksiä ja mahdollisuuksia tutustua pohjoismaiseen kulttuuriin.</p>",
                "sv": "<p>Välkommen till Annegården under Barnkulturens festvecka, då vi firar litteratur, läsning och lyssnande! Jubileumsveckans kärna är poesirummet Kirsi Kunnas 100 år, med program under hela veckan. På tisdagen utlovas det dans och en verkstad. Tisdagens program är på svenska.</p><p>KATVE [blind spot] Company: Husfluga, ljusfluga<br>kl. 17-17.30<br>För alla åldrar<br>Annegårdens 2. våningen</p><p>Lär vi känna världens största fluga och hör Eppu Nuotions charmiga insektsrim.</p><p>Husfluga, ljusfluga är ett dansstycke om världens största fluga, som älskar böcker och alla sorters insekter. Det finns ett fantastiskt antal insekter i världen, som gråsugga, kompostmyra, barkborre, bönbagge, guldögonslända, ollonborre, hoppstjärt, bokmal och så vidare!</p><p>De små insekterna driver världen med sin insats; tack vare dem bär plantor frukt som människor äter – och inte skulle världen, eller speciellt människan, klara sig utan insekter. Därför läser och bekantar sig Husflugan med allt möjligt. Och visst är Husflugan så pass mycket insekt att den får uppleva förvandlingen från en gulgrön larv till en ståtlig fluga.</p><p>Koreografi och dans: Heidi Masalin<br>Dikter: Eppu Nuotio<br>Ljuddesign: Olli Havu<br>Ljudeffekter: YLE arkiv, freesound /RTB45, Olli Havu<br>Översättning av dikterna till svenska: Henrik Huldén<br>Recitation av dikter: Henrik Huldén Aaron Frösén, Emilia Frösén, Rasmus Frösén, Irene Havu, Hilla Havu<br>Fo­tog­ra­fi: Tanja Illukka<br>Produktion: KATVE [blind spot] Company med Kulturcentrum Hanaholmen<br>Produktion stöd: Helsingfors stad, Konstfrämjande centrum, Undervisnings- och kulturministeriet</p><p>Workshop: Råttan Bettan och Masken Baudelaire<br>Kl. 17.30-19<br>Annegårdens 2.vånigen<br>Åldersrekommendation: För 5 år och uppåt</p><p>Välkommen med på en poesistund med workshop! Vi läser dikter ur ”Råttan Bettan och Masken Baudelaire” av Annika Sandelin. Vi pratar om dikterna och kommer också att skapa egna dikter.</p><p>Det läsfrämjande projektet Den nordiska bokslukaren har skapat pedagogiskt material till över 50 nordiska bilderböcker som finns tillgängliga på https://bokslukaren.org/. Du hittar inspirationsfrågor även till Råttan Bettan och Masken Baudelaire på webbplatsen.</p><p>Om Nordisk kulturkontakt<br>Nordisk kulturkontakt (NKK) är en officiell nordisk kulturinstitution i Helsingfors med verksamhet i hela Norden. NKK arbetar för att förstärka det nordiska samarbetet inom kulturfältet och öka kännedomen om Norden i Finland. Detta görs genom att bland annat arrangera evenemang och aktiviteter för barn och unga, vilka ger nya upplevelser samt möjligheter att ta del av nordisk kultur.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Husfluga, ljusfluga och Råttan Bettan och Masken Baudelaire -workshop – Lastenkulttuurin juhlaviikko",
                "sv": "Husfluga, ljusfluga och Råttan Bettan och Masken Baudelaire -workshop – Barnkulturens festvecka"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63291/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61199",
            "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: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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6172,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T11:13:42.674198Z",
                    "last_modified_time": "2024-02-06T13:23:40.876470Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738964.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-23T11:13:42.651889Z",
            "last_modified_time": "2024-06-12T05:13:18.626506Z",
            "date_published": null,
            "start_time": "2024-05-10",
            "end_time": "2024-08-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,
            "short_description": {
                "fi": "Istu sohvalle, ota kirja ja anna Haitulan viedä mukanaan! Runo-olohuone on galleriassa sijaitseva runojen valtakunta, soppi, jossa voit uppoutua tarinoihin.",
                "sv": "Sätt dig på soffan, ta en bok och låt Haitula föra dig till sin värld! Diktvardagsrummet är ett poesirike i galleriet, en hörna där du kan fördjupa dig i berättelser.",
                "en": "Take a seat on the sofa, grab a book and let Haitula whisk you away! The Poetry Lounge is a realm of poetry inside a gallery, a place where you can immerse yourself in stories."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/25247D650BFFD167A8295F5FF8885BDB/Kirsi_Kunnas_Runo-olohuone",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/25247D650BFFD167A8295F5FF8885BDB/Kirsi_Kunnas_Diktvardagsrum",
                "en": "http://www.annantalo.fi/en/events/event/25247D650BFFD167A8295F5FF8885BDB/Kirsi_Kunnas_Poetry_Lounge"
            },
            "description": {
                "fi": "<p>Istu sohvalle, ota kirja ja anna Haitulan viedä mukanaan! Runo-olohuone on galleriassa sijaitseva runojen valtakunta, soppi, jossa voit uppoutua tarinoihin.</p><p>Kirjailija <b>Kirsi Kunnaksen</b> (1924–2021) 100-vuotisjuhlaa vietetään vuonna 2024. Valtakunnallisen juhlavuoden keskiössä ovat suomalainen lastenrunous, leikki, lukuilo ja lasten kulttuurinen toimijuus. Runo-olohuone pohjautuu Kunnaksen lastenrunoihin ja kuvittaja <b>Jani Ikosen</b> kuviin.</p><p>Ensimmäinen Runo-olohuone avautui Kulttuurikeskus PiiPoossa helmikuussa 2024. Runojen ja kuvitusten lisäksi näyttelyn perustana ovat lasten ja taiteilijoiden yhdessä suunnittelemat runotehtävät. Näyttelykonsepti kiertää eri kokoisilla toteutuksilla lastenkulttuurikeskuksissa, kirjastoissa ja muissa kulttuuritiloissa vuosina 2024–2025.</p>",
                "sv": "<p>Sätt dig på soffan, ta en bok och låt Haitula föra dig till sin värld! Diktvardagsrummet är ett poesirike i galleriet, en hörna där du kan fördjupa dig i berättelser.</p><p>Författaren Kirsi Kunnas (1924–2021) 100-årsjubileum firas 2024. I hjärtat av det riksomfattande jubileumsåret ligger den finländska barnpoesin, leken, läsglädjen och barnens kulturella handlingskraft. Diktvardagsrummet är baserat på Kunnas barndikter och bilder av illustratören <b>Jani Ikonen</b>.</p>",
                "en": "<p>Take a seat on the sofa, grab a book and let Haitula whisk you away! The Poetry Lounge is a realm of poetry inside a gallery, a place where you can immerse yourself in stories.</p><p>The 100th anniversary of author Kirsi Kunnas (1924–2021) will be celebrated in 2024. At the heart of the national centenary year are Finnish children’s poetry, play, the joy of reading and children’s cultural agency. The Poetry Lounge is based on Kunnas’ children’s poems and illustrator <b>Jani Ikonen’s</b> illustrations.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kirsi Kunnas: Runo-olohuone – Toiminnallinen näyttely runoista ja tarinoista",
                "sv": "Kirsi Kunnas: Diktvardagsrum – Funktionell utställning av dikter och berättelser",
                "en": "Kirsi Kunnas: Poetry Lounge – A functional exhibition about poems and stories"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61199/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61171",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11074,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-27T13:13:55.984305Z",
                    "last_modified_time": "2024-02-27T13:13:55.984322Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738198.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11074/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-27T13:13:55.956511Z",
            "last_modified_time": "2024-06-12T05:13:17.647910Z",
            "date_published": null,
            "start_time": "2024-05-06",
            "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,
            "short_description": {
                "fi": "Työväenopiston kevätnäyttelyssä teemana on pelien ja leikkien rooli kulttuurissa.",
                "sv": "Temat för Arbetarinstitutets vårutställning är spelens och lekarnas roll i kulturen.",
                "en": "The theme of the Helsinki Finnish Adult Education Centre spring exhibition is the role of play and games in culture."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/396A03330327421558A3315D474C0637/L-E-I-K-K-I",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/396A03330327421558A3315D474C0637/L-E-I-K-K-I_",
                "en": "http://www.kanneltalo.fi/en/events/event/396A03330327421558A3315D474C0637/L-E-I-K-K-I_P-L-A-Y_"
            },
            "description": {
                "fi": "<p>Työväenopiston kevätnäyttelyssä teemana on pelien ja leikkien rooli kulttuurissa.</p><p>Esillä on kuvataidekurssilaisten eri tekniikoin tekemiä maalauksia, piirustuksia, grafiikkaa, veistoksia ja keramiikkaa.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Temat för Arbetarinstitutets vårutställning är spelens och lekarnas roll i kulturen.</p><p>Bildkonstkursens vårutställning presenterar kursdeltagarnas målningar, ritningar, grafik, skulpturer och keramik.</p>",
                "en": "<p>The theme of the Helsinki Finnish Adult Education Centre spring exhibition is the role of play and games in culture.</p><p>Artworks created by the students using various techniques (paintings, drawings, graphic art, sculptures and ceramics) are showcased.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "L-E-I-K-K-I – Työväenopiston kevätnäyttely",
                "sv": "L-E-I-K-K-I – Arbetarinstitutets vårutställning",
                "en": "L-E-I-K-K-I (P-L-A-Y) – Spring exhibition of Helsinki Finnish Adult Education Centre"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61171/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61562",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7539,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-02T15:13:30.086793Z",
                    "last_modified_time": "2024-02-06T13:23:40.045179Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741286.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7539/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-02T15:13:30.063554Z",
            "last_modified_time": "2024-06-12T05:13:17.037199Z",
            "date_published": null,
            "start_time": "2024-05-04T07:00:00Z",
            "end_time": "2024-05-25T16: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,
            "short_description": {
                "fi": "Hong Liu-Serttin Kalevalan Metsä -näyttely tutkii kiinalaisen ja suomalaisen kulttuurin vuorovaikutusta.",
                "sv": "Hong Liu-Serttis utställning Kalevalan Metsä undersöker samspelet mellan de kinesiska och finländska kulturerna.",
                "en": "The Forest of Kalevala exhibition by Hong Liu-Sertti is an artistic journey that explores the interaction between Chinese and Finnish cultures."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/27A3AFA063694B458656B4C7D6881EA5/Hong_Liu-Sertti_Kalevalan_Metsa_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/27A3AFA063694B458656B4C7D6881EA5/Hong_Liu-Sertti_Kalevalaskogen",
                "en": "http://www.caisa.fi/en/events/event/27A3AFA063694B458656B4C7D6881EA5/Hong_Liu-Sertti_The_Forest_of_Kalevala"
            },
            "description": {
                "fi": "<p>Hong Liu-Serttin Kalevalan Metsä -näyttely tutkii kiinalaisen ja suomalaisen kulttuurin vuorovaikutusta.</p><p>Tämä on Liu-Serttin neljäs Kalevala-näyttely, joka perustuu kolmeen aiempaan ja esittelee uusia teoksia. Yhdessä aiempien näyttelyiden teosten kanssa mukana on yhteensä 64 Kalevala-maalausta.</p><p>Hong Liu-Sertti valaisee kauniisti suhdetta ihmisten ja luonnon välillä, tavoitteenaan edesauttaa arvostusta kulttuurien välillä ja rohkaista pohtimaan yleismaailmallisia arvoja.</p><p>Kansalliseepoksesta inspiroitunut näyttely kutoo yhteen fantastisia kohtauksia ja luonnon mystiikkaa. Se kutsuu sinut pohtimaan ihmisen olemassaolon ydintä.</p><p>Koe perinteisten kiinalaisten tekniikoiden ja nykytaiteen sulautuminen. Monikulttuurisen ilmaisun rikas kudelma resonoi sukupolvelta toiselle.</p>",
                "sv": "<p>Hong Liu-Serttis utställning Kalevalan Metsä undersöker samspelet mellan de kinesiska och finländska kulturerna.</p><p>Detta är Liu-Serttis fjärde Kalevala-utställning, som baserar sig på de tre tidigare utställningarna och presenterar nya verk. Det finns sammanlagt 64 Kalevala-målningar, inräknat verken från de tidigare utställningarna.</p>",
                "en": "<p>The Forest of Kalevala exhibition by Hong Liu-Sertti is an artistic journey that explores the interaction between Chinese and Finnish cultures.</p><p>Liu-Sertti’s fourth Kalevala-themed exhibition builds upon her three previous ones and features new pieces. Combined with the works from the previous exhibitions, a total of 64 Kalevala-themed paintings are included.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Hong Liu-Sertti: Kalevalan Metsä",
                "sv": "Hong Liu-Sertti: Kalevalaskogen",
                "en": "Hong Liu-Sertti: The Forest of Kalevala"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61562/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61568",
            "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:288/?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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7019,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-05T14:13:21.390516Z",
                    "last_modified_time": "2024-02-06T13:23:39.756582Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741415.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7019/?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-01-05T14:13:21.368187Z",
            "last_modified_time": "2024-06-12T05:13:16.659139Z",
            "date_published": null,
            "start_time": "2024-05-03",
            "end_time": "2024-06-02",
            "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,
            "short_description": {
                "fi": "SOS-Lapsikyläsäätiön valokuvanäyttely Oikeus Unelmoida - nuorten elämää Gambiassa esittelee yhdeksän nuoren tarinan heidän itsensä kertomana.",
                "sv": "SOS Barnbystiftelsens fotoutställning Rätt att drömma – ungdomars liv i Gambia presenterar nio ungdomars historia berättade av dem själva.",
                "en": "A photography exhibition by SOS Children’s Village Foundation, The Right to Dream – the Lives of Young People in the Gambia presents the stories of nine young people as told by themselves."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/835D82536F7A599FD28CB8F0237B655D/Oikeus_unelmoida_Nuorten_elamaa_Gambiassa",
                "sv": "http://www.stoa.fi/sv/evenemang/event/835D82536F7A599FD28CB8F0237B655D/Ratt_att_dromma_ungdomars_liv_i_Gambia",
                "en": "http://www.stoa.fi/en/events/event/835D82536F7A599FD28CB8F0237B655D/The_Right_to_Dream_the_Lives_of_Young_People_in_the_Gambia"
            },
            "description": {
                "fi": "<p>SOS-Lapsikyläsäätiön valokuvanäyttely Oikeus Unelmoida - nuorten elämää Gambiassa esittelee yhdeksän nuoren tarinan heidän itsensä kertomana.</p><p>Nämä nuoret kertovat millaista on elää maassa, jonka kouluttautumis- ja työllistymismahdollisuudet ovat huonot ja pakolaisuus nähdään usein lähes ainoana reittinä parempaan elämään. He kertovat myös toiveistaan ja unelmistaan, sekä siitä kuinka pienistä asioista lähteminen tai jääminen voi riippua. SOS-Lapsikylän tuella kaikki nuoret ovat voineet kouluttautua ammattiin, josta he saavat toimeentuloa ja merkitystä elämään. Vaikeuksista huolimatta nuoret uskovat toisiinsa ja parempaan tulevaisuuteen.</p><p>2,6 miljoonan asukkaan Gambia on yksi Länsi-Afrikan pienimmistä valtioista. Noin 40 prosenttia väestöstä elää köyhyysrajan alapuolella ja harvalla nuorella on mahdollisuus kouluttautua tai työllistyä kotimaassaan. Pienestä väkiluvusta huolimatta gambialaiset näkyvät yliedustettuna Eurooppaan saapuvien pakolaisten joukossa. SOS-Lapsikylän kehitysyhteistyöhanke tukee haavoittuvassa asemassa olevien nuorten koulutusta ja työelämään pääsemistä.</p><p>Näyttelyn kuvat ja haastattelut: Veera Lehto-Michaud</p>",
                "sv": "<p>SOS Barnbystiftelsens fotoutställning Rätt att drömma – ungdomars liv i Gambia presenterar nio ungdomars historia berättade av dem själva.</p><p>Dessa ungdomar berättar hur det är att leva i ett land med dåliga möjligheter till utbildning och sysselsättning, där flyktinglivet ofta betraktas som nästan den enda vägen till ett bättre liv. De berättar också om sina önskemål och drömmar. Trots svårigheterna tror ungdomarna på varandra och på en bättre framtid.</p>",
                "en": "<p>A photography exhibition by SOS Children’s Village Foundation, The Right to Dream – the Lives of Young People in the Gambia presents the stories of nine young people as told by themselves.</p><p>The young people tell what it’s like to live in a country with poor educational and employment opportunities where becoming a refugee is often seen as the only route to a better life. They also share their hopes and dreams. Despite the difficulties, the young people believe in each other and a better future.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Oikeus unelmoida – Nuorten elämää Gambiassa",
                "sv": "Rätt att drömma – ungdomars liv i Gambia",
                "en": "The Right to Dream – the Lives of Young People in the Gambia"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61568/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63361",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?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:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 148995,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-15T06:13:29.122272Z",
                    "last_modified_time": "2024-04-15T06:13:29.122287Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749239.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/148995/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-15T06:13:29.083296Z",
            "last_modified_time": "2024-06-12T05:13:16.510225Z",
            "date_published": null,
            "start_time": "2024-05-02",
            "end_time": "2024-05-31",
            "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,
            "short_description": {
                "fi": "Mikä on pehmeä veistos? Tule katsomaan koskettavia, uljaita ja humoristisia naisveistoksia. Esillä on myös tekijöiden kertomukset teoksistaan."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/04D88FE44C7CD9041642AF05B9DF306F/Pehmeat_veistokset"
            },
            "description": {
                "fi": "<p>Mikä on pehmeä veistos? Tule katsomaan koskettavia, uljaita ja humoristisia naisveistoksia. Esillä on myös tekijöiden kertomukset teoksistaan.</p><p>Oman naishahmon suunnittelu ja valmistaminen on osa käsityön taiteen perusopetuksen syventävien opintojen ryhmän kevään 2024 opintoja. Kurssin alussa tutustuttiin ja perehdyttiin taidehistorian kautta erilaisiin naiskuviin ja- veistoksiin, leivottiin naispullia ja harjoiteltiin hahmon ja asennon piirtämistä.</p><p>Vitriininäyttely on esillä Vuotalon 2 kerroksen käytävässä 2.-31.5.2024</p><p>Opintokokonaisuutta järjestää Helsingin työväenopisto.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Pehmeät veistokset"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63361/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63405",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150737,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-23T08:13:00.417102Z",
                    "last_modified_time": "2024-04-23T08:13:00.417117Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749499.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150737/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-23T08:13:00.386388Z",
            "last_modified_time": "2024-06-12T05:13:16.361494Z",
            "date_published": null,
            "start_time": "2024-05-02",
            "end_time": "2024-05-31",
            "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,
            "short_description": {
                "fi": "Kanneltalon kahvilassa esillä Raimo Ketolaisen valokuvia."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BD1990A4A540157B276FF88C15DE6BE2/Kevat_Raimo_Ketolaisen_valokuvanayttely"
            },
            "description": {
                "fi": "<p>Kanneltalon kahvilassa esillä Raimo Ketolaisen valokuvia.</p><p>Haagan Taideseura on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura.</p><p>Lisätiedot https://www.haagantaideseura.com/</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kevät – Raimo Ketolaisen valokuvanäyttely – Haagan Taideseura"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63405/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63173",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11853,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-12T11:13:19.661627Z",
                    "last_modified_time": "2024-03-12T11:13:19.661641Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739960.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11853/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-12T11:13:19.632567Z",
            "last_modified_time": "2024-06-12T05:13:13.403881Z",
            "date_published": null,
            "start_time": "2024-04-23T11: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,
            "short_description": {
                "fi": "Kuka saa määritellä millaisia enkelit ovat ja miltä ne näyttävät? Tätä kysytään Helsingin yliopiston Kenen enkelit? -tutkimushankkeessa, jossa luodaan ja tutkitaan nykyaikaisia mielikuvia enkeleistä.",
                "sv": "Vem får definiera hurudana änglar är och hur de ser ut? Det här frågar man i Helsingfors universitets undervisningsprojekt Vems änglar?, där man skapar och utforskar moderna uppfattningar om änglar.",
                "en": "Who gets to define what angels are and what they look like? This is the question asked by the University of Helsinki Whose Angels? research project that creates and explores modern impressions of angels."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C65F889FE4A624B2C79E98DB97F83F56/Kenen_enkelit_-luento_nayttelyprojektista_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C65F889FE4A624B2C79E98DB97F83F56/Vems_anglar_en_forelasning_om_utstallningsprojektet",
                "en": "http://www.vuotalo.fi/en/events/event/C65F889FE4A624B2C79E98DB97F83F56/Whose_Angels_A_lecture_on_an_exhibition_project"
            },
            "description": {
                "fi": "<p>Kuka saa määritellä millaisia enkelit ovat ja miltä ne näyttävät? Tätä kysytään Helsingin yliopiston Kenen enkelit? -tutkimushankkeessa, jossa luodaan ja tutkitaan nykyaikaisia mielikuvia enkeleistä.</p><p>Projektiin sisältyvä valokuvataidenäyttely toteutetaan Vuotalossa syksyllä 2024. Näyttelyssä esiteltävistä Hanne Kiiverin teoksista kerätään yleisöpalautetta, jota hyödynnetään tutkimuksessa ja enkelikuvien taiteellisessa jatkotyöstössä. Luennolla esitellään projektia ja tulevaa taidenäyttelyä.</p><p>Tiistaimatineat ovat sarja Vuotalon tiistai-iltapäivien tapahtumia. Tiistaimatineoissa on kuultu mm. kahvikonsertteja ja luentoja lähialueen historiasta.</p><p>Kesto noin 1 tunti<br>Vapaa pääsy</p>",
                "sv": "<p>Vem får definiera hurudana änglar är och hur de ser ut? Det här frågar man i Helsingfors universitets undervisningsprojekt Vems änglar?, där man skapar och utforskar moderna uppfattningar om änglar.</p><p>Den fotokonstutställning som ingår i projektet genomförs i Nordhuset hösten 2024. Publikens respons samlas in om Hanne Kiiveris verk som presenteras på utställningen och utnyttjas sedan i forskningen och i den fortsatta bearbetningen av änglabilderna. På föreläsningen presenteras projektet och den kommande konstutställningen.</p>",
                "en": "<p>Who gets to define what angels are and what they look like? This is the question asked by the University of Helsinki Whose Angels? research project that creates and explores modern impressions of angels.</p><p>A photographic art exhibition will be arranged as part of the project at Vuosaari House in the autumn of 2024. Feedback from the audience on Hanne Kiiveri’s works presented in the exhibition will be collected to be used in research and further artistic work on angel images. The lecture presents the project and the upcoming art exhibition.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kenen enkelit? -luento näyttelyprojektista – Tiistaimatinea",
                "sv": "Vems änglar? – en föreläsning om utställningsprojektet – Tisdagsmatiné",
                "en": "Whose Angels? – A lecture on an exhibition project"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63173/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63174",
            "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:288/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12845,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-15T13:14:09.125134Z",
                    "last_modified_time": "2024-03-15T13:14:09.125153Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745543.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12845/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T13:14:09.073429Z",
            "last_modified_time": "2024-06-12T05:13:11.863772Z",
            "date_published": null,
            "start_time": "2024-04-18",
            "end_time": "2024-05-11",
            "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,
            "short_description": {
                "fi": "Mahdolliset paratiisit on Ainon ja Annan ensimmäinen yhteinen näyttely. Taiteilijat ovat olleet työhuoneystäviä vuosien ajan, ja ajatus yhteisestä näyttelystä on hautunut jo pitkään.",
                "sv": "Möjliga paradis är vår första gemensamma utställning. Vi har varit ateljévänner för många år och tanken om en gemensam utställning har mognat redan länge.",
                "en": "Possible paradises is Aino’s and Anna's first exhibition together. They have been working in the same studio for years, and the idea of exhibiting together has been in their minds for a long time."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/72207505689FAE984A199A97CAA7F786/Mahdolliset_paratiisit_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/72207505689FAE984A199A97CAA7F786/Mojliga_paradis",
                "en": "http://www.malmitalo.fi/en/events/event/72207505689FAE984A199A97CAA7F786/Possible_paradises"
            },
            "description": {
                "fi": "<p>Mahdolliset paratiisit on Ainon ja Annan ensimmäinen yhteinen näyttely. Taiteilijat ovat olleet työhuoneystäviä vuosien ajan, ja ajatus yhteisestä näyttelystä on hautunut jo pitkään.</p><p>Näyttelyssä on esillä värikkäitä monotypioita ja sekatekniikkamaalauksia paperille vuosilta 2023–2024.</p><p>Aino ja Anna ammentavat kumpikin taiteen tekemiseen omakohtaisista kokemuksista, arjesta, ihmissuhteista ja ihmisenä olemisesta. Työskentelyssä heitä yhdistää tietynlainen rosoisuus, sattumanvaraisuus ja roiskeisuus: taide, kuten arki, ei tapahdu siistissä laboratoriossa, vaan keskellä elämän ennakoimattomia käänteitä. Teoksissa voi havaita tiettyä sukulaisuutta, ne ovat kuin välähdyksiä samasta maailmasta.</p><p>”Töitä tehdessäni kerron itselleni epämääräistä, juonetonta tarinaa, josta saa melkein selvää ja käyn vuoropuhelua teosten kanssa. Sanallistaminen on epämääräistä ja asiaa kiertävää. Työskentelen pääasiassa monotypian parissa. Monotypia on painaen tehty ainutkertainen teos. Olen kutsunut sitä maalauksen ja taidegrafiikan rakkauslapseksi. Prässistä tulee ihmeellisyyksiä ulos ja mikään aiottu ei enää pädekään. Työ kertoo mitä se tarvitsee ja minä vastaan kutsuun”, <b>Aino Jääskeläinen</b> kertoo.</p><p>”Minua kiinnostaa ihmisen universaali samankaltaisuus kasvikunnan kanssa, soluhengityksen ja yhteyttämisen symmetria ja symbioosi, hermoston ja juuriston samankaltaisuus, verisuonet ja rihmastot, kaikki osana elävää kudosta, joka verhoaa planeettaa. Viimeaikaisissa töissäni on esiintynyt usein ihmishahmo, omakuva, joka ei ole täysin inhimillinen, vaan kuuluu osittain kasvien tai hyönteisten maailmaan.</p><p>Mietin, millä tavoin olemme osana maailmaa lajina lajien joukossa, ja kuinka voisimme kääntää inhimillisen kekseliäisyytemme suojelemaan kaikkea sitä haavoittuvaa elämää, jota olemme tuhoamassa. Voisiko empatia ulottua myös niihin elämänmuotoihin, joiden fysikaaliset ominaisuudet ja tietoisuus ovat erilaisia kuin omamme?”, <b>Anna Seppälä</b> pohtii kuvaillessaan teosten taustoja.</p><p>Avajaiset keskiviikkona 17.4. klo 17–19. Vapaa pääsy.</p>",
                "sv": "<p>Möjliga paradis är vår första gemensamma utställning. Vi har varit ateljévänner för många år och tanken om en gemensam utställning har mognat redan länge.</p><p>I utställningen visar vi färggranna monotypier och målningar med blandteknik på papper från åren 2023–2024. Material till det konstnärliga arbetet öser vi båda ur våra personliga upplevelser, vardagen, relationer och det att vara människa. Gemensamma drag i våra arbetssätt är ett slags skrovlighet och tillfällighet: Konst, såsom vardagen, sker inte i ett prydligt laboratorium utan mitt i livets oförutsägbara omsvängningar. I våra verk kan man se en viss släktskap, de är som glimt ur en och samma värld.</p><p><b>Aino Jääskeläinen</b>: ”När jag arbetar berättar jag för mig själv en suddig historia utan intrig, som man nästan kan förstå, och samtalar med mina verk. Om jag försöker uttrycka det i ord blir det diffust och kringgående. För det mesta arbetar jag med monotypi. En monotypi är en tryckbild men samtidigt ett unikt verk. Jag brukar kalla tekniken för målarkonstens och konstgrafikens kärleksbarn. Ur pressen kommer vidunderliga saker och ingen av mina ursprungliga avsikter gäller längre. Verket berättar själv vad det behöver och jag besvarar uppmaningen.”</p><p><b>Anna Seppälä</b>: ”Jag är fascinerad av människans universella likhet med växtriket, symmetrin och symbiosen i cellandningen och fotosyntesen, likheten mellan nerv- och rotsystemet, blodkärlen och myceliet, allt detta som en del av den levande vävnaden som täcker vår planet. I mina senaste verk har det ofta funnits en människogestalt, en självbild som inte är fullt mänsklig utan hör delvis till växternas och insekternas värld. Jag funderar på hur vi finns till som en del av världen, som en art bland alla andra arter, och hur vi kunde vrida runt vår mänskliga uppfinningsrikedom och börja skydda allt det sårbara och levande som vi är i gång med att förstöra. Skulle vår empati även kunna nå sådana livsformer som har olika fysiska egenskaper och ett annorlunda medvetande än vi själv har?”</p><p>Invigning på onsdagen den 17 april, kl. 17–19. Fri entré.</p>",
                "en": "<p>Possible paradises is Aino’s and Anna's first exhibition together. They have been working in the same studio for years, and the idea of exhibiting together has been in their minds for a long time.</p><p>They exhibit coloristic mixed media and monotype works from 2023-2024. <br> <br>Both artists take their inspiration from daily life, relationships and being a human in this world. There is a certain similar splattered randomness and gentle roughness that connects their working process. Neither life nor art happens in a clean laboratorium, but rather in the middle of life’s unexpected turns and twists. Their works can be sen as flashes from same world; they are related in an undefined way. <br> <br>Aino: “When I work, it’s like telling myself an indeterminate, plotless story, which I almost comprehend, and I am having conversations with the works. I mostly work with monotype, which is a print making technique, where each picture is unique. I like to call it a love child of painting and print making. Miracles appear out of press, and nothing is like intended. The work tells me what it needs, and I answer.” <br> <br>Anna: ”I am interested in universal likeness between human and plants, symbiosis and symmetry between cellular respiration and photosyntesis. Our blood circulation system reminds us of the branches of a tree. We are physically part of the biosphere, and thus connected to every living thing on this planet. In my paintings there is often a figure that is not completely human, but party belongs to plants or insect world.  How are we part of this world? How could we turn the endless human inventiveness to protect all the life we are now destroying? Could our empathy cover also the forms of life that are not like ours?”</p><p>Opening of the exhibition on Wednesday, April 17th, from 5 PM to 7 PM. Free entry.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Mahdolliset paratiisit – Aino Jääskeläinen ja Anna Seppälä",
                "sv": "Möjliga paradis – Aino Jääskeläinen och Anna Seppälä",
                "en": "Possible paradises – Aino Jääskeläinen and Anna Seppälä"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63174/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63100",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:668/?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:p1377/?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:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 10963,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-20T11:12:59.759469Z",
                    "last_modified_time": "2024-02-20T11:12:59.759494Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744873.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10963/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-20T11:12:59.728709Z",
            "last_modified_time": "2024-06-12T05:13:10.969655Z",
            "date_published": null,
            "start_time": "2024-04-16T13:00:00Z",
            "end_time": "2024-04-16T16:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Miltä Vuosaari näyttää ryijynä?"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/63979CEDE6FA4D20D3FF1BAA18A89642/Vuosaaren_kartta_-miniryijytyopajat"
            },
            "description": {
                "fi": "<p>Miltä Vuosaari näyttää ryijynä?</p><p>Tule mukaan tekemään pieniä ryijyjä, joista rakentuu Vuosaaren ryijykartta!</p><p>Ryijyä voi tehdä Vuotalolla</p><p>tiistaina 16.4. klo 16–19.15</p><p>Opetustuokioiden ryijy on yhteinen teos, jota tehdään Vuotalolle lahjoitetuista langoista. Ei ennakkoilmoittautumista.</p><p>Yhteistyössä: Helsingin työväenopisto<br>Opettaja: Ama Essel</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Vuosaaren kartta -miniryijytyöpajat – Vuotalo <3 ryijy -näyttelyn avoimet työpajat"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63100/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63284",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 31180,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-26T11:13:14.205019Z",
                    "last_modified_time": "2024-03-26T11:13:14.205037Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746421.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/31180/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-26T11:13:14.160898Z",
            "last_modified_time": "2024-06-12T05:13:09.506786Z",
            "date_published": null,
            "start_time": "2024-04-13T10:00:00Z",
            "end_time": "2024-04-13T11: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,
            "short_description": {
                "fi": "Tervetuloa näyttelyn viittomakieliseen opastukseen klo 13-14. Opastus on suomenkielisellä viittomakielellä."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/A3443CD0D65E5549FD596C8920F3866D/Viittomakielinen_opastus_nayttelyyn_-_oppaana_Aino_Laiho",
                "sv": "http://www.caisa.fi/sv/evenemang/event/A3443CD0D65E5549FD596C8920F3866D/Guidning_pa_teckensprak_pa_finska_Aino_Laiho_som_guide",
                "en": "http://www.caisa.fi/en/events/event/A3443CD0D65E5549FD596C8920F3866D/_Sign_language_tour_in_Finnish_Aino_Laiho_as_a_guide"
            },
            "description": {
                "fi": "<p>Tervetuloa näyttelyn viittomakieliseen opastukseen klo 13-14. Opastus on suomenkielisellä viittomakielellä.</p><p>“I AM GOD -projektissa tavoitteeni on ollut antaa realistinen kuva siitä, miltä arki mielenterveysongelmien kanssa voi näyttää. Näillä aiheilla on omat sosiaaliset ja poliittiset ulottuvuutensa, mutta tällaisten melko abstraktien käsitteiden ulkopuolella niillä on myös käytännölliset, konkreettiset ja näkyvät puolensa.</p><p>Konkreettiset ja näkyvät puolet muodostavatkin näyttelyn valokuvien ja videoteosten mielenmaiseman – ne pyrkivät kuvastamaan yhden yksilön elämäntilanteita ja vaikeuksia tuhansien ja taas tuhansien ihmisten joukosta.</p><p>Teosteni katsoja saattaa pohtia omia kokemuksiaan mielenterveydestä sekä niihin liittyvistä ja niiden heijastamista moninaisista ilmiöistä. Voiko mahdollisista pohdinnoista vetää johtopäätöksiä? Voiko niistä löytää merkityksiä tai ymmärrystä?” Taiteilija <b>Christian Rosenlund</b></p><p>Näyttelyssä esillä oleva video sisältää voimakkaita kohtauksia.</p><p>Näyttelyyn järjestetään opastus suomalaisella viittomakielellä la 13.4.2024 klo 13-14.<br>Vapaa pääsy.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Viittomakielinen opastus näyttelyyn - oppaana Aino Laiho",
                "sv": "Guidning på teckenspråk på finska: Aino Laiho som guide",
                "en": "Sign language tour in Finnish: Aino Laiho as a guide"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63284/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61198",
            "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: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: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:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6170,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T11:13:42.306918Z",
                    "last_modified_time": "2024-02-06T13:23:34.066249Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738846.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6170/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-23T11:13:42.266608Z",
            "last_modified_time": "2024-06-12T05:13:09.273361Z",
            "date_published": null,
            "start_time": "2024-04-13",
            "end_time": "2024-08-31",
            "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,
            "short_description": {
                "fi": "Miten liikettä voi kuvata? Tapahtuuko nappia painamalla jotain? Mitä tarkoittaa kineettinen? Entä mikä on mobile?",
                "sv": "Hur beskriver man en rörelse? Händer det nåt om du trycker på knappen? Vad betyder kinetisk? Vad är en mobil?",
                "en": "How can I describe movement? Will something happen if I push the button? What does kinetic mean? And what is mobile?"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DD81682187C878D28ECDF1E488D85AB2/Liikkuva_laboratorio",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/DD81682187C878D28ECDF1E488D85AB2/Rorliga_laboratoriet",
                "en": "http://www.annantalo.fi/en/events/event/DD81682187C878D28ECDF1E488D85AB2/Moving_Laboratory"
            },
            "description": {
                "fi": "<p>Miten liikettä voi kuvata? Tapahtuuko nappia painamalla jotain? Mitä tarkoittaa kineettinen? Entä mikä on mobile?</p><p>Liikkuva laboratorio tutkii! Kaikenlainen käyminen, kulkeminen, tutina ja liitely, mekaaninen tai muunkaltainen ovat suurennuslasin alla. Näyttelyssä perehdytään taiteeseen, joka on tavalla tai toisella liikkeessä tai saanut innoituksensa liikkeestä.</p><p>Syksyllä 2023 Ihmeellinen kone -näyttely käynnisti Annantalolla liikkeen ja vuorovaikutuksen teeman, joka nyt saa jatkoa Liikkuvan laboratorion muodossa.</p><p>Mukana näyttelyssä on KITA – Kineettisen taiteen talo yhdessä Annantalon oppilasryhmien, Lasten ja nuorten säätiön sekä Helsingin katutaidetoimiston nuorten kanssa.</p><p>Näyttelyn avajaisia vietetään 13.4. klo 11:15 Barnfesten-tapahtuman yhteydessä. Tervetuloa mukaan!</p>",
                "sv": "<p>Hur beskriver man en rörelse? Händer det nåt om du trycker på knappen? Vad betyder kinetisk? Vad är en mobil?</p><p>Det rörliga laboratoriet undersöker! Alla slags promenerande, vandring, skakande och flyg, mekaniska eller andra är under förstoringsglaset. Utställningen gör oss bekanta med konst som på ett eller annat sätt är i rörelse eller har fått sin inspiration från rörelse.</p>",
                "en": "<p>How can I describe movement? Will something happen if I push the button? What does kinetic mean? And what is mobile?</p><p>The Moving Laboratory explores! All kinds of movement, walking, trembling and gliding, mechanical or otherwise, are under a magnifying glass. The exhibition explores art that is, in one way or another, in motion or inspired by movement.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Liikkuva laboratorio – Näyttely liikkeestä ja vuorovaikutuksesta",
                "sv": "Rörliga laboratoriet – Utställning om rörelse och växelverkan",
                "en": "Moving Laboratory – An exhibition about movement and interaction"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61198/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63271",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 20662,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-22T09:13:58.355885Z",
                    "last_modified_time": "2024-03-22T09:13:58.355900Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744087.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/20662/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-22T09:13:58.316046Z",
            "last_modified_time": "2024-06-12T05:13:09.172749Z",
            "date_published": null,
            "start_time": "2024-03-27",
            "end_time": "2024-04-16",
            "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,
            "short_description": {
                "fi": "Vuotalon yläkerran vitriineissä on esillä Puistopolun peruskoulun taideilmaisupainotuksen 9-luokkalaisten lopputöitä."
            },
            "provider": {
                "fi": "Puistopolun peruskoulu"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/FAC6FABD1EB629E1B0C55426683AE7C0/Taideilmaisupainotuksen_lopputyonayttely"
            },
            "description": {
                "fi": "<p>Vuotalon yläkerran vitriineissä on esillä Puistopolun peruskoulun taideilmaisupainotuksen 9-luokkalaisten lopputöitä.</p><p>Oppilaat ovat koko yläkoulun ajan työskennelleet monimateriaalisesti, eri taide- ja taitoaineiden oppiainerajoja ylittäen. Osa taideilmaisupainotuksen oppilaista on aloittanut painotuksen jo alakoulussa. Viimeisenä vuotenaan oppilaat ovat valinneet lopputöihinsä itse sekä aiheet, materiaalit että tekniikat. Esillä on tekijöidensä näköinen kokoelma maalauksia, veistoksia, käsitöitä, keramiikkaa, kokeellisia tekniikoita sekä yksi novelli.</p><p>Näyttelyn löydät 2. kerroksen käytävästä.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Taideilmaisupainotuksen lopputyönäyttely"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63271/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}