Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 10295,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=503&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=501&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:61757",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6829,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-27T08:12:27.529384Z",
                    "last_modified_time": "2024-02-06T13:23:01.058660Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743139.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6829/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-27T08:12:27.502993Z",
            "last_modified_time": "2024-02-06T13:23:01.101566Z",
            "date_published": null,
            "start_time": "2024-02-02T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Neljä pientä aikuista on lämminhenkinen sukellus rakkauden syvään päähän."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8EAA958AA46A85C83689F7DC10E08FA1/Nelja_pienta_aikuista_12_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Neljä pientä aikuista (12)"
            },
            "description": {
                "fi": "<p>Neljä pientä aikuista on lämminhenkinen sukellus rakkauden syvään päähän.</p><p>Neljä pientä aikuista tarttuu puhuttavaan aiheeseen rakkauden monista muodoista. Elokuva kertoo Juuliasta joka saa tietää, että hänen puolisollaan Matiaksella on sivusuhde Ennin kanssa, jolloin hän päättää avata avioliittonsa muille suhteille.</p><p>Selma Vilhusen ohjaaman ja käsikirjoittaman kotimaisen elokuvan pääosissa nähdään Jussi-palkittu Alma Pöysti ja Guldbagge-palkittu Eero Milonoff sekä Jussi-palkittu Oona Airola ja Pietu Wikström.</p><p>Ikäsuositus: 12<br>Kesto: 123 min<br>Ensi-ilta: 27.12.2023</p><p>Elokuvassa on suomenkielinen tekstitys.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61757/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61747",
            "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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6817,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-27T07:13:48.446876Z",
                    "last_modified_time": "2024-02-06T13:23:00.955874Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738420.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6817/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-27T07:13:48.416844Z",
            "last_modified_time": "2024-02-06T13:23:00.995875Z",
            "date_published": null,
            "start_time": "2024-02-02T11:00:00Z",
            "end_time": "2024-02-02T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "ArkMuoto 2024-päätapahtuma on siirretty laajamittaisten lakkojen vuoksi toukokuulle. Tarkka päivämäärä ilmoitetaan lähempänä tapahtuman uutta ajankohtaa.",
                "sv": "Evenemanget framflyttas, den nya informationen kommer att meddelas senare.",
                "en": "Due to the strikes the event is postponed to May 2024."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E23FB1A4B1D4118E7596B3BC32C441B6/SIIRRETTY_ArkMuoto_2024_Hyvassa_tilassa",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/E23FB1A4B1D4118E7596B3BC32C441B6/FRAMFLYTTAT_ArkMuoto_2024_I_ett_gott_utrymme",
                "en": "http://www.vuotalo.fi/en/events/event/E23FB1A4B1D4118E7596B3BC32C441B6/RESCHEDULED_ArcDesign_2024_In_Good_Space"
            },
            "location_extra_info": null,
            "name": {
                "fi": "SIIRRETTY / ArkMuoto 2024: Hyvässä tilassa",
                "sv": "FRAMFLYTTAT / ArkMuoto 2024: I ett gott utrymme",
                "en": "RESCHEDULED/ ArcDesign 2024: In Good Space"
            },
            "description": {
                "fi": "<p>ArkMuoto 2024-päätapahtuma on siirretty laajamittaisten lakkojen vuoksi toukokuulle. Tarkka päivämäärä ilmoitetaan lähempänä tapahtuman uutta ajankohtaa.</p><p>Tämänvuotisen ArkMuoto-festivaalin päätapahtuma järjestetään Helsingin Vuosaaressa yhteistyössä Vuotalon kanssa. Tapahtumaa voi myös seurata verkossa.</p><p>Rakennettu ja muotoiltu ympäristömme vaikuttaa suuresti hyvinvointiimme. Kauniit, toimivat ja kestävät tilat ja esineet helpottavat arkeamme ja tuovat iloa elämäämme. Voimme paremmin hyvin suunnitelluissa, laadukkaissa tiloissa. Arjen sujuvuudesta ja hyvinvoinnista huolehtiminen on entistä tärkeämpää globaalien kriisien ja suurten yhteiskunnallisten muutosten paineessa.</p><p>Koko iltapäivän mittaisen tapahtuman esityksissä ja puheenvuoroissa pohditaan erilaisista näkökulmista sitä, millaisia ovat hyvinvointia luovat tilat – sisätiloista rakennuksiin ja kaupunkeihin ja aina maapallon mittakaavaan saakka. Tänä vuonna painopisteenä on paikallisuus, ja ääneen pääsevät myös lapset, nuoret ja muut kaupunkilaiset.</p><p>ArkMuoto avaa uusia näkökulmia omaan rakennettuun ympäristöön. Mitä hyvä tila sinulle merkitsee? Tuoko se elämääsi esimerkiksi viihtyisyyttä, turvallisuutta, kestävyyttä, arjen sujuvuutta vai jotain ihan muuta? Tervetuloa mukaan!</p><p>Tapahtuma on kaikille avoin ja osallistuminen on ilmaista.<br>Ennakkoilmoittautumiset.</p><p>Ohjelma</p><p>13.00 Tervetuloa Vuosaareen!</p><p>Vuosaaren kaavoituksesta vastaava arkkitehti Petri Leppälä Helsingin kaupungin kaupunkiympäristön toimialalta ja Vuotalon johtaja Tuuli Tokkola toivottavat meidät tervetulleiksi Vuotaloon ja kertovat alueen kehityksestä ja tulevaisuudesta.</p><p>13.30 Arkkitehtuuri ja muotoilu osana lasten ja nuorten arkea</p><p>Kuulemme lasten ja nuorten tervehdykset Hintan koulusta Oulusta ja Arkkitehtuurikoulu Tiilestä Tampereelta, minkä jälkeen Vuosaaren lukion kuvaamataidon opettajat ja oppilaat kertovat, miten arkkitehtuuri ja muotoilu ovat läsnä kouluarjessa. Keskustelun juontaa Designmuseon museolehtori Hanna Kapanen.</p><p>14.15 Ajatuksia joustavista oppimisympäristöistä</p><p>Palkittuja oppimisympäristöjä suunnitelleet arkkitehdit Riina Palva Verstas Arkkitehdeilta ja Juha Salmenperä AFKS Arkkitehdeilta keskustelevat Helsingin kaupungin kasvatuksen ja koulutuksen toimialan yksikönjohtajan Vera Schulmanin ja Aalto-yliopiston Media Labin oppimisympäristöjen tutkimusryhmää johtaneen professori Teemu Leinosen kanssa joustavien oppimisympäristöjen uhista ja mahdollisuuksista. Keskustelun juontaa Archinfon viestintäpäällikkö Miina Jutila.</p><p>15.00 Kahvitauko</p><p>15.30 Onnellisuuden infrastruktuuri</p><p>JKMM Arkkitehtien mielestä onnellisuus syntyy, kun kulttuuri, tieto ja hyvinvointi kohtaavat. Toimiston töissä yhdistyvät arkkitehtuuri, sisustusarkkitehtuuri, kaupunkisuunnittelu, kalustemuotoilu, grafiikka ja taide. Arkkitehti Samuli Miettinen kertoo menestystä niittäneen toimiston tuoreista töistä, joiden suunnittelun keskiössä on kokonaisvaltainen hyvinvointi.</p><p>15.30 Samanaikaisesti: Vierailu Vuosaaren lukioon</p><p>Vuotalon naapurissa sijaitsevan lukion esittelevät lukion rehtori Marko Paju ja vararehtori Emma Pihkala yhdessä Verstas Arkkitehtien Riina Palvan kanssa. Mukaan vierailulle mahtuu 30 ensimmäiseksi ilmoittautunutta.</p><p>16.30 ArkMuoto 2024: Hyvässä tilassa -keskustelu</p><p>Kolme suunnittelualojen asiantuntijaa pohtivat rakennettuun ympäristöön liittyviä haasteita, joita heille heittää kolme rakennettua ympäristöä eri näkökulmista katsovaa yhteisöä: Vuosaaren nuorisotoimi, Arkkitehtuurikapina-Facebook-ryhmä ja RELEX-säätiö. Asiantuntijat ovat arkkitehti Tommy Lindgren Aalto-yliopistosta, maisema-arkkitehti Pia Kuusiniemi Loci Maisema-arkkitehdeilta ja palvelumuotoilija ja sistusarkkitehti Tiina Hirvanen 2Loops-muotoilutoimistosta. Keskustelun juontaa toimittaja Aino-Mari Tuuri.</p><p>17.45 Palkintoja!</p><p>Päivä päättyy juhlavasti kolmen palkinnonsaajan julkistukseen: SIO:n jakama Vuoden kalustesuunnittelija 2024 ja Suomen maisema-arkkitehtiliiton jakamat Vuoden maisema-arkkitehtuuriteko ja Vuoden nuori maisema-arkkitehti.</p>",
                "sv": "<p>Evenemanget framflyttas, den nya informationen kommer att meddelas senare.</p><p>I olika presentationer och anföranden talar man om välfärdsskapande utrymmen – från inomhus till byggnader och städer och ända upp till jordklotets skala. Barn, ungdomar och andra stadsbor får också komma till tal.</p>",
                "en": "<p>Due to the strikes the event is postponed to May 2024.</p><p>This year, the main event of the Finnish Architecture and Design Days will be organised in cooperation with Vuosaari House.</p><p>Various presentations and speeches will reflect on what spaces creating wellbeing are like – from indoor spaces to buildings and cities, all the way to the global scale. Children, young people and other residents of the city will also have the chance to make their voices heard.</p>"
            },
            "provider": {
                "fi": "Arkkitehtuurin tiedotuskeskus Archinfo, Finnish Design Info, Alvar Aalto -säätiö, Rakennustietosäätiö, Ornamo, Arkkitehtitoimistojen liitto, Suomen Arkkitehtiliitto, Suomen maisema-arkkitehtiliitto, Sisustusarkkitehdit SIO, AD-museo, ja EMMA – Espoon modernin taiteen museo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61747/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61775",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6997,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-04T15:14:22.247769Z",
                    "last_modified_time": "2024-02-06T13:23:00.856545Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741633.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6997/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-04T15:14:22.198637Z",
            "last_modified_time": "2024-02-06T13:23:00.899829Z",
            "date_published": null,
            "start_time": "2024-02-02T08:15:00Z",
            "end_time": "2024-02-02T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.",
                "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.",
                "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/07D6E0B2C2A9F3F0739A9945F38571CE/Skidikino",
                "sv": "http://www.stoa.fi/sv/evenemang/event/07D6E0B2C2A9F3F0739A9945F38571CE/Skidikino",
                "en": "http://www.stoa.fi/en/events/event/07D6E0B2C2A9F3F0739A9945F38571CE/Skidikino"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Skidikino",
                "sv": "Skidikino",
                "en": "Skidikino"
            },
            "description": {
                "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Näytöksessä esitetään neljä lyhytelokuvaa, joissa professori Balthazar ratkaisee mitä moninaisimpia ongelmia. Elokuvien teemat ystävyydestä, auttamisesta ja myötätunnosta ovat edelleen ajankohtaisia. Nämä jugoslavialaiset piirrosanimaatiot ovat klassikoita runsaan 50 vuoden takaa. Elokuvat ovat suomenkielisiä.</p>",
                "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min</p><p>Språk: finska</p><p>Anmälan för grupper på kultus.fi.</p>",
                "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.</p><p>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min</p><p>Language: Finnish</p><p>Registration at kultus.fi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61775/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61587",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6848,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T09:14:05.850022Z",
                    "last_modified_time": "2024-02-06T13:23:00.654325Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741630.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6848/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-28T09:14:05.821729Z",
            "last_modified_time": "2024-02-06T13:23:00.696347Z",
            "date_published": null,
            "start_time": "2024-02-02T07:15:00Z",
            "end_time": "2024-02-02T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.",
                "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.",
                "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/67B0100E382C6CCFE2D5F601BB437329/Skidikino",
                "sv": "http://www.stoa.fi/sv/evenemang/event/67B0100E382C6CCFE2D5F601BB437329/Skidikino",
                "en": "http://www.stoa.fi/en/events/event/67B0100E382C6CCFE2D5F601BB437329/Skidikino"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Skidikino",
                "sv": "Skidikino",
                "en": "Skidikino"
            },
            "description": {
                "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut. <br> <br>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Ikäsuositus: Päiväkodeille  <br>Paikka: musiikkisali  <br>Kesto n. 35–40 min <br>Kieli: suomi</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: <u><a href=\"https://kultus.fi/search?places=tprek%3A7259\">www.kultus.fi 10.1. klo 10 alkaen.</p>",
                "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.</p>",
                "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.</p><p>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61587/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61892",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://docpointfestival.fi/liput/"
                    },
                    "price": {
                        "fi": "12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7116,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-11T08:13:10.576244Z",
                    "last_modified_time": "2024-02-06T13:23:00.558853Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742646.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7116/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-11T08:13:10.559252Z",
            "last_modified_time": "2024-02-06T13:23:00.600186Z",
            "date_published": null,
            "start_time": "2024-02-01T18:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "True crimen etiikkaan pureutuvassa dokumentissa FBI:n riveistä haaveileva nainen törmää epäilyttävään onnettomuuteen kotikaupungissaan ja ottaa tehtäväkseen selvittää sen podcastinsa avulla."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/ACA747A923FB782C3D9B62E22D8F11F6/Citizen_Sleuth"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Citizen Sleuth – DocPoint – Helsingin dokumenttielokuvafestivaali"
            },
            "description": {
                "fi": "<p>True crimen etiikkaan pureutuvassa dokumentissa FBI:n riveistä haaveileva nainen törmää epäilyttävään onnettomuuteen kotikaupungissaan ja ottaa tehtäväkseen selvittää sen podcastinsa avulla.</p><p>Nuori nainen nimeltä Jaleayah Davis kuoli auto-onnettomuudessa Ohiossa vuonna 2011. Vai oliko kyseessä sittenkään onnettomuus? Samanikäinen true crime -fani Emily Nestor ryhtyi tutkimaan tapausta ja aloitti sen käsittelemiseksi oman podcastinsa, Mile Marker 181:n. Siitä tuli yllättävä menestys, ja nuori Nestor singahti true crime -median isojen nimien joukkoon.</p><p>Citizen Sleuth seuraa Nestoria hänen tehdessään podcast-jaksoja, haastatellessaan poliiseja ja asiantuntijoita ja käydessään true crime -fanitapahtumissa. Tarina kuitenkin elää, ja pian Nestorilla on vaikeita eettisiä ongelmia pohdittavanaan.</p><p>Alussa Nestor on idealistinen. Rikoksen uhrien on saatava oikeutta. Entä jos poliisi ei ole tehnyt työtään kunnolla? Tapahtumien edetessä hänen tilanteensa muuttuu: podcastin tekemisestä tulee ammatti ja tulonlähde. Tällöin salapoliisityön vaikuttimetkin muuttuvat. Entä jos uhkaa vaikuttaa siltä, että todisteet viittaavat sellaiseen lopputulokseen, joka ei kiinnosta kuuntelijoita?</p><p>Emily Nestor on kotoisin Länsi-Virginian Appalakeilta, alueelta, joka ei Yhdysvaloissa ole tunnettu sivistyksestä ja sofistikoituneisuudesta. Nestorin lapsuuden esikuva oli Uhrilampaat-elokuvan päähenkilö, FBI-agentti Clarice Starling, joka oli niin ikään Appalakeilta kotoisin. Nestor kuitenkin arveli, ettei hänen kotikonnuiltaan todellisuudessa ponnisteta niin hienoihin hommiin, ja teki töitä baarimikkona ja tarjoilijana ennen podcast-menestystään. Elokuvan miljöö onkin yksi sen suurista vahvuuksista. Se kuvaa sellaista Yhdysvaltojen kolkkaa, jota harvemmin nähdään.</p><p>Juhana Pettersson</p>"
            },
            "provider": {
                "fi": "DocPoint-elokuvatapahtumat ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61892/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61599",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6461,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T13:15:23.671094Z",
                    "last_modified_time": "2024-02-06T13:23:00.458904Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737214.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6461/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-07T13:15:23.629324Z",
            "last_modified_time": "2024-02-06T13:23:00.502140Z",
            "date_published": null,
            "start_time": "2024-02-01T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nordic Banjo on kahden suomalaisen huippubanjistin muodostama duo, jonka ohjelmisto koostuu tunnetuista pohjoismaisen kansanmusiikin kappaleista sovitettuna viisikieliselle bluegrass-banjolle ja kitaralle.",
                "sv": "Traditionell nordisk folkmusik omarrangerad för 5-strängad banjo och gitarr.",
                "en": "Nordic Banjo is a duo formed by two Finnish banjoists, whose repertoire consists of well-known pieces of Nordic folk music arranged for the five-string bluegrass banjo and guitar."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/671667A34BBE3D2BF85F1F0E94717652/Nordic_Banjo",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/671667A34BBE3D2BF85F1F0E94717652/Nordic_Banjo",
                "en": "http://www.malmitalo.fi/en/events/event/671667A34BBE3D2BF85F1F0E94717652/Nordic_Banjo"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Nordic Banjo",
                "sv": "Nordic Banjo",
                "en": "Nordic Banjo"
            },
            "description": {
                "fi": "<p>Nordic Banjo on kahden suomalaisen huippubanjistin muodostama duo, jonka ohjelmisto koostuu tunnetuista pohjoismaisen kansanmusiikin kappaleista sovitettuna viisikieliselle bluegrass-banjolle ja kitaralle.</p><p>Duon tavoitteena on tuoda amerikkalainen banjo osaksi pohjoismaista pelimannikulttuuria ja toisaalta tehdä suomalaista perinnemusiikkia tunnetuksi maailmalla.</p><p>Nordic Banjo yhdistää useat pohjoiseurooppalaiset perinteet, jotka juontavat juurensa metsäsuomalaisten savuisista saunoista ja muinaisten skandinaavien yhteisöllisistä pitkätaloista. Sovitukset laajentavat kunnioittavasti satojen vuosien ajan perheiden, sukulaisten ja naapureiden kautta säilyneitä melodisia ja rytmisiä tekstuureja.</p><p>Afroamerikkalaisen viisikielisen selostamana Nordic Banjo osuu maailmanmusiikin ytimeen. Banjolle idiomaattiset näppäilykuviot ja bordunat yhdistettynä boreaaliseen ääni-ilmastoon luovat mystisen ilmapiirin, jossa voi samanaikaisesti kuulla lukemattomia arkaaisia tarinoita eri kielillä ja murteilla kerrottuna. Nordic Banjon syvin olemus kiteytyy osuvasti suomen kielen sanassa viisikielinen: universaali ääni, joka puhuttelee ihmisiä mantereiden välillä.</p><p><b>Lauri Häme</b> on helsinkiläinen muusikko ja lauluntekijä. Vuodesta 2004 hän on esiintynyt banjistina ja laulajana indie folk -yhtye Rautakourassa. Instrumentalistina hän kokeilee jatkuvasti uusia perinteisten ja nykyaikaisten äänimaisemien yhdistelmiä.</p><p><b>Miihkali Jaatinen</b> on monipuolinen musiikin ammattilainen ja yksi Suomen arvostetuimmista banjisteista. Toimi hän sitten kitaristina, banjistina tai tuottajana, leimaa hänen työskentelyään toisaalta tekemisen tinkimättömyys, toisaalta ennakkoluuloton luova heittäytyminen.</p><p>Malmitalon Nordic Banjo -konsertin erikoisvieraana esiintyy <b>Paula Wolski</b>, jonka tuotannossa punoutuvat yhteen vaikutteet suomalaisesta kansanmusiikista ja amerikkalaisesta juurimusiikista.</p><p>Kokoonpano:<br>Lauri Häme - banjo<br>Miihkali Jaatinen - kitara ja banjo</p><p>Kesto: 1h</p>",
                "sv": "<p>Traditionell nordisk folkmusik omarrangerad för 5-strängad banjo och gitarr.</p><p>Förutom musiken hörs på konserten historier om de magiska melodiernas rötter och uråldriga nordliga kultur samt om banjos mytiska resa från Afrika via Amerika till Europa.</p><p><b>Lauri Häme</b> banjo<br><b>Miihkali Jaatinen</b> gitarr ja banjo</p><p>Nattens speciell gäst <b>Paula Wolski</b></p>",
                "en": "<p>Nordic Banjo is a duo formed by two Finnish banjoists, whose repertoire consists of well-known pieces of Nordic folk music arranged for the five-string bluegrass banjo and guitar.</p><p>The goal of the duo is to bring the American banjo into the Nordic fiddle-driven folk culture and on the other hand to increase the recognition of Finnish traditional music worldwide.</p><p>The hand-picked Nordic Banjo collection mixes together several Northern European traditions originating from the smoky saunas of Forest Finns and the shared longhouses of Norsemen. The work respectfully extends the melodic and rhythmic textures passed down through families, relatives and neighbors over hundreds of years.</p><p>Narrated by the Afro-American five-string, the Nordic Banjo melange settles itself in the core of what is known as World Music. The rolls and drones which are idiomatic to the banjo combined with the boreal sound climate create a mystical atmosphere where a myriad of archaic story layers are being told concurrently in different languages and dialects. This spirit of Nordic Banjo is aptly captured by the Finnish word viisikielinen, which refers to both five-stringed and pentalingual: A universal voice that speaks to people across the continents.</p><p><b>Lauri Häme</b> is a musician and songwriter from Helsinki, Finland. Since 2004 he has been performing with the indie folk band Rautakoura on banjo and vocals. As an instrumentalist he is constantly experimenting with new combinations of traditional and contemporary sounds.</p><p><b>Miihkali Jaatinen</b> is a versatile music professional and one of the most respected banjo pickers in Finland. Whether he is working as a guitarist, banjoist or producer, he is known for both ambitious work ethics and unprejudiced creativity.</p><p><b>Paula Wolski</b> will be performing as a special guest in the concert. Wolski's music is a fusion of Finnish traditional music and American roots music.</p><p>Line up<br>Lauri Häme – banjo<br>Miihkali Jaatinen - guitar and banjo</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61599/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61891",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://docpointfestival.fi/liput/"
                    },
                    "price": {
                        "fi": "12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7115,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-11T08:13:10.451659Z",
                    "last_modified_time": "2024-02-06T13:23:00.355032Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742645.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7115/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-11T08:13:10.434870Z",
            "last_modified_time": "2024-02-06T13:23:00.394284Z",
            "date_published": null,
            "start_time": "2024-02-01T16:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Talibaniin soluttautuva elokuvantekijä seuraa henkensä uhalla, mitä tapahtuu CIA:n entisessä tukikohdassa sen jälkeen, kun Yhdysvallat poistuu Afganistanista."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1A54717A1CA07179BC9BC3A64BE73603/Hollywoodgate"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Hollywoodgate – DocPoint – Helsingin dokumenttielokuvafestivaali"
            },
            "description": {
                "fi": "<p>Talibaniin soluttautuva elokuvantekijä seuraa henkensä uhalla, mitä tapahtuu CIA:n entisessä tukikohdassa sen jälkeen, kun Yhdysvallat poistuu Afganistanista.</p><p>Yhdysvallat lopetti miehityksensä Afganistanissa vuoden 2021 keväällä. Lähtiessään he jättivät jälkeensä noin seitsemän miljardin dollarin edestä sotilaskalustoa.</p><p>Ohjaaja Ibrahim Nash'at saapui Afganistaniin pian Yhdysvaltojen lähdön jälkeen aikeenaan dokumentoida Talibanin ensiaskeleita maan hallinnossa. Hän seurasi vuoden ajan Taliban-komentaja Mawlawi Mansouria ja tämän joukkoja heidän ihmetellessään Yhdysvaltojen miehityksen jäänteitä.</p><p>Elokuva Hollywoodgate, joka on nimetty yhden tapahtumapaikkansa, entisen Yhdysvaltojen tukikohdan mukaan, käsittelee Talibania. Sissisotilaat pohtivat valtiohallinnon haasteita, usein hyvin arkisella tasolla. Yksi toistuva ongelma on, että osa Yhdysvaltojen jättämistä lääkkeistä on vanhentuneita ja pitää erotella vielä käyttökelpoisista. Sotilasparaatissa nähdään itsemurhapommitusjoukot.</p><p>Taliban-sotilaat pääsevät tonkimaan yhdysvaltalaisten sotilaiden viinakaappeja ja ihmettelemään käsidesitelinettä. Perustellessaan naisten oikeuksien rajoittamista soturit kuulostavat siltä mitä ovatkin: maalaispojilta, joille suuren maailman kuviot ovat hämmennyksen aihe.</p><p>Juhana Pettersson</p>"
            },
            "provider": {
                "fi": "DocPoint-elokuvatapahtumat ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61891/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61890",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://docpointfestival.fi/liput/"
                    },
                    "price": {
                        "fi": "12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7114,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-11T08:13:10.365994Z",
                    "last_modified_time": "2024-02-06T13:23:00.262518Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742644.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7114/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-11T08:13:10.347594Z",
            "last_modified_time": "2024-02-06T13:23:00.303357Z",
            "date_published": null,
            "start_time": "2024-02-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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Raiskaajansa murhasta kuolemaan tuomitun opiskelijan elämästä kertova elokuva puhuu naisten oikeuksien puolesta ja kunnioittaa teloitettujen iranilaisten muistoa."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D809C729385672F59B45DEB20F3CFC1A/Seven_Winters_in_Tehran"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Seven Winters in Tehran – DocPoint – Helsingin dokumenttielokuvafestivaali"
            },
            "description": {
                "fi": "<p>Raiskaajansa murhasta kuolemaan tuomitun opiskelijan elämästä kertova elokuva puhuu naisten oikeuksien puolesta ja kunnioittaa teloitettujen iranilaisten muistoa.</p><p>Raiskaajansa murhasta kuolemaan tuomitun opiskelijan elämästä kertova elokuva puhuu naisten oikeuksien puolesta ja kunnioittaa teloitettujen iranilaisten muistoa.</p><p>7. heinäkuuta 2007. Sisustussuunnittelijana työskentelevä 19-vuotias Reyhaneh Jabbari lähtee sovitusti asiakastapaamiseen, mutta ymmärtääkin pian astuneensa ansaan. Hän puukottaa raiskausta yrittäneen miehen itsepuolustuksena ja pakenee paikalta. Mahdollisuudet saada oikeutta ovat olemattomat, sillä vaikutusvaltaista miestä jäävät puolustamaan tämän kunniaa vaaliva perhe tukenaan valtion väkivaltakoneisto ja patriarkaalinen yhteiskunta.</p><p>Taistelu epäoikeudenmukaisuutta vastaan kestää seitsemän vuotta. Tuona aikana Reyhaneh kulki vankilasta toiseen. Hänen perheensä, joka ei aiemmin tiennyt mitään maan oikeusjärjestelmästä, huomaa yhtäkkiä elävänsä keskellä painajaista. Dokumentti kuvaa pitkää epätietoisuuden aikaa, jolloin heidän asiansa saa tuen osoituksia ympäri maailman.</p><p>Kansainvälisestä vastustuksesta huolimatta Reyhaneh teloitettiin hirttämällä 25. lokakuuta 2014. Ohjaaja Steffi Niederzoll ja Reyhaneh'n äiti Shole Pakravan tekivät yhteistyötä kertoakseen tarinan, joka koskettaa myös muita iranilaisia perheitä: Iranissa teloitettiin yli 600 ihmistä vuonna 2023. Elokuvan tarkoituksena on antaa uhreille nimi, minkä puolesta puhuvat vanhat kotivideot, perheenjäsenten haastattelut sekä vankilassa kirjoitetut kirjeet, joille näyttelijä Zar Amir Ebrahimi lainaa äänensä.</p><p>Omar Fasolah</p>"
            },
            "provider": {
                "fi": "DocPoint-elokuvatapahtumat ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61890/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61497",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-7/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6338,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-30T11:13:35.073318Z",
                    "last_modified_time": "2024-02-06T13:23:00.157251Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736502.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6338/?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-30T11:13:35.051391Z",
            "last_modified_time": "2024-02-06T13:23:00.199662Z",
            "date_published": null,
            "start_time": "2024-02-01T08:00:00Z",
            "end_time": "2024-02-01T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/320D07B30A3E2B6A6322FBE92F5CBAE7/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/320D07B30A3E2B6A6322FBE92F5CBAE7/Konst_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/320D07B30A3E2B6A6322FBE92F5CBAE7/Open_Art_Studio_for_Toddlers"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille",
                "sv": "Konst för småbarn",
                "en": "Open Art Studio for Toddlers"
            },
            "description": {
                "fi": "<p>Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.<br> <br><b>Osallistuminen </b><br>Taidetta taaperoille- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61497/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61922",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7402,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-29T09:13:18.370271Z",
                    "last_modified_time": "2024-02-06T13:23:00.050239Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743991.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7402/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-29T09:13:18.332041Z",
            "last_modified_time": "2024-02-06T13:23:00.099446Z",
            "date_published": null,
            "start_time": "2024-02-01",
            "end_time": "2024-02-29",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kanneltalon kahvilassa on esillä Suvi Innasen grafiikkaa helmikuussa 2024."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2BAB09A3CA07C1F1BA96DB03CEDC79CF/Suvi_Innasen_grafiikkaa"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Suvi Innasen grafiikkaa – Haagan Taideseura"
            },
            "description": {
                "fi": "<p>Kanneltalon kahvilassa on esillä Suvi Innasen grafiikkaa helmikuussa 2024.</p><p>\"Olen ollut Haagan Taideseuran jäsen vuodesta 1993. Taide ja taiteileminen on kuulunut elämääni pienestä pitäen. Lapsena piirtelin aina, kun sain käsiini paperia. Kouluikäisenä aloin maalata öljyväreillä ja myöhemmin siirryin käyttämään temperavärejä ja akvarelleja.</p><p>Vuodesta 1996 metalligrafiikan peruskurssin jälkeen aloin tehdä metalligrafiikan töitä, joita teen edelleen. Opiskelen grafiikankurssilla edelleen, sillä uudet tekniikat tuovat tekemiseen lisämahdollisuuksia.</p><p>Lisäksi vedostamisessa voi monin tavoin vaikuttaa työn lopputulokseen. Valmis grafiikan lehti onkin usein yllätys. Mutta siinä onkin grafiikan teon lumo.\" Suvi Innanen</p><p>Haagan Taideseura ry on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61922/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61741",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://docpointfestival.fi/event/masterclass-mark-cousins/"
                    },
                    "price": {
                        "fi": "20 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6729,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-19T14:12:50.525959Z",
                    "last_modified_time": "2024-02-06T13:22:59.954505Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742643.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6729/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-19T14:12:50.510628Z",
            "last_modified_time": "2024-02-06T13:22:59.995906Z",
            "date_published": null,
            "start_time": "2024-01-31T18:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Uusimmassa elokuvassaan Mark Cousins tarttuu propagandaelokuvan kulmakiveen ja tutkii fasistista liikettä ennen sen valtaannousua 1920-luvun Italiassa."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0FAC5EFF5C10482657B5368FA970E996/The_March_on_Rome"
            },
            "location_extra_info": null,
            "name": {
                "fi": "The March on Rome – DocPoint – Helsingin dokumenttielokuvafestivaali"
            },
            "description": {
                "fi": "<p>Uusimmassa elokuvassaan Mark Cousins tarttuu propagandaelokuvan kulmakiveen ja tutkii fasistista liikettä ennen sen valtaannousua 1920-luvun Italiassa.</p><p>Valheet koukuttavat, ja elokuvalla on vaarallinen puolensa. Tuotteliaan elokuvantekijän ja esseistin Mark Cousinsin mielenkiinnon kohteena on, miten Benito Mussolinin johtamaa Italian fasistista liikettä kuvattiin 1920-luvulla ennen sen valtaannousua. Erityisesti suurennuslasin alla on pseudodokumenttielokuva A Noi!, propagandaelokuvan kulmakivi, joka kuvaa fasistien marssia Roomaan vuonna 1922.</p><p>Propaganda loi fasismille myyttisen hohteen, vaikka se rakentui ilmiselvien valheiden varaan. Mussolini käytti myös pelottelua ja väkivaltaa vallan haalimiseksi. Arkistomateriaalin vastapainona nähdään myös lavastettuja kohtauksia, joissa näyttelijä Alba Rohrwacher esittää naista, joka uskoo vahvasti fasismiin ja oppii liian myöhään ideologian todelliset seuraukset.</p><p>Mussolinin fasistinen hallinto pysyi vallassa Italiassa vuosina 1922–1943. Elokuvan keskeinen viesti on, että lopulta koittanut tappio ei merkinnyt loppua fasismille vaikutusvaltaisena liikkeenä, vaan nykypäivän äärioikeiston liikehdintään ympäri maailmaa on suora yhteys. Elokuvan alussa nähdään leike vuonna 2016 Yhdysvaltain presidentiksi nousseen Donald Trumpin haastattelusta. Kysyttäessä, miksi hän twiittasi lainauksen Mussolinilta (\"On parempi elää päivä leijonana kuin sata vuotta lampaana.\"), Trump ei vaikuta edes tietävän, kuka Mussolini oli.</p><p>Paavo Ihalainen</p><p>Masterclass-tilaisuuden liput (20 €) ovat myynnissä nyt! Lisäksi myynnissä on lippupaketti (40 €), joka sisältää pääsyn Masterclass-tilaisuuteen sekä kaikkiin Cousinsin elokuvien näytöksiin festivaalin aikana. Elokuvanäytösten yksittäisliput tulevat myyntiin 11. tammikuuta, jolloin festivaalin koko ohjelmisto julkistetaan.</p>"
            },
            "provider": {
                "fi": "DocPoint-elokuvatapahtumat ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61741/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61258",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/stage-of-change-3536311/",
                        "sv": "https://www.lippu.fi/artist/stoa/stage-of-change-3536311/",
                        "en": "https://www.lippu.fi/artist/stoa/stage-of-change-3536311/"
                    },
                    "price": {
                        "fi": "27 € / 19 €",
                        "sv": "27 € / 19 €",
                        "en": "27 € / 19 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6174,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T12:13:16.801842Z",
                    "last_modified_time": "2024-02-06T13:22:59.851363Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739200.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6174/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T12:13:16.763249Z",
            "last_modified_time": "2024-02-06T13:22:59.891436Z",
            "date_published": null,
            "start_time": "2024-01-31T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Stage of Change on nykysirkusesitys muutoksesta. Teoksessa kolme ilma-akrobaattia kulkevat rengastrapetsien ja muutosprosessien läpi.",
                "sv": "Stage of Change är en nutidscirkusföreställning om förändring. I verket passerar tre luftakrobater genom ringtrapetser och via konsten att göra på annat sätt genom skedena i omvandlingsprocesserna.",
                "en": "Stage of Change is a contemporary circus show about change. In the performance, three aerialists pass through the stages of a change process through aerial hoops and by doing otherwise."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/F43AFA4BFE3A4BB34B2B558524440476/Pentinsaari-Schonberg-Utriainen_Stage_of_Change",
                "sv": "http://www.stoa.fi/sv/evenemang/event/F43AFA4BFE3A4BB34B2B558524440476/Pentinsaari-Schonberg-Utriainen_Stage_of_Change",
                "en": "http://www.stoa.fi/en/events/event/F43AFA4BFE3A4BB34B2B558524440476/Pentinsaari-Schonberg-Utriainen_Stage_of_Change"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Pentinsaari-Schönberg-Utriainen: Stage of Change – ENSI-ILTA",
                "sv": "Pentinsaari-Schönberg-Utriainen: Stage of Change – PREMIÄR",
                "en": "Pentinsaari-Schönberg-Utriainen: Stage of Change – PREMIERE"
            },
            "description": {
                "fi": "<p>Stage of Change on nykysirkusesitys muutoksesta. Teoksessa kolme ilma-akrobaattia kulkevat rengastrapetsien ja muutosprosessien läpi.</p><p>Kuinka alttiita olemme muuttumaan toisten vaikutuksesta? Milloin muutos kumpuaa itsestämme? Mitä meissä tapahtuu kun muutumme?</p><p>Toisinaan muutosta tavoitellaan tietoisesti ja joskus se on lähes huomaamatonta ja orgaanista. Usein kuitenkin prosessissa tapahtuu repsahduksia ja taantumaa, eikä muutos välttämättä ole suoraviivaista tai pysyvää. Stage of Change tarjoaa kolme näkökulmaa siitä, kuinka vaikutumme toinen toisistamme sekä ympäristöstämme ja miten erilaisia muutosprosessit voivat olla.</p><p>Konsepti ja koreografiat: Riikka Pentinsaari, Pinja Schönberg ja Maarit Utriainen<br>Esiintyjät: Pentinsaari, Schönberg, Utriainen<br>Pukusuunnittelu ja pukujen toteutus: Suvi Hänninen<br>Äänisuunnittelu ja tuotanto: Konsta Leinonen<br>Valosuunnittelu: Niko Mattila ja Maarit Utriainen<br>Tuotanto: Zero Gravity Company</p><p>Kesto: n. 50 min<br>Ikäsuositus: 7+</p><p>Teosta ovat tukeneet:<br>Espoon kaupunki<br>Jenny ja Antti Wihurin rahasto<br>Taiteen edistämiskeskus<br>Suomen Kulttuurirahasto, Uudenmaan rahasto<br>Espoon sirkus- ja teatterikoulu<br>Hiljaisuus<br>Näyttämö<br>Old mine Outokumpu Residenssi<br>Sirkus Faktori</p>",
                "sv": "<p>Stage of Change är en nutidscirkusföreställning om förändring. I verket passerar tre luftakrobater genom ringtrapetser och via konsten att göra på annat sätt genom skedena i omvandlingsprocesserna.</p><p>Hur lätt kan vi ändras under andras inflytande? När kommer förändringen från oss själva? Vad händer med oss när vi förändras?</p><p>Längd: ca. 50 min.<br>Åldersrekommendation: 7+</p>",
                "en": "<p>Stage of Change is a contemporary circus show about change. In the performance, three aerialists pass through the stages of a change process through aerial hoops and by doing otherwise.</p><p>How prone are we to change under the influence of others? When does change come from ourselves? What happens to us when we change?</p><p>Duration: approx. 50 min<br>Age recommendation: 7+</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61258/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61802",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/roots-musiikin-evoluutio-sarja-malmitalo-17956636/"
                    },
                    "price": {
                        "fi": "20 € / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6880,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T12:13:57.818300Z",
                    "last_modified_time": "2024-02-06T13:22:59.762538Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742033.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6880/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-28T12:13:57.770667Z",
            "last_modified_time": "2024-02-06T13:22:59.802003Z",
            "date_published": null,
            "start_time": "2024-01-31T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Malmitalon Roots-musiikin evoluutio -keikkasarja käsittelee juurevan musiikin kehitystä konsertti kerrallaan keväällä 2024. Lavalla Suomen terävin juurimusiikin kärki!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/91B5E7FFD8D49D96A7241F3B76C785F7/Jo_Buddy_s_One_Man_Stomptet_ja_Ismo_Haavisto"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jo' Buddy's One Man Stomptet ja Ismo Haavisto – Roots-musiikin evoluutio vol. 1"
            },
            "description": {
                "fi": "<p>Malmitalon Roots-musiikin evoluutio -keikkasarja käsittelee juurevan musiikin kehitystä konsertti kerrallaan keväällä 2024. Lavalla Suomen terävin juurimusiikin kärki!</p><p>Nykyisin Englannin Lontoossa asuva, elämäntyöpalkittu laulaja-lauluntekijä-multi-instrumentalisti <b>Jo' Buddy</b>, juhlii 42:tta vuotta tienpäällä. Hän esiintyy Malmitalolla kanssa Jo' Buddy's One Man Stomptet -kokoonpanonsa, jonka tuore \"Lockdown Sessions & Beyond Vol. 1\" -debyyttialbumi on saanut erinomaisen vastaanoton myös kansainvälisesti.</p><p>Kyseessä on hänen 8. sooloalbuminsa ja kaiken kaikkiaan 14. pitkäsoitto laulaja-kitaristina. Vuosikymmenet tienpäällä, tuhannet esiintymiset 16 maassa sekä sadat levytyssessiot ovat hioneet hänestä kansainvälisesti arvostetun artistin, jonka omaperäisiä soundeja ja biisejä ollaan jäljitelty ja esitetty ympäri maailman, jo vuosikymmenien ajan.</p><p>Jo' Buddy's One Man Stomptet tarjoaa ajattoman herkullisen läpileikkauksen USA:n eteläosien rullaavien juurimusiikkityylien luonnollisesta synteesistä, jossä swing, rhythm & blues, country ja rock & roll lyövät kättä, lisäämällä soppaan oman välittömästi tunnistettavan, elämäniloa pursuavan soundinsa, pitäen tunnelman katossa läpi keikan.</p><p><b>Ismo Haavisto</b> kuuluu Suomi-bluesin taidokkaaseen ammattilaiskaartiin. Yli 30-vuoden blueskokemus takaa vankan ammattitaidon ja syvältä sielusta kumpuavan tulkinnan. Hän keikkailee ympäri Suomea ja ulkomaita.</p><p>Kesto: 110 min sis. väliajan 20 min.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61802/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61740",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://docpointfestival.fi/event/masterclass-mark-cousins/"
                    },
                    "price": {
                        "fi": "20 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6728,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-19T14:12:50.418928Z",
                    "last_modified_time": "2024-02-06T13:22:59.664576Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742642.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6728/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-19T14:12:50.404623Z",
            "last_modified_time": "2024-02-06T13:22:59.708958Z",
            "date_published": null,
            "start_time": "2024-01-31T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Supersuositun Elokuvan tarina -dokumenttisarjan luoja Mark Cousins saapuu DocPointin vieraaksi tammikuussa. BAFTA-palkittu dokumentaristi, kriitikko ja kirjoittaja esiintyy Masterclass-tilaisuudessa keskiviikkona 31.1. Savoy-teatterissa. Lisäksi Cousinsin uralta on valikoitu kolme elokuvaa festivaalin ohjelmistoon."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9529279D5A3380C5796D9908D7EDBEF0/Masterclass_Mark_Cousins"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Masterclass: Mark Cousins – DocPoint – Helsingin dokumenttielokuvafestivaali"
            },
            "description": {
                "fi": "<p>Supersuositun Elokuvan tarina -dokumenttisarjan luoja Mark Cousins saapuu DocPointin vieraaksi tammikuussa. BAFTA-palkittu dokumentaristi, kriitikko ja kirjoittaja esiintyy Masterclass-tilaisuudessa keskiviikkona 31.1. Savoy-teatterissa. Lisäksi Cousinsin uralta on valikoitu kolme elokuvaa festivaalin ohjelmistoon.</p><p>Ydinvoiman historiaan keskittyvä Atomic: Living in Dread and Promise (2015) ja fasismin syntyä ja tuhoa 30-luvun Italiassa tarkasteleva The March on Rome (2022) resonoivat pelottavankin voimakkaasti ajassamme. A Story of Children and Film (2013) taas on ajaton kertomus siitä, kuinka elokuvissa on kuvattu lapsuutta eri aikakausina.</p><p>Masterclass-tilaisuuden liput (20 €) ovat myynnissä nyt! Lisäksi myynnissä on lippupaketti (40 €), joka sisältää pääsyn Masterclass-tilaisuuteen sekä kaikkiin Cousinsin elokuvien näytöksiin festivaalin aikana. Elokuvanäytösten yksittäisliput tulevat myyntiin 11. tammikuuta, jolloin festivaalin koko ohjelmisto julkistetaan.</p>"
            },
            "provider": {
                "fi": "DocPoint-elokuvatapahtumat ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61740/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:62990",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7358,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-25T09:13:10.651698Z",
                    "last_modified_time": "2024-02-06T13:22:59.564904Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737753.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7358/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-25T09:13:10.611664Z",
            "last_modified_time": "2024-02-06T13:22:59.607503Z",
            "date_published": null,
            "start_time": "2024-01-31T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Evan elämä juuri eläkkeelle jäätyään voisi olla paremminkin. Evan ex-mies on muuttanut kadun toiselle puolelle uuden vaimonsa kanssa.",
                "sv": "Livet som nybliven pensionär kunde vara bättre. Evas exman flyttar in tvärs över gatan med sin nya fru och Evas son verkar obegripligt nog tröttna på sin mammas daltande och vill ha mer egen tid, utan hennes överbeskyddande hjälp. Vad ska Eva göra av all tid?",
                "en": "Drama comedy follows Eva, who is left with time on her hands, but develops a friendship with the great actor Harald Skoog realizing that life is not yet over, in fact, it may have even just begun."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2BCC7FE400CF9B6A990C5D56CA1AE853/Onsdagsbio_Toinen_naytos",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/2BCC7FE400CF9B6A990C5D56CA1AE853/Onsdagsbio_Andra_akten",
                "en": "http://www.vuotalo.fi/en/events/event/2BCC7FE400CF9B6A990C5D56CA1AE853/Onsdagsbio_Second_Act"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Onsdagsbio: Toinen näytös",
                "sv": "Onsdagsbio: Andra akten",
                "en": "Onsdagsbio: Second Act"
            },
            "description": {
                "fi": "<p>Evan elämä juuri eläkkeelle jäätyään voisi olla paremminkin. Evan ex-mies on muuttanut kadun toiselle puolelle uuden vaimonsa kanssa.</p><p>Evan aikuinen poika on jostain käsittämättömästä syystä kyllästynyt ylisuojelevan äitinsä paapomiseen ja haluaakin enemmän omaa aikaa. Mitä Evan pitäisi tehdä kaikella vapaa-ajallaan?</p><p>Evalle tarjoutuu yllättäen mahdollisuus työkeikkaan, josta hän ei voi kieltäytyä – suuri tähtinäyttelijä, hieman erikoinen Harald Skoog, on saanut aivohalvauksen ja tarvitsee kuntoutusta omassa kodissaan. Se mikä alkaa katastrofina, kasvaa lämpimäksi ystävyydeksi, orastavaksi elämäniloksi ja toivoksi siitä, ettei elämä olekaan vielä ohitse. Itse asiassa se ei ehkä ole edes vielä alkanut.</p><p>Ohjaus Mårten Klingberg<br>Käsikirjoitus: Vera Kiiskinen, Anna Heinämaa<br>Näyttelijät: Lena Olin, Rolf Lassgård, Lars Väringer, Anneli Martini, Charlie Gustafsson</p><p>Genre: Draamakomedia<br>Kesto: 1h 54min<br>Tuotantomaa: Ruotsi 2023<br>Kieli: Ruotsi<br>Tekstitys: Suomi<br>Ikäraja: Sallittu</p><p>Vapaa pääsy</p>",
                "sv": "<p>Livet som nybliven pensionär kunde vara bättre. Evas exman flyttar in tvärs över gatan med sin nya fru och Evas son verkar obegripligt nog tröttna på sin mammas daltande och vill ha mer egen tid, utan hennes överbeskyddande hjälp. Vad ska Eva göra av all tid?</p><p>Ett extraknäck dyker upp som Eva inte kan motstå – den store stjärnskådespelaren, den excentriske Harald Skoog, har drabbats av en stroke och behöver rehabilitering i sitt eget hem. Vad som börjar som en katastrof växer till varm vänskap, spirande livsglädje och till ett hopp om att livet inte är över. Faktum är att det kanske inte ens har börjat.</p><p>Regi: Mårten Klingberg<br>Script: Vera Kiiskinen, Anna Heinämaa<br>Skådespelare: Lena Olin, Rolf Lassgård, Lars Väringer, Anneli Martini, Charlie Gustafsson</p><p>Genre:Dramakomedi <br>Speltid: 1h 54min<br>Språk: Svenska<br>Text: Finska<br>Åldersgräns: T <br>Fri entré</p>",
                "en": "<p>Drama comedy follows Eva, who is left with time on her hands, but develops a friendship with the great actor Harald Skoog realizing that life is not yet over, in fact, it may have even just begun.</p><p>Director: Mårten Klingberg<br>Script: Vera Kiiskinen, Anna Heinämaa<br>Actors: Lena Olin, Rolf Lassgård, Lars Väringer, Anneli Martini, Charlie Gustafsson<br>Duration: 1h 54min<br>Language: Swedish<br>Subtitles: Finnish<br>Free entry</p><p>Sweden 2023</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:62990/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61912",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-poor-things-3570483/"
                    },
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7177,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-15T12:13:50.453490Z",
                    "last_modified_time": "2024-02-06T13:22:59.474457Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743827.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7177/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-15T12:13:50.426407Z",
            "last_modified_time": "2024-02-06T13:22:59.514817Z",
            "date_published": null,
            "start_time": "2024-01-31T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Elokuvantekijä Yorgos Lanthimos ja tuottaja Emma Stone tuovat valkokankaalle mielikuvituksellisen tarinan Bella Baxterin (Stone) uskomattomasta evoluutiosta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9F6C621FF87D77B685E76345BF029085/Poor_things_16_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Poor things (16) – Kino Helios"
            },
            "description": {
                "fi": "<p>Elokuvantekijä Yorgos Lanthimos ja tuottaja Emma Stone tuovat valkokankaalle mielikuvituksellisen tarinan Bella Baxterin (Stone) uskomattomasta evoluutiosta.</p><p>Bella on nuori nainen, jonka nerokas mutta omintakeinen tiedemies tri Godwin Baxter (Willem Dafoe) herättää henkiin. Aluksi Bella on innokas opettelemaan elämää Baxterin siipien suojassa. Elämänjanossaan hän kuitenkin karkaa sliipatun ja paheellisen lakimiehen Duncan Wedderburnin (Mark Ruffalo) mukana myrskyisälle matkalle halki mantereiden. Sen myötä aikansa ennakkoluulot karistaneesta Bellasta kasvaa vankkumaton vapauden ja tasa-arvon puolustaja.</p><p>Poor Things voitti Venetsian elokuvajuhlien pääpalkinnon ja se sai Suomen ensiesityksensä tuoreeltaan Rakkautta ja Anarkiaa -festivaalin R&A-gaalan elokuvana syyskuussa. Emma Stone palkittin Golden Globella suorituksestaan parhaana naisnäyttelijänä komediassa tai musikaalissa. Elokuva voitti myös parhaan elokuvan (komedia tai musikaali) Golden Globe -palkinnon.</p><p>Ikäraja 16<br>Kesto 142 min</p><p>Ensi-ilta 12.1.2024</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61912/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61681",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6933,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-29T13:13:01.641001Z",
                    "last_modified_time": "2024-02-06T13:22:59.382135Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742543.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6933/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-29T13:13:01.627000Z",
            "last_modified_time": "2024-02-06T13:22:59.421682Z",
            "date_published": null,
            "start_time": "2024-01-31T16:00:00Z",
            "end_time": "2024-01-31T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?",
                "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?",
                "en": "Would you like to learn Finnish by singing in Finnish? If so, please join us!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/2A2423E2C6E00024C4C36232EC472F02/Stoan_kuoro",
                "sv": "http://www.stoa.fi/sv/evenemang/event/2A2423E2C6E00024C4C36232EC472F02/Stoas_kor_",
                "en": "http://www.stoa.fi/en/events/event/2A2423E2C6E00024C4C36232EC472F02/Stoa_Choir_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Stoan kuoro",
                "sv": "Stoas kör",
                "en": "Stoa Choir"
            },
            "description": {
                "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea!</p><p>Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18–19.30. <br>Lämpimästi tervetuloa!</p><p>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p><p>Kuorokerrat: <br>17.1.<br>31.1.<br>14.2.<br>28.2.<br>6.3.<br>13.3.<br>27.3.</p>",
                "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel.</p><p>Varmt välkommen!</p><p>På onsdagar kl. 18-19.30.</p><p>Datum: <br>17.1.<br>31.1.<br>14.2.<br>28.2.<br>6.3.<br>13.3.<br>27.3.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>",
                "en": "<p>Would you like to learn Finnish by singing in Finnish? If so, please join us!</p><p>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.</p><p>Rehearsals on Wednesdays 6-7.30pm at Stoa music hall.</p><p>Spring season: <br>17 Jan<br>31 Jan<br>14 Feb<br>28 Feb<br>6 Mar<br>13 Mar<br>27 Mar</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61681/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61739",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://docpointfestival.fi/event/masterclass-mark-cousins/"
                    },
                    "price": {
                        "fi": "20 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6727,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-19T14:12:50.311061Z",
                    "last_modified_time": "2024-02-06T13:22:59.286326Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742641.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-19T14:12:50.277583Z",
            "last_modified_time": "2024-02-06T13:22:59.325408Z",
            "date_published": null,
            "start_time": "2024-01-31T14:45:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Audiovisuaalisesti kaunis, kokeellinen dokumentti näyttää arkistomateriaalin kautta niin ydinvoiman ihmiskunnalle tuomat hyödyt kuin ydinaseiden kauhut."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D8B72A48B5DD620E325819463156ACDA/Atomic_Living_in_Dread_and_Promise"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Atomic, Living in Dread and Promise – DocPoint – Helsingin dokumenttielokuvafestivaali"
            },
            "description": {
                "fi": "<p>Audiovisuaalisesti kaunis, kokeellinen dokumentti näyttää arkistomateriaalin kautta niin ydinvoiman ihmiskunnalle tuomat hyödyt kuin ydinaseiden kauhut.</p><p>Mark Cousinsin kokeellinen elokuva ydinpommista on kursittu kollaasimaisesti kokoon runsaalla kädellä käytetystä arkistomateriaalista. Hiroshiman tuhoamisen 70-vuotispäivänä ensi-iltansa saanut teos yhdistää kuvissaan niin sienipilviä, kansalaisten protesteja ydinaseita vastaan, röntgensäteiden hyötykäyttöä, animaatiota, kylmän sodan propagandapätkiä kuin materiaalia Tšernobylin ja Fukushiman kaltaisista katastrofeistakin. Kertojaääni ei johdattele kuvavirtaa, mutta skotlantilaisen rock-yhtye Mogwain dokumenttia varten säveltämä musiikki loihtii kankaalla virtaavasta synkästä kuvastosta liki makaaberin kaunista taidetta.</p><p>Vaikka lukuisien valtioiden liput aina Yhdysvalloista Kiinaan ja Isoon-Britanniaan vilahtelevat kuvissa siinä missä Trumanilta atomipommituksesta kysyvä lapsikin, ei Cousins ryhdy osoittamaan voimalaonnettomuuksille, joukkotuhoaseiden uhreille tai kauhun tasapainolle yksittäisiä syyllisiä. Katsoja voi tehdä johtopäätöksensä hypnoottisen kuvavirran päättävien planssien kertoessa, että vuoden 1945 jälkeen yli 2000 ydinkärkeä on räjäytetty, vuonna 2015 niitä oli maailmassa 15 700 kappaletta, ja niihin käytettäisiin seuraavana vuonna miljardeja dollareita.</p><p>Atomic, Living in Dread and Promisea voi pitää eräänlaisena sukulaisteoksena vuoden 1982 hyytävälle The Atomic Cafelle, joskaan aivan yhtä rankkaa kuvastoa Cousins ei tarjoa. Myös tässä elokuvassa on mukana hetkiä Anthony Rizzon koomisesta 1950-luvun atomipommilta suojautumisesta opastavasta valistuselokuvasta Duck and Cover.</p><p>Joonatan Nikkinen</p><p>Masterclass-tilaisuuden liput (20 €) ovat myynnissä nyt! Lisäksi myynnissä on lippupaketti (40 €), joka sisältää pääsyn Masterclass-tilaisuuteen sekä kaikkiin Cousinsin elokuvien näytöksiin festivaalin aikana. Elokuvanäytösten yksittäisliput tulevat myyntiin 11. tammikuuta, jolloin festivaalin koko ohjelmisto julkistetaan.</p>"
            },
            "provider": {
                "fi": "DocPoint-elokuvatapahtumat ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61739/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61702",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6685,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-18T09:12:59.589620Z",
                    "last_modified_time": "2024-02-06T13:22:59.095462Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742684.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6685/?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-12-18T09:12:59.551377Z",
            "last_modified_time": "2024-02-06T13:22:59.133888Z",
            "date_published": null,
            "start_time": "2024-01-31T08:00:00Z",
            "end_time": "2024-01-31T09:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "YK:n uskontojen ja katsomusten yhteisymmärrysviikon alkajaisiksi Vuotalo kutsuu koululaiset katsomaan dokumenttielokuvaa Aatos ja Amine."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/726D6712FE6C8AF1A649183C019345B3/Aatos_ja_Amine"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Aatos ja Amine – Yhteisymmärrysviikon elokuva"
            },
            "description": {
                "fi": "<p>YK:n uskontojen ja katsomusten yhteisymmärrysviikon alkajaisiksi Vuotalo kutsuu koululaiset katsomaan dokumenttielokuvaa Aatos ja Amine.</p><p>Reetta Huhtanen: AATOS JA AMINE (Suomi/Belgia/Saksa 2019)</p><p>Kuusivuotias Aatos ja hänen ystävänsä etsivät elämän merkityksiä pommi-iskujen ravistelemassa maailmassa.  Molenbeekin kaupunginosa Brysselissä on mediassa leimattu jihadismin pääkaupungiksi, mutta 6-vuotiaille pojille Aatokselle ja Aminelle se on tavallista kotiseutua. Pojat etsivät yhdessä vastauksia isoihin kysymyksiin. Aatos haluaa itselleen oman jumalan koska Aminella on jo Allah, mutta asiaa mutkistaa Aatoksen ystävä Flo, jonka mielestä ihmiset, jotka uskovat Jumalaan ovat tulleet hulluiksi.</p><p>Aikuisten maailma keskeyttää väkivaltaisesti lasten leikit kun lähistön metroasemalle tehdään terrori-isku. Panssariajoneuvot, aseistetut sotilaat ja poliisit täyttävät kadut. Iltasadut herättävät väkivaltaisia kuvia ja jopa ystävyys joutuu koetukselle.<br>Nykymaailmassa, jossa rajalinjoja meihin ja muihin, \"toisiin\", tehdään nimenomaan uskontojen perusteella, päähenkilön ennakkoluuloton asenne näyttää mikroskooppisessa mittakaavassa, kuinka kulttuurisilla rajapinnoilla voi aivan hyvin elää ilman mustavalkoisia jakolinjoja. Katsomme maailmaa uteliaan pojan silmin, jonka leikeissä ystävien kanssa hypitään kepeästi muslimeista kristinuskoon ja kreikan mytologiaan.</p><p>Ryhmille ilmoittautuminen Kultuksen kautta!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61702/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61609",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6472,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:06.882829Z",
                    "last_modified_time": "2024-02-06T13:22:59.004196Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738478.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6472/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-07T14:14:06.859204Z",
            "last_modified_time": "2024-02-06T13:22:59.042150Z",
            "date_published": null,
            "start_time": "2024-01-31T08:00:00Z",
            "end_time": "2024-01-31T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.",
                "en": "The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/31FD9B6D950181E0B30C6A9D4E4746B6/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/31FD9B6D950181E0B30C6A9D4E4746B6/Naperokino",
                "en": "http://www.annantalo.fi/en/events/event/31FD9B6D950181E0B30C6A9D4E4746B6/Naperokino"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Naperokino",
                "sv": "Naperokino – Knattebion",
                "en": "Naperokino – Toddler cinema"
            },
            "description": {
                "fi": "<p>0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.<br> <br>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.<br> <br>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.<br> <br>Ovella lapsia on tervehtimässä Pikku-Myyrä. Lisäksi ke 17.1., 14.2. ja 24.4. pääset myös tapaamaan ja halaamaan Naperokinossa vierailevaa isoa Myyrää!</p><p>Näytöksillä on joka viikko vaihtuva teema:<br>• Ke 17.1.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 24.1.2024 Naperokino: seikkailu ja matka<br>• Ke 31.1.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 7.2.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 14.2.2024 Naperokino: ystävät ja perhe <br>• Ke 21.2.2024 Naperokino: luovuus ja taiteet <br>• Ke 28.2.2024 Naperokino: luonto ja eläimet <br>• Ke 6.3.2024 Naperokino: mielikuvitus<br>• Ke 13.3.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 20.3.2024 Naperokino: seikkailu ja matka<br>• Ke 27.3.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 3.4.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 10.4.2024 Naperokino: ystävät ja perhe<br>• Ke 17.4.2024 Naperokino: luovuus ja taiteet<br>• Ke 24.4.2024 Naperokino: luonto ja eläimet</p><p>Kieli: suomi<br>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa</p>",
                "sv": "<p>De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Under den första halvan av visningen som varar två timmar visas animerade filmer utan tal och under den andra halvan kommer finskspråkiga favoritfilmer med.</p><p>Språk: finska<br>För 0–3 åringar med sina föräldrar</p>",
                "en": "<p>The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue in Finnish.</p><p>For 0–3 year olds with their parents.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61609/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}