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

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

{
    "meta": {
        "count": 20940,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=676",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=674"
    },
    "data": [
        {
            "id": "kulke:61152",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:669/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5885,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-07T08:14:14.263410Z",
                    "last_modified_time": "2024-02-06T13:22:49.061654Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738104.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5885/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-07T08:14:14.234340Z",
            "last_modified_time": "2024-02-06T13:22:49.105101Z",
            "date_published": null,
            "start_time": "2023-12-16T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Lonkerot luikertelevat Kontulasta Itikseen, kun jäniksen vuosi 2023 huipentuu Kontula Electronicin Stoan valtaukseen."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/6E86015F32D8F40C63100980B6094F1B/Kontula_Electronic_X_Stoa_No_Sleep_til_Stoa"
            },
            "description": {
                "fi": "<p>Lonkerot luikertelevat Kontulasta Itikseen, kun jäniksen vuosi 2023 huipentuu Kontula Electronicin Stoan valtaukseen.</p><p>Takaamme, että tämä on paras tapa vetää henkeä ja valmistautua jouluviikkoon sähköisissä tunnelmissa.</p><p>Musaa neljällä lavalla: Kipparistage, Miami Mopo Stage, Kuntokellaristage ja Mäyräbaari. Leffoja ja performanssitaidetta. Yli kaksikymmentä esiintyjää – seuraa julkistuksia some-kanavilla!</p><p>Aloitamme lauantaina kahdelta ja jatkamme klo 23 saakka.</p><p>Artistijulkistuksia...<br>- YA TOSIBA <br>- MICHAEL BLACK ELECTRO <br>- JIMI PYTHON<br>- THE CUCARACHAS <br>- JUHANI SAKSIKÄSI  <br>- ANA COUDURIER <br>- JORI HULKKONEN<br>- HLER <br>- RUNOPIIRI <br>- RIHMASTO <br>- NIFFI D <br>- NAVIER LOOTA <br>- JUNTA<br>- ARTTU PARTINEN<br>- COMATOSE LEVITATION<br>- DJ 5:46 <br>- DEVOLUUTIO <br>- MARY YOUNG X PENNIJEE <br>- BARFUNKEL</p><p>Lue lisää: <u><a href=\"https://www.facebook.com/events/842630750840613/\">Facebook-tapahtuma </a></u></p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Kontula Electronic X Stoa: No Sleep ’til Stoa – SoS – Sounds of Stoa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61152/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61338",
            "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": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5984,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T14:14:20.361504Z",
                    "last_modified_time": "2024-02-06T13:22:48.668674Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739818.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5984/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-13T14:14:20.338849Z",
            "last_modified_time": "2024-02-06T13:22:48.709129Z",
            "date_published": null,
            "start_time": "2023-12-16T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Supersuositut lastenkirjahahmot Tatu ja Patu nähdään ensimmäistä kertaa valkokankailla."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AFDE1B32EE870A5BE0BC5ECDC304617B/Kanelia_kainaloon_Tatu_ja_Patu_"
            },
            "description": {
                "fi": "<p>Supersuositut lastenkirjahahmot Tatu ja Patu nähdään ensimmäistä kertaa valkokankailla.</p><p>Elokuvassa <i>Kanelia kainaloon, Tatu ja Patu!</i> veljekset matkustavat junalla Outolasta jouluiseen Helsinkiin tapaamaan 9-vuotiasta ystäväänsä Veeraa. Kaupungissa heitä odottaa Veeran järjestämä mahtava yllätys! Veera on kuitenkin jouluruuhkien vuoksi myöhässä rautatieasemalta ja veljekset suuntaavat omin neuvoin suureen kaupunkiin.</p><p>Seuraa hullunkurisia sattumuksia pursuileva seikkailu, jossa Tatu ja Patu viilettävät pitkin kaupunkia etsiessään tietään Veeran luo. Innokkaat veljekset haluavat kiihkeästi kuulua joukkoon ja toimia kuten paikalliset joulunvalmistelijat, ja onnistuvatkin siinä melkein. Taidemuseosta löytyy “lahjakas” taiteilija, tavaratalossa joulupukki ja -kuusi menevät iloisesti sekaisin ja kaneliahan voi heittää puuron sijasta vaikka kainaloon!</p><p>Onneksi veljesten nokkela ystävä Veera ottaa ohjat käsiinsä ja ystävykset löytävät lopulta sekä toistensa että Veeran järjestämän jymy-yllätyksen luo!</p><p>Ikäraja: S <br>Kesto 70 min</p><p>Vapaa pääsy. Tervetuloa!</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Kanelia kainaloon, Tatu ja Patu! – Malmitalon joulu | Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61338/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61588",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6457,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T12:14:50.391327Z",
                    "last_modified_time": "2024-02-06T13:22:48.572914Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741660.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6457/?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-07T12:14:50.334215Z",
            "last_modified_time": "2024-02-06T13:22:48.614068Z",
            "date_published": null,
            "start_time": "2023-12-16T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Satakielen siivet on tarinankerronnan, liikkeen, musiikin ja osallistavien hetkien kudelma."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7203EE9E02243810907E56DAB372BA4C/Satakielen_siivet_Arabian-_ja_suomenkielinen_tarinatuokio_lapsille_"
            },
            "description": {
                "fi": "<p>Satakielen siivet on tarinankerronnan, liikkeen, musiikin ja osallistavien hetkien kudelma.</p><p>Se vie yleisönsä jännittävälle matkalle eri maiden kansantarinoihin, joissa seikkailevat kissa, leijona ja uutta ystävää etsivä pieni harmaa hiiri.</p><p>Esityksessä suomi ja arabia punoutuvat toisiinsa niin, että tapahtumia pystyy seuraamaan vaikka ymmärtäisit vain toista esityksen kielistä. Esityksen avulla suomea äidinkielenään puhuvat lapset saavat kuunnella ja kokea vierasta kieltä, ymmärtäen silti tarinan kulkua. Samalla tavoin äidinkielenään arabiaa puhuvat lapset saavat kohdata oman äidinkielensä muuten suomenkielisessä ympäristössä. Lapset saavat myös mahdollisuuden olla ylpeitä omasta äidinkielestään ja mahdollisesta kaksikielisyydestään.</p><p>”Satakielen siivet” on esitys, joka avaa ovet kulttuurien kohtaamiseen ja kielelliseen monimuotoisuuteen, tarjoten unohtumattoman kokemuksen pienille katsojille. Tervetuloa mukaan taianomaiseen seikkailuun!</p><p>Työryhmä: Markus Luukkonen & Saara Hasan & Sibiri Konate<br>Kohderyhmä: n. 5–9-vuotiaat perheineen<br>Kesto: n. 35 min<br>Paikka: Malmin kirjaston monitoimitila</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Satakielen siivet: Arabian- ja suomenkielinen tarinatuokio lapsille – Malmitalon joulu"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61588/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61327",
            "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:105/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5970,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T11:14:19.745250Z",
                    "last_modified_time": "2024-02-06T13:22:48.481258Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739649.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5970/?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-13T11:14:19.725898Z",
            "last_modified_time": "2024-02-06T13:22:48.522573Z",
            "date_published": null,
            "start_time": "2023-12-16T09:00:00Z",
            "end_time": "2023-12-16T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "On tonttupuuhien aika!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2BB8F4DB36E3F277E8483C21C1A71BE5/Tyopaja_Jatsitikkutontut"
            },
            "description": {
                "fi": "<p>On tonttupuuhien aika!</p><p>Ripinää, rapinaa,<br>kenkien kopinaa,<br>tossujen pehmeää tassutusta,<br>kihinää ja hassutusta!</p><p>Tervetuloa tonttupajaan askartelemaan ihan höpsöjä jätskitikkutonttuja. Tässä pajassa valmistuu värikästäkin värikkäämpi joulu!</p><p>Askartelutyöpajan suunnittelu ja toteutus Ulla-Maija Vanhala/Runoropinoita</p><p>Vapaa pääsy</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Työpaja: Jätsitikkutontut – Malmitalon joulu"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61327/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61071",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5524,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-18T12:29:05.750355Z",
                    "last_modified_time": "2024-02-06T13:22:47.914055Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737798.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5524/?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-10-18T12:29:05.108413Z",
            "last_modified_time": "2024-02-06T13:22:47.952281Z",
            "date_published": null,
            "start_time": "2023-12-15T14:00:00Z",
            "end_time": "2023-12-15T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa juhlistamaan syyskauden päätöstä ja talven lumoa tanssin merkeissä!",
                "en": "Welcome to celebrate the end of the autumn season and the magic of winter with dance!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F177D3E357F3EFC51EF31A877BB24052/AnnanHouse_valke_ja_kimallus",
                "en": "http://www.annantalo.fi/en/events/event/F177D3E357F3EFC51EF31A877BB24052/AnnanHouse_sparkle_and_glitter"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan syyskauden päätöstä ja talven lumoa tanssin merkeissä!</p><p>Koko perheen AnnanHouse -disko valtaa Annantalon juhlasalin ja kutsuu tanssilattialleen perheitä vauvasta faijaan. Tämänkertaisen diskon teemana on välke ja kimallus. Voit halutessasi pukeutua teeman mukaan tai piipahtaa Annantalon ihanassa pukulainaamossa. Musiikista vastaa Annantalon oma dj Nicolas Sebastien, joka tarjoilee huippumusiikkia housesta discoon. Illan aikana perheopastukset vuorovaikutteisiin näyttelyihin Ihmeellinen kone ja Self titled.</p><p>Klo 16 Pukulainaamo BLING avaa ovensa. Tervetuloa sovittelemaan ja lainaamaan upeat asut diskoiltaan. <br>2. kerroksessa Glitternistit loihtivat säihkyviä meikkejä ekoglitterillä ja heijastintyöpajassa voi valmistaa välkähteleviä heijastimia ohjelmapalvelu Tuunaajamutsin johdolla.</p><p>Pop up -kahvila Skidi kimalle aukeaa.</p><p>Klo 17 Diskon avajaisseremonia Annantalon aulassa</p><p>Klo 17.30 ja 18.15 taidekasvattaja Sanna Kuusiston tanssituokiot diskossa</p><p>Klo 17.45 ja klo 18.30 perheopastus näyttelyihin Ihmeellinen kone ja Self Titled. Opastus alkaa 1.kerroksen gallerian edestä.</p><p>Klo 19.05-19.20 Annantalon etupihalla: Aura of puppets: Varpunen<br>Varpunen on suurikokoinen lyhtynukke, joka liitää yleisön päiden yllä. Se on ilahduttavan yllättävä kohtaaminen sekä elegia niin tutulle, mutta uhanalaiselle varpuselle. Varpunen tuo mukanaan toivoa, taianomaisuutta ja kauneutta.</p><p>Pop up -kahvila Skidi Kimalle tarjoilee legendaarisen hyviä Skidilän korvapuusteja (v), kahvia, mehua ja pientä suolaista purtavaa aikavälillä 16.00–19.00. Maksutavat kahvilassa: käteinen, Pivo ja Mobilepay.</p><p>Vapaa pääsy, ei ilmoittautumista.</p><p>Kieli: suomi, ruotsi, englanti<br>Ikä: koko perheelle<br>Tila: Juhlasali</p>",
                "en": "<p>Welcome to celebrate the end of the autumn season and the magic of winter with dance!</p><p>AnnanHouse disco for the whole family takes over the Annantalo hall and invites families from babies to grandpa to the dance floor. The theme of the disco is sparkle and glitter. If you want, you can dress up to the theme or visit Annantalo's own costume shop, where you can lend wonderful clothing for the disco.<br>The music will be provided by Annantalo's own DJ Nicolas Sebastien, who will be serving top music from house to disco. During the evening, guided tours for families will be held to the interactive exhibitions The Incredible Machine and Self titled.</p><p>From 16:00 Costume shop BLING opens! Welcome to try on and borrow wonderful and funny outfits for the disco.<br>On the 2nd floor, Glitternists create glittery make-up with an eco-glitter and in the reflector workshop you can make shiny reflectors.<br>Pop up cafe Skidi Kimalle opens.</p><p>At 17:00 Opening ceremony for the disco in Annantalo lobby</p><p>At 17.30 and 18.15 dance lessons by art educator Sanna Kuusisto</p><p>At 17.45 and 18.30 guided tours for families to the exhibitions The Miraculous Machine and Self Titled. The guided tours starts in front of the gallery on the 1st floor.</p><p>19.05-19.20 Aura of puppets: Sparrow<br>In the front yard of Annantalo<br>Sparrow is a large lantern puppet that flies over the heads of the audience. It is a delightfully unexpected encounter, as well as an elegy for the so familiar but endangered bird. Sparrow brings hope, magic and beauty.</p><p>The pop-up café Skidi Kimalle is open from 16.00-19.00. Payment methods at the café: cash, Pivo and Mobilepay.</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "AnnanHouse: välke ja kimallus – Koko perheen yhteinen disko!",
                "en": "AnnanHouse: sparkle and glitter – Disco for the whole family!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61071/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61580",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6409,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-04T13:13:50.013665Z",
                    "last_modified_time": "2024-02-06T13:22:47.822803Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741597.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6409/?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-04T13:13:49.975933Z",
            "last_modified_time": "2024-02-06T13:22:47.861392Z",
            "date_published": null,
            "start_time": "2023-12-15T13:00:00Z",
            "end_time": "2023-12-15T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa kirjaston joulutapahtumaan aistimaan joulun tunnelmaa!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2AD563E956A65DCE5C0B7640D9ED9533/Malmin_kirjaston_joulutapahtuma"
            },
            "description": {
                "fi": "<p>Tervetuloa kirjaston joulutapahtumaan aistimaan joulun tunnelmaa!</p><p>Tule mukaan askartelemaan, etsi pikkuisia tonttuja lastenosastolta, poimi itsellesi hauska tonttunimi! Lastenosastolla satuhetkiä ja joulukuusen koristelua yhdessä. Ota oma tonttulakki mukaan!</p><p>Malmin kirjastossa klo 15-17.<br>Vapaa pääsy.</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Malmin kirjaston joulutapahtuma – Malmitalon joulu"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61580/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61393",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6136,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-22T12:14:03.852303Z",
                    "last_modified_time": "2024-02-06T13:22:47.724715Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739648.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6136/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-22T12:14:03.830265Z",
            "last_modified_time": "2024-02-06T13:22:47.761898Z",
            "date_published": null,
            "start_time": "2023-12-15T13:00:00Z",
            "end_time": "2023-12-15T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Vieno Motors tuo Malmitalolle kasvihuoneilta tuoksuvan anarkofloristisen kukituskeitaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/76D35A5F0B5224067711B1107A5576D1/Vieno_Motors_Wintergarden"
            },
            "description": {
                "fi": "<p>Vieno Motors tuo Malmitalolle kasvihuoneilta tuoksuvan anarkofloristisen kukituskeitaan.</p><p>Eritaustaisista taiteilijoista koostuva Vieno Motorsin improvisaatiotiimi loihtii elävistä kasveista ja löytötavarasta puettavia asetelmia yleisön silmien edessä. Rohkeat ja onnekkaat saavat matkaansa villit kukitukset!</p><p>Malmitalon Vieno Motors Wintergarden -esityksiin taiteilijat kutsuvat yleisöä tuomaan kukitustaan varten mukanaan oman taskulampun, led-valon, sähkötuikun tai muun kannettavan valonlähteen.</p><p><b>Vieno Motors</b> toteuttaa anarkofloristisia esityksiä, joissa taiteilijat yhdistävät yleisön silmien edessä kukkia, kasveja ja muuta materiaalia (found objects) ja työskentelyn seuraaminen muodostaa kokemuksellisen ja hetkellisen spektaakkelin.</p><p>Vieno Motorsia voisi luonnehtia vaihtuvajäseniseksi improvisaatiobändiksi, joskin musiikin sijaan se nostaa valokeilaan visuaalisesti työskentelevien taiteilijoiden käsialat. Materiaalina näille erilaisille äänille ovat kasvit, joita kukin taiteilija käsittelee omaan ammattitaustaansa liittyvin metodein. Esityksissä ja installaatioissa taiteilijat yhdistävät kasveja ennakkoluulottomasti ihmisiin ja esineisiin, mikä saa aikaan sekä havaintoja nykyhetkestä että futuristisia ehdotuksia. Taidekentän lisäksi Vieno Motorsin viitekehystä on katumuoti ja urbaani viljelykulttuuri sekä luovat tavat muuntaa mennyt tulevaisuudeksi.</p><p>Vuodesta 2014 alkaen Ilona Valkonen on maalaamisen rinnalla toteuttanut/tuottanut Vieno Motors –esityksiä. Valkosen roolina on ollut toimia priimusmoottorina ja yhtenä esiintyvistä taiteilijoista, joskin konsepti on alusta asti muokkaantunut kollegiaalisessa vuorovaikutuksessa. Malmitalon esityksiä isännöi Ilona Valkosen kanssa kuvataiteilija Paavo Halonen. Molemmissa esityksissä nähdään viisihenkinen taiteilijakombo.  <br> <br>Vieno Motorsin esityksiin on osallistunut jo yli 70 eritaustaista taiteilijaa ja lukumäärä kasvaa koko ajan. Vain osa esityksistä on ollut kuvataidekonteksteissa, museoissa tai gallerioissa. Vieno Motors on kutsuttu myös yliopiston promootiojuhlallisuuksiin, erilaisiin tapahtumiin, musiikkivideolle ja häihin. Esityksiä on ollut myös ulkomailla: mm. Berliinissä, New Yorkissa, Roomassa, Brightonissa, Lontoossa ja Reykjavikissa.</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Vieno Motors: Wintergarden – Malmitalon joulu"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61393/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61337",
            "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": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5983,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T14:14:19.710158Z",
                    "last_modified_time": "2024-02-06T13:22:47.636379Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739645.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5983/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-13T14:14:19.679679Z",
            "last_modified_time": "2024-02-06T13:22:47.674721Z",
            "date_published": null,
            "start_time": "2023-12-15T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Pevensien sisarukset Lucy, Edmund, Susan ja Peter joutuvat sodan aikana evakkoon vanhan professorisetänsä taloon."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/273DC0248C3C8F855B0244814360F3E1/Narnian_tarinat_Velho_ja_Leijona"
            },
            "description": {
                "fi": "<p>Pevensien sisarukset Lucy, Edmund, Susan ja Peter joutuvat sodan aikana evakkoon vanhan professorisetänsä taloon.</p><p>Lapset huomaavat sattumalta vaatekaapin olevan sisäänkäynti salaperäiseen Narniaan. Vaatekaapin toisella puolella lapset kohtaavat puhuvia eläimiä, kääpiöitä, fauneja, kentaureja ja jättiläisiä, jotka Valkea velho on taikonut ikuiseen talveen.</p><p>Lumous murtuu, jos neljä ihmislasta nousee linnan valtaistuimille. Sitä velho ei tietenkään halua… Apunaan jalo hallitsija, Aslan-leijona, lapset käyvät taisteluun Narnian herruudesta velhoa vastaan. Saako paha palkkansa, niin kuin saduissa yleensä?</p><p>Ikäraja: 11<br>Kesto: 140 min</p><p>Vapaa pääsy!</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Narnian tarinat: Velho ja Leijona – Malmitalon joulu | Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61337/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61220",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5789,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-01T13:14:31.708804Z",
                    "last_modified_time": "2024-02-06T13:22:47.345952Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738102.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5789/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-01T13:14:31.688280Z",
            "last_modified_time": "2024-02-06T13:22:47.389168Z",
            "date_published": null,
            "start_time": "2023-12-14T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Jouluinen tunnelma on taattu, kun Vuosaaren musiikkikoulun oppilaat esiintyvät Vuotalon aulassa!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0B47BD4691DFF086AF82455E9B8FA7FF/Vuosaaren_musiikkikoulu_Joulun_tunnelmaa"
            },
            "description": {
                "fi": "<p>Jouluinen tunnelma on taattu, kun Vuosaaren musiikkikoulun oppilaat esiintyvät Vuotalon aulassa!</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Vuosaaren musiikkikoulu: Joulun tunnelmaa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61220/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61324",
            "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": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5968,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T11:14:19.018866Z",
                    "last_modified_time": "2024-02-06T13:22:47.232461Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739644.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5968/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-13T11:14:18.991707Z",
            "last_modified_time": "2024-02-06T13:22:47.272020Z",
            "date_published": null,
            "start_time": "2023-12-14T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Koilliskuoro esiintyy jouluisissa tunnelmissa osana Malmitalon joulu -tapahtumaa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/43E5C228EF0ED3A1F54E06EBC5CEB4F6/Koilliskuoro_Joulun_rauhaa"
            },
            "description": {
                "fi": "<p>Koilliskuoro esiintyy jouluisissa tunnelmissa osana Malmitalon joulu -tapahtumaa.</p><p>Kuoroa johtaa Emma Kuntsi.</p><p>Konsertti on maksuton. Tervetuloa!</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Koilliskuoro: Joulun rauhaa – Malmitalon joulu"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61324/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61219",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5788,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-01T13:14:31.587093Z",
                    "last_modified_time": "2024-02-06T13:22:47.141042Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738101.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5788/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-01T13:14:31.562374Z",
            "last_modified_time": "2024-02-06T13:22:47.180622Z",
            "date_published": null,
            "start_time": "2023-12-14T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Jouluinen tunnelma on taattu, kun Vuosaaren musiikkikoulun oppilaat esiintyvät Vuotalon aulassa!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/42061D231BD3680FF1DA2EC71B299217/Vuosaaren_musiikkikoulu_Joulun_tunnelmaa"
            },
            "description": {
                "fi": "<p>Jouluinen tunnelma on taattu, kun Vuosaaren musiikkikoulun oppilaat esiintyvät Vuotalon aulassa!</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Vuosaaren musiikkikoulu: Joulun tunnelmaa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61219/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60479",
            "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:30/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4648,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:20.428137Z",
                    "last_modified_time": "2024-02-06T13:22:46.954216Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725266.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4648/?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-09-07T14:28:19.171457Z",
            "last_modified_time": "2024-02-06T13:22:46.993908Z",
            "date_published": null,
            "start_time": "2023-12-14T08:00:00Z",
            "end_time": "2023-12-14T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children 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/1EC726510395A25D9DC765A0FDA0D457/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1EC726510395A25D9DC765A0FDA0D457/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_",
                "en": "http://www.caisa.fi/en/events/event/1EC726510395A25D9DC765A0FDA0D457/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers"
            },
            "description": {
                "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>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ä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen 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 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 cahnge 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_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Taidetta taaperoille – Open Art Studio for Toddlers",
                "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (",
                "en": "Taidetta taaperoille – Open Art Studio for Toddlers"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60479/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61390",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6119,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-21T12:13:02.540726Z",
                    "last_modified_time": "2024-02-06T13:22:46.853503Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740267.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6119/?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-21T12:13:02.511454Z",
            "last_modified_time": "2024-02-06T13:22:46.900254Z",
            "date_published": null,
            "start_time": "2023-12-14T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Hauska ja tunnelmallinen näytelmä seuraa Alfons Åbergin eli Mikko Mallikkaan joulupuuhia.",
                "sv": "Jul med Alfons Åberg är en rolig och stämningsfull pjäs med den speciella Alfons-stämning som gjort honom så populär.",
                "en": "Christmas with Alfons Åberg, aka Alfie Atkins, is a fun and atmospheric play with the special Alfie atmosphere that has made him so popular."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/455CBC92E35369B29B3326EAC496FE19/PERUTTU_Barnens_Estrad_Jul_med_Alfons_Aberg",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/455CBC92E35369B29B3326EAC496FE19/INHIBERAD_Barnens_Estrad_Jul_med_Alfons_Aberg",
                "en": "http://www.kanneltalo.fi/en/events/event/455CBC92E35369B29B3326EAC496FE19/CANCELED_Barnens_Estrad_Jul_med_Alfons_Aberg"
            },
            "description": {
                "fi": "<p>Hauska ja tunnelmallinen näytelmä seuraa Alfons Åbergin eli Mikko Mallikkaan joulupuuhia.</p><p>Esitys sopii noin 2–8-vuotiaille lapsille perheineen ja kestää noin 35 minuuttia. Esitys on ruotsinkielinen.</p><p>Esitykseen on vapaa pääsy. Pakollinen ennakkoilmoittautuminen:<br>- päiväkoti- ja kouluryhmille osoitteessa <u><a href=\"https://kultus.fi/event/kultus:agfggqfrby?text=alfons&returnPath=%2Fsearch\">kultus.fi</a></u><br>- perheille ja yksityishenkilöille sähköpostitse Kanneltalon kulttuurituottaja Liisa Paatsalolle, liisa.paatsalo@hel.fi.</p><p>Teksti: Matilda Anttila, Gunilla Bergströmin kirjojen pohjalta.<br>Ohjaus: Matilda Anttila<br>Puvustus: Sonja Dragon<br>Lavastus, valokuva & grafiikka: Lasse Andersson<br>Lavastaja: Pia Lindén-Lamoureux<br>Musiikki: Georg Riedel, Stefan \"Kilju\" Lindblom ja Anders Grönroos<br>Musiikin sovitus, äänitehosteet ja äänitys: Stefan \"Kilju\" Lindblom<br>Rooleissa: Petra Rauhala, Catrine Krusberg ja Jesper Fransson<br>Tuottaja: Anders Grönroos<br>Kustantaja: Bok-Makaren AB</p><p>Yhteistyössä Barnens Estrad ja Kanneltalo.</p>",
                "sv": "<p>Jul med Alfons Åberg är en rolig och stämningsfull pjäs med den speciella Alfons-stämning som gjort honom så populär.</p><p>Den är nyskriven och bygger på tre kända Alfonsberättelser. Här träffar vi Alfons, hans pappa, farmor och vännen Viktor. Alfons och Viktor är mycket påhittiga, sådär som barn är. Pappa vill ofta ha ordning och det går sådär. Farmor är just så pysslig och trevlig som vi sett henne i böckerna.</p><p>Föreställningen lämpar sig för cirka 2−8-åringar med familjer och räcker c. 35 min.</p><p>Språk: svenska</p><p>Fritt deltagande men obligatorisk platsbokning:<br>- för grupper via <u><a href=\"https://kultus.fi/sv/event/kultus:agfggqfrby?text=alfons&returnPath=%2Fsearch\">kultus.fi</u></a><br>- för privatpersoner liisa.paatsalo@hel.fi</p><p>Av Matilda Anttila efter Gunilla Bergströms böcker.<br>Regi: Matilda Anttila<br>Dräkter: Sonja Dragon<br>Dekor, foto & grafik: Lasse Andersson<br>Rekvisitör: Pia Lindén-Lamoureux<br>Musik: Georg Riedel, Stefan ”Kilju” Lindblom och Anders Grönroos<br>Musikarrangemang, ljudeffekter och inspelning: Stefan ”Kilju” Lindblom<br>I rollerna: Petra Rauhala, Catrine Krusberg och Jesper Fransson<br>Producent: Anders Grönroos<br>Förlag: Bok-Makaren AB</p>",
                "en": "<p>Christmas with Alfons Åberg, aka Alfie Atkins, is a fun and atmospheric play with the special Alfie atmosphere that has made him so popular.</p><p>It is newly written and based on three well-known Alfie stories. Here we meet Alfie, his dad, grandma, and his friend Victor. Alfie and Victor are very imaginative, just like children are. Dad often wants things in order, but it doesn't always go that way. Grandma is just as crafty and nice as we've seen her in the books.</p><p>The performance is suitable for children aged 2-8 and their families and lasts about 35 minutes.</p><p>Free entry, obligatory pre-registration:<br>- for school and daycare groups via <u><a href=\"https://kultus.fi/en/event/kultus:agfggqfrby?text=alfons&returnPath=%2Fsearch\">kultus.fi</u></a>,<br>- for families and private persons via email to Kanneltalo's cultural producer Liisa Paatsalo at liisa.paatsalo@hel.fi.</p><p>By Matilda Anttila based on Gunilla Bergström's books.<br>Directed by Matilda Anttila<br>Costumes by Sonja Dragon<br>Set, photography & graphics by Lasse Andersson<br>Props by Pia Lindén-Lamoureux<br>Music by Georg Riedel, Stefan \"Kilju\" Lindblom, and Anders Grönroos<br>Music arrangements, sound effects, and recording by Stefan \"Kilju\" Lindblom<br>Starring Petra Rauhala, Catrine Krusberg, and Jesper Fransson<br>Produced by Anders Grönroos<br>Published by Bok-Makaren AB</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "PERUTTU Barnens Estrad: Jul med Alfons Åberg",
                "sv": "INHIBERAD Barnens Estrad: Jul med Alfons Åberg",
                "en": "CANCELED Barnens Estrad: Jul med Alfons Åberg"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61390/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61321",
            "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": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5966,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T10:13:33.778013Z",
                    "last_modified_time": "2024-02-06T13:22:46.578272Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739638.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5966/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-13T10:13:33.759041Z",
            "last_modified_time": "2024-02-06T13:22:46.617859Z",
            "date_published": null,
            "start_time": "2023-12-13T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Malmitalon yhteislaulut – joulukuussa kahdesti!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/73779FD1914DA6D1F31D69213055D65B/Yhteislauluilta"
            },
            "description": {
                "fi": "<p>Malmitalon yhteislaulut – joulukuussa kahdesti!</p><p><b>Jukka Okkosen</b> ja <b>Pauli Kainulaisen</b> johdolla saa taas laulaa ihan sydämensä kyllyydestä!</p><p>Joulukuun yhteislaulut järjestetään 13.12 klo 16 ja 19.12. klo 17.00 Malmitalon pienessä salissa. Tervetuloa!</p><p>Vapaa pääsy</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Yhteislauluilta – Malmitalon joulu"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61321/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61407",
            "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: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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6167,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T11:13:36.844247Z",
                    "last_modified_time": "2024-02-06T13:22:46.491102Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739639.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6167/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-23T11:13:36.814603Z",
            "last_modified_time": "2024-02-06T13:22:46.527946Z",
            "date_published": null,
            "start_time": "2023-12-13T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Joulu on jo ovella, kun Viiru-kissa kuulee lasten puhuvan pukista ja tontuista. Se ryntää kotiin vaatimaan selitystä Pesoselta. Pesosen on luvattava, että joulupukki tulee!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9E0F3355B664A4714A1DE13A6F2F3173/Viiru_ja_Pesonen_joulupuuhissa_S_"
            },
            "description": {
                "fi": "<p>Joulu on jo ovella, kun Viiru-kissa kuulee lasten puhuvan pukista ja tontuista. Se ryntää kotiin vaatimaan selitystä Pesoselta. Pesosen on luvattava, että joulupukki tulee!</p><p>Puhuttu suomeksi.</p><p>Ikäraja: S, sallittu kaikenikäisille<br>Kesto: 79 min</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Viiru ja Pesonen joulupuuhissa (S) – Malmitalon joulu | Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61407/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60232",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4645,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:16.249081Z",
                    "last_modified_time": "2024-02-06T13:22:46.397252Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730517.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4645/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:15.866985Z",
            "last_modified_time": "2024-02-06T13:22:46.435855Z",
            "date_published": null,
            "start_time": "2023-12-13T11:30:00Z",
            "end_time": "2023-12-13T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Muusikko Mari Kätkä laulattaa ja kuvittaja Sari Airola kuvittaa rakastetuimpia yhteislauluja tarinallisiksi kuviksi.",
                "sv": "Musikern Mari Kätkä lockar till sång medan illustratören Sari Airola gör bildberättelser av våra mest älskade allsångslåtar.",
                "en": "Musician Mari Kätkä leads the most beloved sing-along songs while illustrator Sari Airola illustrates them into narrative images."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4002B0E0A2D4E9A3C119837AC0746E51/Hyvan_tuulen_hetket",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4002B0E0A2D4E9A3C119837AC0746E51/Stunder_med_god_stamning",
                "en": "http://www.kanneltalo.fi/en/events/event/4002B0E0A2D4E9A3C119837AC0746E51/Moments_of_happiness"
            },
            "description": {
                "fi": "<p>Muusikko Mari Kätkä laulattaa ja kuvittaja Sari Airola kuvittaa rakastetuimpia yhteislauluja tarinallisiksi kuviksi.</p><p>Rakkaimpien yhteislaulujen soidessa, laulamisen lomassa myös laulajat saavat piirtää tai kirjoittaa mukana omia kuviaan ja vaikka omia musiikkimuistojaan. Kokonaisuudesta syntyy monitaiteellinen elämys, johon saa osallistua laulaen, piirtäen tai kuunnellen ja katsellen. Hetket rakennetaan joka kerta eri teeman ympärille lauluvalikoiman ja piirrosten aiheiden avulla.</p><p>Esitystä voi seurata maksutta kulttuuripalvelu Lämpiön kanavalla www.lampio.fi ja tallenne esityksestä on katsottavissa kaksi viikkoa esityksen jälkeen.</p><p>30.8. klo 13.30 Oi, elämä! <br>27.9. klo 13.30 Järjen veit!<br>11.10. klo 13.30 Syksyn värinää<br>29.11. klo 13.30 Unelmat<br>13.12. klo 13.30 Joulupuu</p><p>Kesto n. 30 min<br>Vapaa pääsy<br>Kahvilan stage / www.lampio.fi</p>",
                "sv": "<p>Musikern Mari Kätkä lockar till sång medan illustratören Sari Airola gör bildberättelser av våra mest älskade allsångslåtar.</p><p>Medan de mest älskade allsångslåtarna spelas kan även deltagarna rita sina egna bilder eller kanske skriva ner sina egna musikminnen. Av helheten uppstår en mångkonstnärlig upplevelse som man kan delta i genom att sjunga, rita eller lyssna och titta. Med hjälp av sångurvalet och bilderna byggs stunderna varje gång upp runt ett visst tema.</p>",
                "en": "<p>Musician Mari Kätkä leads the most beloved sing-along songs while illustrator Sari Airola illustrates them into narrative images.</p><p>While the most beloved sing-along songs are playing, even the singers can draw or write down their own pictures and musical memories. The performance creates a multi-artistic experience which you can take part in by singing, drawing, or listening and watching. Each moment is built around a different theme with the help of a selection of songs and drawing themes.</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Hyvän tuulen hetket – Mari Kätkä ja Sari Airola",
                "sv": "Stunder med god stämning – Mari Kätkä och Sari Airola",
                "en": "Moments of happiness – Mari Kätkä and Sari Airola"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60232/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61323",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5965,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T10:13:33.601592Z",
                    "last_modified_time": "2024-02-06T13:22:46.300339Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739474.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5965/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-13T10:13:33.581699Z",
            "last_modified_time": "2024-02-06T13:22:46.338778Z",
            "date_published": null,
            "start_time": "2023-12-13T11:00:00Z",
            "end_time": "2023-12-13T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Staffansby lågstadie -koulun kolmasluokkalaiset esiintyvät perinteisessä Lucia-kulkueessa.",
                "sv": "Staffansby skolans 3:e klass Lucia med tärnor, stjärngossar och tomtar sprider ljus i decembermörkret i Malms kulturhus aula 13.12 kl. 13."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0712E74564C059B88C9B24CB42E1AA97/Lucia-kulkue",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0712E74564C059B88C9B24CB42E1AA97/Lucia"
            },
            "description": {
                "fi": "<p>Staffansby lågstadie -koulun kolmasluokkalaiset esiintyvät perinteisessä Lucia-kulkueessa.</p><p>Kulkue tuo hienon joulutunnelman talven pimeyteen.</p><p>Malmitalon aulassa. Vapaa pääsy, tervetuloa!</p><p>Staffansby skolans 3:e klass Lucia med tärnor, stjärngossar och tomtar sprider ljus i decembermörkret i Malms kulturhus aula 13.12 kl. 13.</p><p>Välkommen!</p>",
                "sv": "<p>Staffansby skolans 3:e klass Lucia med tärnor, stjärngossar och tomtar sprider ljus i decembermörkret i Malms kulturhus aula 13.12 kl. 13.</p><p>Välkommen!</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Lucia-kulkue – Malmitalon joulu",
                "sv": "Lucia"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61323/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60116",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4644,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:14.536599Z",
                    "last_modified_time": "2024-02-06T13:22:46.206489Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733052.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4644/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:13.670393Z",
            "last_modified_time": "2024-02-06T13:22:46.246723Z",
            "date_published": null,
            "start_time": "2023-12-13T09: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,
            "location_extra_info": null,
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/8C4B64EB7695D71FBCC117E67136C067/Opi_suomea_laulaen_"
            },
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.   <br> <br>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen.   <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi   <br>      <br>Syksyn laulupajakerrat: <br>to 7.9. klo 10 & 11.45   <br>to 5.10. klo 10 ja 11.45  <br>to 16.11. klo 10 & 11.45   <br>torstai joulukuussa</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60116/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61649",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6583,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-10T00:13:49.926986Z",
                    "last_modified_time": "2024-02-06T13:22:46.120112Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741653.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6583/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-10T00:13:49.904954Z",
            "last_modified_time": "2024-02-06T13:22:46.154389Z",
            "date_published": null,
            "start_time": "2023-12-13T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Nordsjö lågstadieskolanin (Vuosaaren ruotsinkielisen ala-asteen) 3. lk. oppilaiden esittämä Lucia-kuvaelma.",
                "sv": "Lucia-tablå med elever från åk 3 i Nordsjö lågstadieskola.",
                "en": "Lucia-show with pupils from grade 3 in Nordsjö lågstadieskola (the swedish-speaking lower secondary school in Vuosaari)."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0DB423735E36D2F244EBF2AD14F42239/Rastis_Lucia",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/0DB423735E36D2F244EBF2AD14F42239/Rastis_Lucia",
                "en": "http://www.vuotalo.fi/en/events/event/0DB423735E36D2F244EBF2AD14F42239/Rastis_Lucia"
            },
            "description": {
                "fi": "<p>Nordsjö lågstadieskolanin (Vuosaaren ruotsinkielisen ala-asteen) 3. lk. oppilaiden esittämä Lucia-kuvaelma.</p><p>Kuvaelma esitetään uudessa Pikkusalissa (Työväenopiston entinen puutyösali) Vuotalon K-kerroksessa. Ensimmäiset 60 mahtuvat sisään. Kesto n. 15-20 min. Kieli: Ruotsi. Vapaa pääsy. Ei ennakkovarauksia.</p><p>Kuva on viime vuoden Lucia-esityksestä Vuotalon aulassa.</p>",
                "sv": "<p>Lucia-tablå med elever från åk 3 i Nordsjö lågstadieskola.</p><p>Tablån visas i den nya Lilla salen (Arbis fd slöjdverkstad) i Nordhusets K-våning. De första 60 ryms in. Längd ca 15-20 min. Språk: Svenska. Fri entré, Ingen förhandsbokning.</p><p>Bilden är från fjolårets Lucia-evenemang i Nordhusets aula.</p>",
                "en": "<p>Lucia-show with pupils from grade 3 in Nordsjö lågstadieskola (the swedish-speaking lower secondary school in Vuosaari).</p><p>The show is shown in the new black box hall downstairs in the K-floor of Vuotalo. The first 60 can get places. Duration apx 15-20 min. Language: Swedish. Free entry. No pre-bookings.</p><p>The picture is from last years Lucia-show in the aula of Vuotalo.</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Rastis Lucia – Nordsjö lågstadieskola, 3.lk",
                "sv": "Rastis Lucia – Nordsjö lågstadieskola, åk 3",
                "en": "Rastis Lucia – Nordsjö lågstadieskola, 3rd grade"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61649/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60945",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5261,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:33:24.444479Z",
                    "last_modified_time": "2024-02-06T13:22:46.017955Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737184.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5261/?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-10-09T13:33:24.024936Z",
            "last_modified_time": "2024-02-06T13:22:46.062173Z",
            "date_published": null,
            "start_time": "2023-12-13T08:00:00Z",
            "end_time": "2023-12-13T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!",
                "en": "Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EC1AF5289B253ED8A5B3FB7609C2D962/Naperokino_Mielikuvitus",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/EC1AF5289B253ED8A5B3FB7609C2D962/Knattebion_fantasi",
                "en": "http://www.annantalo.fi/en/events/event/EC1AF5289B253ED8A5B3FB7609C2D962/Naperokino_toddler_cinema_Imagination"
            },
            "description": {
                "fi": "<p>Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>0–3-vuotiaiden Naperokino palaa ohjelmistoon syksyllä 2023! Rento, mukava esityspaikka ja -tilanne mahdollistavat vaipanvaihdon, syöttämisen/imettämisen tai vaikkapa pienet päiväunet lyhäreiden lomassa.</p><p>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen ottamaan vastaan ja katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas painottuu pienimmillekin sopiviin sanattomiin animaatioihin, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja.</p><p>Naperokino on suunnattu kotiäideille ja –isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ke 11.10., 22.11. ja 13.12. pääset myös paikan päällä tapaamaan ja halaamaan Naperokinossa vierailevaa Myyrää, jonka seikkailuita voit seurata tänä syksynä Annantalon somessa!</p><p>Näytöksillä on joka viikko vaihtuva teema.</p><p>Kieli: suomi<br>Ikäsuositus: 0-3-vuotiaille vanhempiensa kanssa<br>Tila: 1. kerroksen oleskelutila</p>",
                "sv": "<p>Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!</p><p>De minsta barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se även för en liten stund i taget. En avslappnad, bekväm plats för filmvisningen gör det möjligt att byta blöjor, mata/amma barnet eller t.ex. ta en liten tupplur under de korta filmerna.</p><p>Syftet är att visa barnet filmer av hög kvalitet och gradvis vänja hen vid att ta emot och titta på långa barnfilmer på biografer. Under den första halvan av visningen som varar två timmar ligger fokusen på animerade filmer utan tal och på den andra halvan visas det favoriter med tal.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Ons 11.10, 22.11. och 13.12 på plats kan du också möta och krama Mullvaden som besöker Knattebion. Mullvadens äventyr kan du följa under hösten också i Annegårdens sociala medier!</p><p>Föreställningarna har ett varierande tema varje vecka. Denna vecka visas bekanta animationer från Knattebion i september med temat fantasi.</p><p>Mer information från kultural producent, tel. +358 40 188 3416</p>",
                "en": "<p>Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!</p><p>The cinema for toddlers, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while. The relaxed, comfortable venue and setting allow nappy changes, feeding/breastfeeding, or even little naps between short films.</p><p>The goal is to show children high-quality films and gradually get them used to engaging with and watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on wordless animations suitable for even the smallest children, and the second hour will feature favourites with spoken dialogue.</p><p>Naperokino is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>On Wed Oct 11, Nov 22 and Dec 13 you also get to meet and hug Naperokino’s guest Mole, whose adventures you can also follow this autumn on Annantalo’s social media!</p><p>The screenings have a different theme each week. This week, we will show familiar animations from September’s Naperokino with the theme of Imagination!</p><p>For more information please contact cultural produces +358 40 188 3416</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Naperokino: Mielikuvitus",
                "sv": "Knattebion: fantasi",
                "en": "Naperokino (toddler cinema): Imagination"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60945/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}