Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 19239,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=245",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=243"
    },
    "data": [
        {
            "id": "kulke:63013",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-01T12:13:33.184491Z",
                    "last_modified_time": "2024-02-06T13:23:11.781223Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744393.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-01T12:13:33.146379Z",
            "last_modified_time": "2024-04-05T17:13:47.009363Z",
            "date_published": null,
            "start_time": "2024-02-22T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Hyppää mukaan Muumien maailmaan ja koe monta hauskaa ja jännittävää seikkailua! Puhumme ruotsia, ei tekstitystä.</p><p>Tuutikki on tehnyt Muumitalon pihaan hienon lumihevosen. Hän kertoo, että laaksoon on saapumassa illalla Jäärouva, joka voi herättää hevosen eloon. Hemuli laskettelee alas Muumilaakson lumisia rinteitä torvensoiton saattelemana. Heti alkajaisiksi Hemuli alkaa touhuta lumilinnan rakentamista, ja hän valjastaa laakson asukkaatkin avukseen. Talviseen Muumilaaksoon saapuu pieni ja laiha koira nimeltään Surku. Sen suurin haave on elää vapaana susien rinnalla, mutta sudet eivät olekaan aivan sellaisia kuin Surku on kuvitellut.</p><p>Sisältää jaksot:<br>- Jäärouva<br>- Talvinen kokko<br>- Esi-isä<br>- Reippailija-Hemuli<br>- Surku-koira sankarina<br>- Kevätjäristykset<br> <br>Ruotsinkielinen, ei tekstitystä</p><p>Kesto 64 min.</p><p>Sallittu lapsille</p><p>Vapaa pääsy</p>",
                "sv": "<p>Hoppa in i Muminvärlden och upplev många roliga och spännande äventyr! Svenskt tal, ingen text.</p><p>Too-ticki har gjort en fin snöhäst på Muminhusets gård. Hon berättar, att på kvällen anländer Isfrun, som kan väcka hästen till liv, till Mumindalen. Hemulen åker skidor nerför Mumindalens snöiga backar ackompanjerad av hornmusik. Till att börja med sätter Hemulen igång med att bygga ett snöslott och värvar dalens invånare till sin hjälp. Till den vintriga Mumindalen anländer en liten och klen hund som heter Ynk. Dens största dröm är att leva fri vid sidan av vargarna, men vargarna är inte riktigt sådana som Ynk hade föreställt sig.</p><p>Innehåller avsnitten:<br>· Isfrun<br>· Vinter-brasan<br>· För-fadern<br>· Skidåkaren Hemulen<br>· Hjältehunden Ynk<br>· Vårskalv</p><p>Svenskt tal, ingen text</p><p>Längd 64 min.</p><p>Barntillåten</p><p>Fritt inträde</p>"
            },
            "short_description": {
                "fi": "Hyppää mukaan Muumien maailmaan ja koe monta hauskaa ja jännittävää seikkailua! Puhumme ruotsia, ei tekstitystä.",
                "sv": "Hoppa in i Muminvärlden och upplev många roliga och spännande äventyr! Svenskt tal, ingen text."
            },
            "name": {
                "fi": "Muminvärlden - Trollvinter – Talvilomaelokuva",
                "sv": "Muminvärlden - Trollvinter – Sportlovsbio"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E53B8206A98B5FDE1753DC1FD5B3FB40/Muminvarlden_-_Trollvinter",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/E53B8206A98B5FDE1753DC1FD5B3FB40/Muminvarlden_-_Trollvinter"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63013/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63011",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7472,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-01T09:13:32.283431Z",
                    "last_modified_time": "2024-02-06T13:23:11.682764Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744425.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7472/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-01T09:13:32.230863Z",
            "last_modified_time": "2024-04-05T17:13:46.952039Z",
            "date_published": null,
            "start_time": "2024-02-22T07:00:00Z",
            "end_time": "2024-03-16T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Teoskokonaisuuden keskiössä on auto - sen omistamiseen ja käyttöön sekä matkustajana olemiseen liittyvät tunteet ja fantasiat vapaudesta, riippumattomuudesta ja voimasta.</p><p>Ja toisaalta tietoisuus elämäntapamme itsetuhoisuudesta, kestämättömyydestä ja väliaikaisuudesta. Teosprosessi on saanut innoituksensa retrofuturismifantasioista, kyborgeista ja transformereista ja siitä miten ne ilmenevät autoilussa nykyään.</p><p>Miksi autosta on tullut niin merkittävä osa identiteettiämme ja miksi siihen liittyviä muutoksia on niin vaikea hyväksyä?</p><p><b>TYÖMAA -ryhmä</b><br>Andrei Bakharev (kuvanveistäjä), Hannu Seppälä (äänitaiteilija), Lydia Toivanen (valokuvataiteilija), Mari Kämäräinen (taiteellinen johtaja, performanssitaiteilija)</p><p>Ryhmä on toiminut vuodesta 2021 saakka ja sen debyyttinäyttely TYÖMAA oli esillä Titanik-galleriassa Turussa 9/2022. Autoiluun liittyvät tunteet on ryhmän toinen yhteisteos.</p><p><b>Andrei Bakharev</b> (s. 1981 Pietarissa) työskentelee pääosin kuvanveiston ja erityisesti puuveiston parissa. Hän aloitti taideopinnot Pietarin Taideakatemiassa ja valmistui kuvataiteen maisteriksi Helsingin Kuvataideakatemiasta 2008. Taiteilija on ollut mukana monissa ympäristötaideprojekteissa ja työskennellyt 2022 alkaen mm. Koneen säätiön rahoittamassa Elonkirjopuisto -hankkeessa Turun Koroisilla. Hänen teoksiaan on ollut esillä lukuisissa näyttelyissä sekä Suomessa että ulkomailla.</p><p><b>Mari Kämäräinen</b> (s. 1987 Vaalassa) toimii performanssin ja piirtämisen keinoin ja tekee ympäristötaide- ja tilateoksia sekä itse että osana monitaiteellisia työryhmiä. Hän valmistui kuvataiteilijaksi Turun Taideakatemiasta 2015. Kämäräinen tekee yhteistyötä mm. Pohjoisen oopperakomppanian kanssa kotiseudullaan Pohjois-Pohjanmaalla. Äänitaiteilija Hannu Seppälän kanssa hän on toteuttanut useita yhteisteoksia ja näyttelyitä. He ovat olleet mukana mm. Huoneiden kirja -produktiossa, jolle myönnettiin Esittävien taiteiden valtionpalkinto 2021.</p><p><b>Hannu Seppälä</b> (s. 1980 Oulussa) on äänitaiteilija, joka työskentelee musiikillisten ja performatiivisten sooloprojektien sekä kuvataiteen ja teatterin kentillä tapahtuvien yhteistyöprojektien parissa. Yhteistyö Mari Kämäräisen kanssa on jatkunut vuodesta 2018 lähtien. Seppälä on tehnyt pitkäaikaista yhteistyötä myös kuvataitelija Eero Yrjölän kanssa. Viimeisimpiä teatteriäänisuunnittelutöitä ovat olleet Tehdas Teatterin tuotannot Yksin ihminen vuonna 2022 ja Gilgamesh - Mortal vuonna 2023.</p><p><b>Lydia Toivanen</b> (s. 1987 Keravalla) on kuvataiteilija, jonka pääasialliset mediat ovat valokuva ja video. Hänen keskeinen työvälineensä on älypuhelin, jonka käyttö nostaa esiin kysymyksiä valokuvauksen estetiikasta, etiikasta ja käyttötarkoituksista. Teoksissaan hän käsittelee taustaansa uskonnollisessa yhteisössä ja suurperheessä. Toivanen viimeistelee opintojaan Aalto-yliopistossa valokuvataiteen maisteriohjelmassa.</p><p>Avajaiset keskiviikkona 21.2. klo 17:00–19:00.<br>Malmitalon Galleria</p><p>Vapaa pääsy, tervetuloa!</p>",
                "sv": "<p>Mittpunkten i verket är en bil - känslorna och fantasierna om frihet, oberoende och makt förknippade med att äga och använda den och att vara passagerare.</p><p>Och å andra sidan, medvetenhet om vår livsstils självförstörelse, ohållbarhet och tillfälliga natur. Den kreativa processen inspirerades av retrofuturistiska fantasier, cyborgs och transformatorer och hur de manifesteras inom bilismen idag.</p><p>Varför har bilen blivit en så betydande del av vår identitet och varför är förändringarna relaterade till den så svåra att acceptera?</p><p><b>TYÖMAA-gruppen</b><br>Andrei Bakharev (skulptör), Hannu Seppälä (ljudkonstnär),<br>Lydia Toivanen (fotokonstnär), Mari Kämäräinen (konstnärlig ledare, performancekonstnär)</p><p>Gruppen har varit verksam sedan 2021 och dess debututställning TYÖMAA visades i Titanik-galleriet i Åbo 9/2022. Känslor relaterade till bilkörning är gruppens andra gemensamma arbete.</p><p><b>Andrei Bakharev</b> (f. 1981 i St. Petersburg) arbetar främst med skulptur och speciellt träsnideri. Han började sina konststudier vid St. Petersburgs konsthögskola och tog examen med en magisterexamen i konst från Konsthögskolan i Helsingfors 2008. Konstnären har varit involverad i många miljökonstprojekt och har från och med 2022 arbetat i t.ex. I Elonkirjopuisto-projektet finansierat av Kone-stiftelsen i Koroin, Åbo. Hans verk har visats på ett flertal utställningar både i Finland och utomlands.</p><p><b>Mari Kämäräinen</b> (f. 1987 i Vaala) arbetar med performance och teckning och gör miljökonst och rumsliga verk både på egen hand och som en del av multikonst-arbetsgrupper. Hon tog examen som bildkonstnär från Konsthögskolan i Åbo 2015. Kämäräinen samarbetar med bl.a. med Norra Operabolaget i hemtrakten i Norra Österbotten. Med ljudkonstnären Hannu Seppälä har hon realiserat flera gemensamma verk och utställningar. De har varit involverade i bl.a. I produktionen \"Book of Rooms\", som belönades med 2021 års statliga scenkonstpris.</p><p><b>Hannu Seppälä</b> (f. 1980 i Uleåborg) är en ljudkonstnär som arbetar med musikaliska och performativa soloprojekt samt samarbetsprojekt inom bildkonst och teater. Samarbetet med Mari Kämäräinen har fortsatt sedan 2018. Seppälä har även haft ett långvarigt samarbete med bildkonstnären Eero Yrjölä. De senaste teaterljuddesignverken har varit Tehdas Teatters produktioner Yksin inmins 2022 och Gilgamesh - Mortal 2023.</p><p><b>Lydia Toivanen</b> (f. 1987 i Kervo) är en bildkonstnär vars huvudsakliga media är fotografi och video. Hennes centrala arbetsredskap är en smartphone, vars användning väcker frågor om fotografiets estetik, etik och syften. I sina verk behandlar hon sin bakgrund i ett religiöst samfund och utökad familj. Toivanen avslutar sina studier vid Aalto-universitetet på masterprogrammet i fotografi.</p><p>Invigning på onsdag den 21.2. kl. 17:00–19:00.<br>Malms kulturhus galleriet</p><p>Fri entré, välkommen!</p>",
                "en": "<p>In essence, a combination of artworks presented at the exhibition is dealing with the concept of the car - the feelings and fantasies of freedom, independence and power associated with owning and using it and being a passenger.</p><p>On another level artworks bring awareness of the self-destructiveness, unsustainability and temporary nature of our lifestyles. The creative process was inspired by retro futuristic fantasies, cyborgs and transformers and how they are manifested in motoring today.</p><p>Why has the car become such a significant part of our identity and why the changes related to it are so difficult to accept?</p><p><b>TYÖMAA (construction site) group</b><br>Andrei Bakharev (sculptor), Mari Kämäräinen (artistic director, performance artist), Hannu Seppälä (sound artist), Lydia Toivanen (photo artist)</p><p>The group has been operating since 2021 and its debut exhibition TYÖMAA was on display in the Titanik-gallery in Turku in 9/2022. Emotions related to motoring is the group's second joint work.</p><p><b>Andrei Bakharev</b> (b. 1981 in St. Petersburg) mainly works with sculpture and especially wood carving. He began his art studies at the St. Petersburg Academy of Arts and graduated with a master's degree in fine arts from the Helsinki Academy of Fine Arts in 2008. The artist has been involved in many environmental art projects and, starting in 2022, has worked in e.g. Elonkirjo -puisto project funded by the Kone Foundation in Koroinen, Turku. His works have been exhibited in numerous exhibitions both in Finland and abroad.</p><p><b>Mari Kämäräinen</b> (b. 1987 in Vaala) works with the means of performance and drawing and makes environmental art and spatial works both by herself and as part of multi disciplinary art work groups. She graduated as a visual artist from the Turku Academy of Arts in 2015. Kämäräinen collaborates with e.g. the Northern Opera Company in her home region in Northern Ostrobothnia. With the sound artist Hannu Seppälä, she has realized several joint works and exhibitions. They have been involved in e.g. the \"Book of Rooms\" production, which was awarded the 2021 State Prize for the Performing Arts.</p><p><b>Hannu Seppälä</b> (b. 1980 in Oulu) is a sound artist who works on musical and performative solo projects as well as collaborative projects in visual arts and theater. The cooperation with Mari Kämäräinen has continued since 2018. Seppälä has also had a long-term collaboration with visual artist Eero Yrjölä. The most recent theater sound design works have been Tehdas Theater's productions Yksin ihminen in 2022 and Gilgamesh - Mortal in 2023.</p><p><b>Lydia Toivanen</b> (b. 1987 in Kerava) is a visual artist whose primary media are photography and video. Her main tool is the smartphone, the use of which raises questions relating to the aesthetics, ethics and purpose of photography. Her works explore her background in a religious community and an extended family. Toivanen is completing her studies at Aalto University in the master's program in photography.</p><p>Exhibition opening: Wednesday, February 21st at 17:00–19:00.<br>The Malmitalo Gallery</p><p>Free entry, welcome!</p>"
            },
            "short_description": {
                "fi": "Teoskokonaisuuden keskiössä on auto - sen omistamiseen ja käyttöön sekä matkustajana olemiseen liittyvät tunteet ja fantasiat vapaudesta, riippumattomuudesta ja voimasta.",
                "sv": "Mittpunkten i verket är en bil - känslorna och fantasierna om frihet, oberoende och makt förknippade med att äga och använda den och att vara passagerare.",
                "en": "In essence, a combination of artworks presented at the exhibition is dealing with the concept of the car - the feelings and fantasies of freedom, independence and power associated with owning and using it and being a passenger."
            },
            "name": {
                "fi": "Autoiluun liittyvät tunteet – TYÖMAA-ryhmä",
                "sv": "Känslor relaterade till bilkörning – TYÖMAA-gruppen",
                "en": "Emotions related to motoring – TYÖMAA (construction site) group"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7C45B9DBB170CC9AA44346D73293F99D/Autoiluun_liittyvat_tunteet",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7C45B9DBB170CC9AA44346D73293F99D/Kanslor_relaterade_till_bilkorning",
                "en": "http://www.malmitalo.fi/en/events/event/7C45B9DBB170CC9AA44346D73293F99D/Emotions_related_to_motoring"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63011/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61603",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/osiris-teatteri-minun-elaemaeni-ukraina-malmitalo-17949512/",
                        "sv": "https://www.lippu.fi/event/osiris-teatteri-minun-elaemaeni-ukraina-malmitalo-17949512/",
                        "en": "https://www.lippu.fi/event/osiris-teatteri-minun-elaemaeni-ukraina-malmitalo-17949512/"
                    },
                    "price": {
                        "fi": "28 € / 24 €",
                        "sv": "28 € / 24 €",
                        "en": "28 € / 24 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6480,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:09.034412Z",
                    "last_modified_time": "2024-02-06T13:23:11.591234Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734832.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6480/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-07T14:14:09.016333Z",
            "last_modified_time": "2024-04-05T17:13:46.905805Z",
            "date_published": null,
            "start_time": "2024-02-21T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tarinoita sitkeydestä, pelosta, rohkeudesta, syyllisyydestä ja hyvän elämän etsinnästä.</p><p>OSIRIS teatterin näyttämöteoksessa kuullaan ukrainalaisten henkilökohtaisia tarinoita sodan keskeltä.</p><p>Näyttämöllä ukrainalaisia ja suomalaisia teatteritaiteen ja musiikin ammattilaisia.</p><p>Näyttelijät Anastasiia Redchuck, Ljubov Yankchukevitch sekä Cécile Orblin ja Anna Murtola.<br>Koreografia Vitalii Bodhurskyi.<br>Kuvat ja videot Ahmed Alalousi<br>Äänisuunnittelu Lasse Turunen.<br>Ohjaus Liisa Isotalo.</p><p>Hankkeeseen liittyvä näyttely nähdään Kanneltalon Galleriassa 19.2.–9.3.2024</p>",
                "sv": "<p>Berättelser om uthållighet, fruktan, mod, skuld och söket efter ett gott liv. I OSIRIS teatteris scenverk hörs ukrainarnas personliga historier från mitten av det ryska anfallskriget.</p>",
                "en": "<p>Stories of perseverance, fear, courage, guilt and the search for a better life. OSIRIS theatre’s stage performance features personal stories of Ukrainians in the midst of the war in Ukraine.</p>"
            },
            "short_description": {
                "fi": "Tarinoita sitkeydestä, pelosta, rohkeudesta, syyllisyydestä ja hyvän elämän etsinnästä.",
                "sv": "Berättelser om uthållighet, fruktan, mod, skuld och söket efter ett gott liv. I OSIRIS teatteris scenverk hörs ukrainarnas personliga historier från mitten av det ryska anfallskriget.",
                "en": "Stories of perseverance, fear, courage, guilt and the search for a better life. OSIRIS theatre’s stage performance features personal stories of Ukrainians in the midst of the war in Ukraine."
            },
            "name": {
                "fi": "OSIRIS-teatteri: Minun elämäni, Ukraina! – Sotaa paenneiden naisten tarinoita",
                "sv": "OSIRIS-teatteri: Minun elämäni, Ukraina!",
                "en": "OSIRIS-teatteri: Minun elämäni, Ukraina!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/67D7CE4AC379A4898A2F62BCBF784FC6/OSIRIS-teatteri_Minun_elamani_Ukraina_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/67D7CE4AC379A4898A2F62BCBF784FC6/OSIRIS-teatteri_Minun_elamani_Ukraina_",
                "en": "http://www.malmitalo.fi/en/events/event/67D7CE4AC379A4898A2F62BCBF784FC6/OSIRIS-teatteri_Minun_elamani_Ukraina_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61603/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63012",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7480,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-01T11:13:05.415205Z",
                    "last_modified_time": "2024-02-06T13:23:11.495867Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743712.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7480/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-01T11:13:05.389998Z",
            "last_modified_time": "2024-04-05T17:13:46.839311Z",
            "date_published": null,
            "start_time": "2024-02-21T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ruotsalaisesta Imperiet-bändistä kertova dokumenttielokuva vuodelta 2024.</p><p>Kieli: ruotsi<br>Tekstitys englanniksi<br>Kesto 1h 43 min. <br>K12<br>Vapaa pääsy</p>",
                "sv": "<p>Dokumentärfilmen Ett hjärta är alltid rött är berättelsen om det svenska rockbandet Imperiets väg, från spillrorna av Ebba Grön till Svensktoppen och de stora arenorna.</p><p>Det är också historien om Sverige i en era då landet hade en avgörande plats på den världspolitiska arenan, och samhällsengagemang hos artister var en självklarhet.</p><p>Imperiet föddes ur det ikoniska punkbandet Ebba Grön. De blev postpunkgenerationens fixstjärnor och ett av 1980-talets största svenska rockband. Imperiet kanaliserade punkens energi och samhällsengagemang genom att delta i kampen mot apartheid i Sydafrika och gjorde flera turnéer i Latinamerika där de knöt starka band till Nicaragua.  Det är i Nicaragua bandet befinner sig när statsminister Olof Palme mördas i Stockholm. Imperiet får axla en oväntad roll i det dramatiska skeendet.</p><p>Ett hjärta är alltid rött berättas fram genom exklusivt arkivmaterial och tidigare opublicerade bilder från privata samlingar, inramat av nya intervjuer, främst med bandmedlemmarna Thåström, Per Hägglund, Fred Asp, Stry Terrarie och Gurra Ljungstedt. Christian Falk medverkar genom intervjuer inspelade före hans död 2014.  Det här är berättelsen om en tid då en annan värld fortfarande var möjlig, då ett rockband på allvar tänkte att de kunde göra skillnad i världen.</p><p>Regi: Balsam Hellström<br>Original musik: Per Hägglund<br>Medverkande: Fred Asp, Christian Falk, Per Hägglund, Gurra Ljungstedt, Joakim Thåström, Stry Terrarie</p><p>Sverige 2024 <br>Språk: Svenska<br>Text: Engesk <br>Längd: 1h 43 min. <br>F12<br>Fritt inträde</p>",
                "en": "<p>'Ett hjärta är alltid rött' is the story of the Swedish rock band Imperiet's way, from the rubble of Ebba Grön to Svensktoppen and the big arenas.</p><p>It is also the story of Sweden in an era when the country had a decisive place in the world political arena, and social involvement of artists was a matter of course. Imperiet was born from the iconic punk band Ebba Grön.</p><p>They became the fixed stars of the post-punk generation and one of the biggest Swedish rock bands of the 1980s. Media-savvy, but often uncomfortable with celebrity, the band took the music in new directions.</p><p>Sweden 2024<br>Language: Swedish<br>Subtitles: English<br>Duration 1h 43 min.<br>Age limit 12 yrs.<br>Free entry</p>"
            },
            "short_description": {
                "fi": "Ruotsalaisesta Imperiet-bändistä kertova dokumenttielokuva vuodelta 2024.",
                "sv": "Dokumentärfilmen Ett hjärta är alltid rött är berättelsen om det svenska rockbandet Imperiets väg, från spillrorna av Ebba Grön till Svensktoppen och de stora arenorna.",
                "en": "'Ett hjärta är alltid rött' is the story of the Swedish rock band Imperiet's way, from the rubble of Ebba Grön to Svensktoppen and the big arenas."
            },
            "name": {
                "fi": "Sydän on aina punainen (12) – Talvilomaelokuva",
                "sv": "Ett hjärta är alltid rött (12) – Sportlovs-Onsdagsbio",
                "en": "A heart is always red (12)"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/731ECB461DB28DBE015700EED95093CD/Sydan_on_aina_punainen_12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/731ECB461DB28DBE015700EED95093CD/Ett_hjarta_ar_alltid_rott_12_",
                "en": "http://www.vuotalo.fi/en/events/event/731ECB461DB28DBE015700EED95093CD/A_heart_is_always_red_12_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63012/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61414",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6221,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-24T11:13:46.357131Z",
                    "last_modified_time": "2024-02-06T13:23:11.192410Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740219.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6221/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-24T11:13:46.341308Z",
            "last_modified_time": "2024-04-05T17:13:46.763590Z",
            "date_published": null,
            "start_time": "2024-02-21T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tuottaja ja artisti sekä Kuohu Records -levymerkin perustaja Oona Kapari kertoo levymerkin toiminnasta HOW-radion Global Club Nights -ohjelmassa.</p><p>Samalla kuunnellaan myös <b>Juurakko</b> -yhtyeestä tuttua muusikko ja musiikintekijä <b>Minsku Tammelan</b> esitystä.</p><p>Kuohu Records on indie-levymerkki, joka julkaisee korkeatasoistamusiikkia indiepopista runolauluun. Täällä hetkellä Kuohu rosterissa on 7 artistia, jotka ovat kaikki ammattimuusikoita, multi-instrumentalisteja ja laulukirjoittajia. Kuohu Records uskoo, että musiikkikenttämme tarvitsee erilaisia ihmisiä, jotka kirjoittavat itse omat tarinansa ja että mm, naisten äänten tulisi kuulua ajassamme tasavertaisina. Kuohu Recordsin artistit ovat tähän saakka olleet kaikki tuottajia, tarinankertojia sekä aikuisia naisia ja musiikkia on julkaistu kolmella kielellä: suomeksi, ruotsiksi ja englanniksi.</p><p>Pitkään uraa tuottajana ja miksaajana tehnyt <b>Oona Kapari</b> on ollut mukana monien artistien tekejätiimeissä. Kuohu Recordsin pyörittämisen lisäksi Kapari tekee myös omaa musiikkiaan ja on julkaissut kaksi soloalbumia Maailmojen murheet (2020) sekä Voimasta puutteesta (2023).</p><p><b>Minsku Tammelan</b> sävellykset ja tarinat ammentavat pohjoismaisen kansanmusiikin, laulelman ja bluesin maailmoista. 13.10.2023 julkaistulla Valkoinen hevonen debyyttialbumilla kuullaan Kittilään ja Kelontekemän kylään sijoittuvia myyttisiä tarinoita.</p><p>--</p><p>HOW radio: Global Club Nights -keskustelusarjassa tarkastellaan Suomen musiikkikenttää kulttuurienvälisen yhteistyön näkökulmien kautta.</p><p>Helsinki Open Waves -radion, Caisan ja Sibelius-Akatemian Global Music -osaston yhteistuottamissa keskusteluissa tarkastellaan musiikkia niin muusikon kuin musiikkiteollisuuden näkökulmasta, monimuotoisuuteen keskittyvässä, neutraalissa ja turvallisessa tilassa. Kuuntele ohjelmaa HOW-radion aalloilla osoitteessa <u><a href=\"https://www.helsinkiopenwaves.com\">helsinkiopenwaves.com</u></a>.</p><p>Keskustelun kieli on englanti.</p><p>Global Club Nights -live-klubi-iltoja järjestetään Caisassa kuukausittain! Lue lisää Caisan <u><a href=\"https://www.caisa.fi/fi/tapahtumat/?q=Global%20Club%20Nights\">tapahtumakalenterista</u></a>.</p><p>Helsinki Open Waves on voittoa tavoittelematon ja yhteisölähtöinen alusta, jonka osallistujat voivat toteuttaa omia sisältöjään juuri niin kuin haluavat ja ilmaista itseään omalla kielellään ja kulttuurinsa kautta. Lue lisää <u><a href=\"https://www.caisa.fi/fi/tapahtumat/event/bfdfdd7f694211e35cf77b582ce20924/helsinki_open_waves\">täältä</u></a>.</p>",
                "sv": "<p>Producent och artist Oona Kapari berättar om Kuohu Records HOW radios Global Club Nights-program.</p><p><b>Kuohu Records</b> är ett indie-skivmärke som ger ut högklassig musik från indiepop till runosång. För närvarande har Kuohu 7 artister som alla är professionella musiker, multi-instrumentalister och sångförfattare.</p><p><b>Minsku Tammelas</b> kompositioner och berättelser hämtar inspiration från den nordiska folkmusikens, sångens och bluesens världar.</p><p><b>Oona Kapar</b>i, som under lång tid arbetat som producent och mixare, har varit med i många artisters skaparteam. Kapari har gett ut två soloalbum \"Maailmojen murheet\" (2020), samt \"Voimasta puutteesta\" (2023).</p>",
                "en": "<p>Producer and artist Oona Kapari talks about Kuohu Records on HOW radio's Global Club Nights program.</p><p><b>Kuohu Records</b> is an indie record label that publishes high-quality music from indie pop to rune singing. Right now, Kuohu’s roster includes seven artists, all professional musicians, multi-instrumentalists and songwriters.</p><p><b>Minsku Tammela’s</b> compositions and stories draw on the worlds of Nordic folk music, melodies and blues.</p><p><b>Oona Kapari</b>, with a long career as a producer and mixer, has been part of the teams behind several artists. Kapari has released two solo albums: “Maailmojen murheet” (2020) and “Voimasta puutteesta” (2023).</p><p>--</p><p>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s <u><a href=\"https://www.caisa.fi/en/events/?q=Global%20Club%20Nights\">event calendar</u>.</a></p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more <u><a href=\"https://www.caisa.fi/en/events/event/BFDFDD7F694211E35CF77B582CE20924/Helsinki_Open_Waves_\">here</u></a>.</p>"
            },
            "short_description": {
                "fi": "Tuottaja ja artisti sekä Kuohu Records -levymerkin perustaja Oona Kapari kertoo levymerkin toiminnasta HOW-radion Global Club Nights -ohjelmassa.",
                "sv": "Producent och artist Oona Kapari berättar om Kuohu Records HOW radios Global Club Nights-program.",
                "en": "Producer and artist Oona Kapari talks about Kuohu Records on HOW radio's Global Club Nights program."
            },
            "name": {
                "fi": "HOW radio: Global Club Nights – Kuohu Records with Oona Kapari & Minsku Tammela",
                "sv": "HOW radio: Global Club Nights – Kuohu Records with Oona Kapari & Minsku Tammela",
                "en": "HOW radio: Global Club Nights – Kuohu Records with Oona Kapari & Minsku Tammela"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/AD3F073B928DC032F3120E416F80A2B6/HOW_radio_Global_Club_Nights",
                "sv": "http://www.caisa.fi/sv/evenemang/event/AD3F073B928DC032F3120E416F80A2B6/HOW_radio_Global_Club_Nights",
                "en": "http://www.caisa.fi/en/events/event/AD3F073B928DC032F3120E416F80A2B6/HOW_radio_Global_Club_Nights"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61414/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63104",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 10982,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-21T11:14:21.499993Z",
                    "last_modified_time": "2024-02-21T11:14:21.500014Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744997.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10982/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-21T11:14:21.457439Z",
            "last_modified_time": "2024-04-05T17:13:46.695115Z",
            "date_published": null,
            "start_time": "2024-02-21T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Astrid Lindgrenin iki-ihana klassikko!</p><p>Mitä tahansa Eemeli tekeekin, menee kaikki aina pieleen. Kun isä huutaa \"EEEEMELIIII\", niin että Vaahteramäki raikaa, on Eemelin aika juosta turvaan puusepänverstaaseen - ja panna ovi säppiin. Siellä hän voi kaikessa rauhassa vuoleskella puu-ukkoaan, kunnes kaikki on rauhoittunut.</p><p>Ohjaus: Olle Hellbom.<br>Julkaisuvuosi: 2014 (uusin painos)</p><p>Kesto n. 1 tunti ja 40 minuuttia</p><p>Ikäsuositus: sallittu koko perheelle</p><p>Vapaa pääsy</p><p>Puhumme SUOMEA, tekstitys ruotsiksi</p>",
                "sv": "<p>En härlig Astrid Lindgren-klassiker!</p><p>Katthult är en liten småländsk gård. Här bor Emil med sin mamma, pappa och lillasyster Ida. De har en piga också, som heter Lina, och en dräng som heter Alfred. På gården finns det en byggnad som kallas snickerboa, och som alla som hört historierna om Emil vet, är det ett ställe han besöker ofta. Åtminstone alltid när hans far skriker ”EEEMIIIL!” så att det ekar i hela Lönneberga!</p><p>Ungefär som det ser ut i Katthult kunde det se ut på små gårdar i Småland för över hundra år sedan, när Astrids far var liten. Han berättade ofta om sin barndom för Astrid och hennes syskon, och det är dessa berättelser som har inspirerat Astrid till sina historier om Emil.</p><p>Historierna har bla blivit biofilmer regisserade av Olle Hellbom.<br>Från år 2014 (nyaste utgåvan)</p><p>Längd 1h 40 min.</p><p>Åldersrekommendation tillåten för hela familjen</p><p>Fritt inträde</p><p>FINSKT tal,  vensk text</p>"
            },
            "short_description": {
                "fi": "Astrid Lindgrenin iki-ihana klassikko!",
                "sv": "En härlig Astrid Lindgren-klassiker!"
            },
            "name": {
                "fi": "Talvilomaleffa: Vaahteramäen Eemeli – Suomeksi dubattuna, ruotsinkielinen tekstitys",
                "sv": "Talvilomaleffa: Vaahteramäen Eemeli – Dubbad till finska, svensk text"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/21983438E7F6E0E786F7A53207DC36A0/Talvilomaleffa_Vaahteramaen_Eemeli",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/21983438E7F6E0E786F7A53207DC36A0/Talvilomaleffa_Vaahteramaen_Eemeli"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63104/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61605",
            "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/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:752/?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:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6479,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:08.885827Z",
                    "last_modified_time": "2024-02-06T13:23:11.103052Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739502.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-07T14:14:08.869917Z",
            "last_modified_time": "2024-04-05T17:13:46.652746Z",
            "date_published": null,
            "start_time": "2024-02-21T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Merida on kuningas Fergusin ja kuningatar Elinorin tytär, taitava jousiampuja, jolla on kipakka luonne.</p><p>Merida päättää itse löytää oman tiensä ja rikkoo ikivanhaa tapaa, mikä syöksee valtakunnan kaaokseen. Kun Merida pyytää apua vanhalta, viisaalta naiselta, toteutuu hänen valitettava toiveensa. Vaaralliset seuraamukset opettavat Meridalle, mitä on todellinen rohkeus, ja hänen on murrettava kauhea kirous ennen kuin on myöhäistä.</p><p>Kesto 93 min<br>Ikäraja: 7</p>",
                "sv": "<p>Merida är dotter till kung Fergus och drottning Elinor, en skicklig bågskytt med en temperamentsfull karaktär. Merida bestämmer sig för att hitta sin egen väg och bryter mot den urgamla vanan, vilket störtar riket i kaos.</p>",
                "en": "<p>Merida is the daughter of King Fergus and Queen Elinor. She is a skilled archer with a fierce character. Merida decides to find her own way and breaks an ancient custom, plunging the kingdom into chaos.</p>"
            },
            "short_description": {
                "fi": "Merida on kuningas Fergusin ja kuningatar Elinorin tytär, taitava jousiampuja, jolla on kipakka luonne.",
                "sv": "Merida är dotter till kung Fergus och drottning Elinor, en skicklig bågskytt med en temperamentsfull karaktär. Merida bestämmer sig för att hitta sin egen väg och bryter mot den urgamla vanan, vilket störtar riket i kaos.",
                "en": "Merida is the daughter of King Fergus and Queen Elinor. She is a skilled archer with a fierce character. Merida decides to find her own way and breaks an ancient custom, plunging the kingdom into chaos."
            },
            "name": {
                "fi": "Talvilomaleffa: Urhea (7)",
                "sv": "Vinterlovsfilm: Modig (7)",
                "en": "Winter holiday movie: Brave (7)"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EFEA3D96D379C3A9745239AA33A1511D/Talvilomaleffa_Urhea_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EFEA3D96D379C3A9745239AA33A1511D/Vinterlovsfilm_Modig_7_",
                "en": "http://www.malmitalo.fi/en/events/event/EFEA3D96D379C3A9745239AA33A1511D/Winter_holiday_movie_Brave_7_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61605/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63022",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7552,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-05T10:13:39.753504Z",
                    "last_modified_time": "2024-02-06T13:23:11.009060Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744448.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7552/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-05T10:13:39.711257Z",
            "last_modified_time": "2024-04-05T17:13:46.606642Z",
            "date_published": null,
            "start_time": "2024-02-21T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Astrid Lindgrenin iki-ihana klassikko!</p><p>Mitä tahansa Eemeli tekeekin, menee kaikki aina pieleen. Kun isä huutaa \"EEEEMELIIII\", niin että Vaahteramäki raikaa, on Eemelin aika juosta turvaan puusepänverstaaseen - ja panna ovi säppiin. Siellä hän voi kaikessa rauhassa vuoleskella puu-ukkoaan, kunnes kaikki on rauhoittunut.</p><p>Ohjaus: Olle Hellbom. <br>Julkaisuvuosi: 2014 (uusin painos)</p><p>Puhumme ruotsia, tekstitys suomeksi</p><p>Kesto n. 1 tunti ja 40 minuuttia</p><p>Ikäsuositus: sallittu koko perheelle</p><p>Vapaa pääsy</p>",
                "sv": "<p>En härlig Astrid Lindgren-klassiker!</p><p>Katthult är en liten småländsk gård. Här bor Emil med sin mamma, pappa och lillasyster Ida. De har en piga också, som heter Lina, och en dräng som heter Alfred. På gården finns det en byggnad som kallas snickerboa, och som alla som hört historierna om Emil vet, är det ett ställe han besöker ofta. Åtminstone alltid när hans far skriker ”EEEMIIIL!” så att det ekar i hela Lönneberga!</p><p>Ungefär som det ser ut i Katthult kunde det se ut på små gårdar i Småland för över hundra år sedan, när Astrids far var liten. Han berättade ofta om sin barndom för Astrid och hennes syskon, och det är dessa berättelser som har inspirerat Astrid till sina historier om Emil.</p><p>Historierna har bla blivit biofilmer regisserade av Olle Hellbom.  <br>Från år 2014 (nyaste utgåvan)</p><p>Svenskt tal, finsk text</p><p>Längd 1h 40 min.</p><p>Åldersrekommendation tillåten för hela familjen</p><p>Fritt inträde</p>"
            },
            "short_description": {
                "fi": "Astrid Lindgrenin iki-ihana klassikko!",
                "sv": "En härlig Astrid Lindgren-klassiker!"
            },
            "name": {
                "fi": "Vaahteramäen Eemeli – Talvilomaelokuva",
                "sv": "Emil i Lönneberga – Sportlovsbio"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F1CD2B288945A2788297431A78CC4B61/Vaahteramaen_Eemeli",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/F1CD2B288945A2788297431A78CC4B61/Emil_i_Lonneberga"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63022/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61637",
            "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: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:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6519,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T13:14:16.577464Z",
                    "last_modified_time": "2024-02-06T13:23:10.918064Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739428.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6519/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-08T13:14:16.561865Z",
            "last_modified_time": "2024-04-05T17:13:46.558741Z",
            "date_published": null,
            "start_time": "2024-02-21T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Talvilomalla katsotaan tanssiteemaisia elokuvia TanssiKinossa. Encanto on Walt Disneyn musiikkia ja tanssia pursuava elokuva, joka voitti vuoden 2021 parhaan animaatioelokuvan Oscar-palkinnon.</p><p>Värikkäässä Disney-musikaalissa erikoislaatuinen Madrigalin perhe elää piilossa Kolumbian vuorilla, ihmeellisessä lumotussa paikassa nimeltä Encanto. Encanto on siunannut perheen jokaista lasta ainutlaatuisella erikoislahjalla supervoimasta kykyyn parantaa.  Jokaista, paitsi yhtä: Mirabelia.</p><p>Mutta kun hän saa selville, että Encantoa ympäröivä taika on vaarassa, Mirabel päättää, että hän – ainoa tavallinen Madrigal – saattaa olla poikkeuksellisen perheen ainokainen toivo.</p><p>Elokuva on pääosin iloinen ja positiivinen tunnelmaltaan, mutta jännittäviä kohtia löytyy.</p><p>Elokuvan hahmot puhuvat suomea.</p><p>Vapaa pääsy, ei ilmoittautumista. Tulethan hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuvaan mahtuu 74 katsojaa. <br> <br>Ikäraja: 7 <br>Tila: Juhlasali <br>Kieli: suomi</p>",
                "sv": "<p>På vinterlovet ser man filmer med danstema i DansKino.</p><p>Encanto är en film av Walt Disneys som är full av musik och dans och som vann Oscarspriset för bästa animerade film år 2021.</p>",
                "en": "<p>Watch dance-themed movies at TanssiKino during the winter holiday.</p><p>Encanto is a Walt Disney film full of music and dance that won the Oscar for Best Animated Feature in 2021.</p>"
            },
            "short_description": {
                "fi": "Talvilomalla katsotaan tanssiteemaisia elokuvia TanssiKinossa. Encanto on Walt Disneyn musiikkia ja tanssia pursuava elokuva, joka voitti vuoden 2021 parhaan animaatioelokuvan Oscar-palkinnon.",
                "sv": "På vinterlovet ser man filmer med danstema i DansKino.",
                "en": "Watch dance-themed movies at TanssiKino during the winter holiday."
            },
            "name": {
                "fi": "TanssiKino: Encanto (7) – Tanssiva talviloma",
                "sv": "TanssiKino: Encanto (7) – Dansande vinterlov",
                "en": "TanssiKino: Encanto (7) – Dancing Winter Holiday"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E17609317E47EE4B12BB72332E152B6F/TanssiKino_Encanto_7_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/E17609317E47EE4B12BB72332E152B6F/TanssiKino_Encanto_7_",
                "en": "http://www.annantalo.fi/en/events/event/E17609317E47EE4B12BB72332E152B6F/TanssiKino_Encanto_7_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61637/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61765",
            "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: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/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6834,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-27T10:12:33.837315Z",
                    "last_modified_time": "2024-02-06T13:23:10.824421Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743607.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6834/?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-27T10:12:33.820559Z",
            "last_modified_time": "2024-04-05T17:13:46.506680Z",
            "date_published": null,
            "start_time": "2024-02-21T09:00:00Z",
            "end_time": "2024-02-21T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Talviloman Siivoushulinat Malmitalolla 21. ja 22.2. klo 11-13. Hyppää jättipesulaan! Askarrellaan pehmoisia pölyhuiskia sekä hulvattomia imureita!</p><p>Talviloman Siivoushulinat Malmitalolla!</p><p>Hyppää jättipesulaan! Askarrellaan pehmoisia pölyhuiskia sekä hulvattomia imureita!<br>Siivoushulinoissa nauru roiskuu, sotkeudutaan väreihin ja sukelletaan jättipesulaan! Siivoushulinoissa voi löytää pöliseviä pölypalloja ja pulputtavia pesusieniä.</p><p>Jättipesulassa pyörähdetään pikapesuun, pompataan pehmoiseen pulveriin ja lennähdetään linkoukseen! Siivoushulinat ovat täynnä sinkoilevia saippuakuplia, rouskuvaa vaahtoa ja pikkuruisia vesipisaroita! Pölyt pölisee ja imurit hurisee!</p><p>Tervetuloa, sopii kaikenikäisille! Pienet lapset yhdessä aikuisen kanssa. Päivittäin vaihtuvat askartelutyöpajat:</p><p>Ke 21.2. Pehmoiset pölypallot-askartelutyöpaja<br>To 22.2. Hurisevat imurit-askartelutyöpaja</p><p>Siivoushulinoiden työpajat avoinna nonstop! Voit siis piipahtaa pajassa klo 11-13 välillä oman aikataulusi mukaan. Osallistujamäärää rajataan tarvittaessa. Suosittelemme noin 30 min leikkiaika / osallistuja, jotta mahdollisimman moni mahtuu työpajaan! Lämpimästi tervetuloa!</p><p>Tila: Kokoushuone 2</p><p>Vapaa pääsy</p>",
                "sv": "<p>Sportlovets Städningskalas i Malms Kulturhus! Stig in i en gigantisk tvättstuga! Vi pysslar mjuka dammvippor och roliga dammsugare!</p><p>På städningskalaset ekar skratt, vi sveper in oss i färger och dyker in i en gigantisk tvättstuga! På städningskalaset kan du hitta yrande dammbollar och bubblande tvättsvampar.</p><p>I den gigantiska tvättstugan tar vi ett snabbtvätt, hoppar in i mjukt pulver och flyger in i centrifugering! Städningskalaset är fullt av studsande såpbubblor, knastrande skum och pyttesmå vattendroppar! Dammet yr och dammsugarna brummar!</p><p>Välkommen, lämpar sig för alla åldrar! Små barn i sällskap av vuxna. Pysselverkstäder som varierar dagligen.</p><p>Mötesrum 2</p><p>Fritt inträde</p>",
                "en": "<p>A winter break cleaning spree at Malmitalo! Jump into a giant launderette! We will make soft dusters and hilarious vacuum cleaners!</p><p>The cleaning spree means laughter, getting messy with colours and diving into a giant launderette! You will find dust bunnies and bubbling sponges.</p><p>In the launderette, you can take a speed wash, jump into soft powder laundry detergent and spin-dry! The cleaning spree is full of bubbles, frothy foam and tiny water droplets! There will be dust and whirring vacuum cleaners!</p><p>Welcome, suitable for all ages! Young children should be accompanied by an adult. Daily changing arts and crafts workshops.</p><p>Meeting room 2</p><p>Free admission</p>"
            },
            "short_description": {
                "fi": "Talviloman Siivoushulinat Malmitalolla 21. ja 22.2. klo 11-13. Hyppää jättipesulaan! Askarrellaan pehmoisia pölyhuiskia sekä hulvattomia imureita!",
                "sv": "Sportlovets Städningskalas i Malms Kulturhus! Stig in i en gigantisk tvättstuga! Vi pysslar mjuka dammvippor och roliga dammsugare!",
                "en": "A winter break cleaning spree at Malmitalo! Jump into a giant launderette! We will make soft dusters and hilarious vacuum cleaners!"
            },
            "name": {
                "fi": "Hupsansaa ry: Siivoushulinat",
                "sv": "Hupsansaa ry: Städningskalas",
                "en": "Hupsansaa ry: Cleaning spree"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/37F3287678E5A386D22334F4A9AF2530/Hupsansaa_ry_Siivoushulinat",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/37F3287678E5A386D22334F4A9AF2530/Hupsansaa_ry_Stadningskalas",
                "en": "http://www.malmitalo.fi/en/events/event/37F3287678E5A386D22334F4A9AF2530/Hupsansaa_ry_Cleaning_spree"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61765/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61612",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6478,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:08.773947Z",
                    "last_modified_time": "2024-02-06T13:23:10.727005Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738484.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6478/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-07T14:14:08.758614Z",
            "last_modified_time": "2024-04-05T17:13:46.456688Z",
            "date_published": null,
            "start_time": "2024-02-21T08:00:00Z",
            "end_time": "2024-02-21T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.<br> <br>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.<br> <br>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.<br> <br>Ovella lapsia on tervehtimässä Pikku-Myyrä. Lisäksi ke 17.1., 14.2. ja 24.4. pääset myös tapaamaan ja halaamaan Naperokinossa vierailevaa isoa Myyrää!</p><p>Näytöksillä on joka viikko vaihtuva teema:<br>• Ke 17.1.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 24.1.2024 Naperokino: seikkailu ja matka<br>• Ke 31.1.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 7.2.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 14.2.2024 Naperokino: ystävät ja perhe <br>• Ke 21.2.2024 Naperokino: luovuus ja taiteet <br>• Ke 28.2.2024 Naperokino: luonto ja eläimet <br>• Ke 6.3.2024 Naperokino: mielikuvitus<br>• Ke 13.3.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 20.3.2024 Naperokino: seikkailu ja matka<br>• Ke 27.3.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 3.4.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 10.4.2024 Naperokino: ystävät ja perhe<br>• Ke 17.4.2024 Naperokino: luovuus ja taiteet<br>• Ke 24.4.2024 Naperokino: luonto ja eläimet</p><p>Kieli: suomi<br>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa</p>",
                "sv": "<p>De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Under den första halvan av visningen som varar två timmar visas animerade filmer utan tal och under den andra halvan kommer finskspråkiga favoritfilmer med.</p><p>Språk: finska<br>För 0–3 åringar med sina föräldrar</p>",
                "en": "<p>The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue in Finnish.</p><p>For 0–3 year olds with their parents.</p>"
            },
            "short_description": {
                "fi": "0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.",
                "en": "The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while."
            },
            "name": {
                "fi": "Naperokino",
                "sv": "Naperokino – Knattebion",
                "en": "Naperokino – Toddler cinema"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8B8DE3696AD5B87042D197C68D2EFD7D/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/8B8DE3696AD5B87042D197C68D2EFD7D/Naperokino",
                "en": "http://www.annantalo.fi/en/events/event/8B8DE3696AD5B87042D197C68D2EFD7D/Naperokino"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61612/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61194",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6518,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T13:14:16.413983Z",
                    "last_modified_time": "2024-02-06T13:23:10.629028Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738749.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6518/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-08T13:14:16.398304Z",
            "last_modified_time": "2024-04-05T17:13:46.391218Z",
            "date_published": null,
            "start_time": "2024-02-21",
            "end_time": "2024-04-27",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Näyttelyssä ihastutaan ja yllätytään sekä pohditaan eläimenä olemista.</p><p>Tunteita ja ajatuksia herättävä näyttely tuo esille eri tekniikoilla työskentelevien Kaarisillan taitelijoiden eläinaiheisia töitä. Eläimiä on kuvattu erilaisissa ympäristöissä ja tunnelmissa. Näyttelyyn valituissa töissä on käytetty rohkeasti värejä ja ilmeikkäät eläimet puhuttelevat katsojaa.<br>Teokset herättävät katsojassa erilaisia tunteita; ihmetystä, ihastusta, hämmästystä ja iloa.</p><p>Näyttelyn tarkoitus on herätellä katsojaa pohtimaan erilaisten eläinten elinoloja, eläinten asemaa ja ihmisen roolia sekä vastuuta eläinten sekä koko ekosysteemin hyvinvoinnista. Näyttely sopii kaikenikäisille katsojille ja keskustelun herättämiseksi koottu apukysymyksiä, jotka sopivat erityisesti päiväkoti- ja kouluryhmien hyödynnettäviksi.</p><p>Kaarisilta on erityistä tukea tarvitsevien henkilöiden taide- ja toimintakeskus Lahdessa. Kaarisilta tarjoaa päiväaikaista toimintaa, musiikin ja kuvallisen ilmaisun ammatillista koulutusta sekä valmentavaa Tuva- ja Telma-koulutusta erityisopetuksena.</p><p>TERVETULOA AVAJAISIIN 20.2.2024 klo 16-18!</p><p>Miltä tuntuu olla eläin? -näyttelyn avajaisissa tutustutaan näyttelyyn ja kuullaan Kaarisillan opiskelijoiden musiikkiesityksiä.</p><p>Avajaisissa järjestetään Muotokuvakioski, jossa Kaarisillan taideopiskelijat ja taiteilijat piirtävät nopeita muotokuvia avajaisvieraista.</p><p>Illan aikana Annantalon kuvataideopettaja Anne Rossi-Horto pitää avoimen taidetyöpajan HUOPAHIPPOPOTAMUS, jossa tehdään pienet huopaeläimet.</p><p>Tarkempi ohjelma <a href=\"https://www.annantalo.fi/fi/tapahtumat/event/16F2338D57219166A34189D1E09F2AD8/Milt__tuntuu_olla_el_in_\"><b>täällä</b></a></p><p>Lämpimästi tervetuloa!</p>",
                "sv": "<p>I utställningen blir man förtjust och överraskad och funderar på att vara ett djur.</p><p>Utställningen väcker känslor och tankar och lyfter fram djurrelaterade arbeten som utförts av konstnärer i Kaarisilta som arbetar med olika tekniker. Djur har beskrivits i olika miljöer och stämningar.</p><p>VÄLKOMMEN TILL ÖPPNINGEN 20.2.2024 kl 16-18!</p>",
                "en": "<p>The exhibition will charm and surprise you all the while making you reflect on what it is like to be an animal.</p><p>The exhibition, which evokes emotions and thoughts, highlights the animal-themed works of Kaarisilta’s artists working with different techniques. Animals are depicted in various environments and settings.</p><p>WELCOME TO THE OPENING 20.2.2024 at 16-18!</p>"
            },
            "short_description": {
                "fi": "Näyttelyssä ihastutaan ja yllätytään sekä pohditaan eläimenä olemista.",
                "sv": "I utställningen blir man förtjust och överraskad och funderar på att vara ett djur.",
                "en": "The exhibition will charm and surprise you all the while making you reflect on what it is like to be an animal."
            },
            "name": {
                "fi": "Miltä tuntuu olla eläin?",
                "sv": "Miltä tuntuu olla eläin? – Hur känns det att vara ett djur?",
                "en": "Miltä tuntuu olla eläin? – What does it feel like to be an animal?"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0EA2A942C8DDBD23E1C63E9319E277BC/Milta_tuntuu_olla_elain_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0EA2A942C8DDBD23E1C63E9319E277BC/Milta_tuntuu_olla_elain_",
                "en": "http://www.annantalo.fi/en/events/event/0EA2A942C8DDBD23E1C63E9319E277BC/Milta_tuntuu_olla_elain_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61194/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61966",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7408,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-29T12:13:04.718780Z",
                    "last_modified_time": "2024-02-06T13:23:10.543600Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744189.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7408/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-01-29T12:13:04.679031Z",
            "last_modified_time": "2024-04-05T17:13:46.341366Z",
            "date_published": null,
            "start_time": "2024-02-21",
            "end_time": "2024-03-12",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Stoan parvigallerian näyttelyssä nähdään Helsingin medialukion kulttuuripäivän valokuvatyöpajan satoa. Kulttuuripäivää vietettiin Helsingin medialukiossa 13.syyskuuta 2023.</p><p>Pääosassa olivat opiskelijat ja heidän monikulttuurinen taustansa. Päivän aikana nähtiin opiskelijoiden tanssi- ja musiikkiesityksiä, maisteltiin monia erilaisia ruokia ja nähtiin perinneasuja.</p><p>Monikielinen ohjaaja <b>Jama Isse</b> ja kuvataiteen opettaja <b>Timo Kuohukoski</b> toteuttivat yhdessä valokuvatyöpajan, johon opiskelijat tulivat kuvattavaksi muoto- ja ryhmäkuviin. Useimmilla oli kuvattaessa perinneasu. Näistä päivän aikana kuvatuista noin kahdeksastakymmenestä kuvasta valitsimme tähän näyttelyyn kaksikymmentä kuvaa. <br> <br>Kuvat kertovat opiskelijoiden ylpeydestä ja yhteydestä siihen kulttuuriin, joka on osa heidän identiteettiään. Kulttuuripäivä tuo esille yhteisömme laajan kulttuurisen kirjon ja tukee opiskelijoiden identiteettiä osana medialukion yhteisöä. Olemme kaikki osa suomalaista rikasta nykykulttuuria johon monikulttuurisuus tuo oman rikkautensa.</p>",
                "sv": "<p>På Helsingfors mediegymnasium firades kulturdagen den 13 september 2023.</p><p>I huvudrollen var studerandena och deras mångkulturella bakgrund. Under dagen sågs studerandenas dans- och musikföreställningar, smakades på många olika rätter och sågs folkdräkter.</p><p>Den flerspråkiga handledaren <b>Jama Isse</b> och läraren i bildkonst <b>Timo Kuohukoski</b> ordnade tillsammans en fotografiverkstad där de tog porträtt och gruppfoton på studerandena. De flesta var klädda i folkdräkter. Av de cirka åttio foton som togs under dagen valde vi tjugo foton för utställningen. <br> <br>Fotona berättar om studerandenas stolthet och förbindelse till den kultur som är en del av deras identitet. Kulturdagen lyfter upp det breda kulturspektrumet i vår gemenskap och stöder studerandenas identitet som en del av mediegymnasiets gemenskap. Vi är alla en del av den rika moderna finländska kulturen som berikas av den kulturella mångfalden.</p>",
                "en": "<p>Culture Day was celebrated at the Helsinki Upper Secondary School of Media Arts on 13 September 2023.</p><p>The students and their multicultural backgrounds played the key role. The day included dance and music performances by students, tasting a variety of dishes and seeing national costumes.</p><p>Multilingual instructor <b>Jama Isse</b> and visual arts teacher <b>Timo Kuohukoski</b> realised a photography workshop, where students came to be photographed alone and in groups. Most were wearing a national costume. Of the eighty or so pictures taken during the day, twenty were selected for this exhibition. <br> <br>The photos show the students’ pride and connection to the culture that is part of their identity. Culture Day highlights the broad cultural spectrum of our community and supports students’ identity as part of the School of Media community. We are all part of the rich Finnish contemporary culture to which multiculturalism adds its own twist.</p>"
            },
            "short_description": {
                "fi": "Stoan parvigallerian näyttelyssä nähdään Helsingin medialukion kulttuuripäivän valokuvatyöpajan satoa. Kulttuuripäivää vietettiin Helsingin medialukiossa 13.syyskuuta 2023.",
                "sv": "På Helsingfors mediegymnasium firades kulturdagen den 13 september 2023.",
                "en": "Culture Day was celebrated at the Helsinki Upper Secondary School of Media Arts on 13 September 2023."
            },
            "name": {
                "fi": "Kulttuuripäivä! – Parvigallerian näyttely",
                "sv": "Kulturdagen! – Utställningen på balkonggalleriet",
                "en": "Culture Day! – Balcony gallery exhibition"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/3889C3CC1D7C4E740F89F4C52A21684C/Kulttuuripaiva_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/3889C3CC1D7C4E740F89F4C52A21684C/Kulturdagen_",
                "en": "http://www.stoa.fi/en/events/event/3889C3CC1D7C4E740F89F4C52A21684C/Culture_Day_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61966/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61982",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7393,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-26T14:13:00.382366Z",
                    "last_modified_time": "2024-02-06T13:23:10.355308Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744301.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7393/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-26T14:13:00.355222Z",
            "last_modified_time": "2024-04-05T17:13:46.258867Z",
            "date_published": null,
            "start_time": "2024-02-20T14:00:00Z",
            "end_time": "2024-02-20T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Miltä tuntuu olla eläin? -näyttelyn avajaisia juhlitaan tiistaina 20.2.2024 klo 16-18.</p><p>Näyttelyssä ihastutaan ja yllätytään sekä pohditaan eläimenä olemista.</p><p>Avajaisohjelma:<br>Miltä tuntuu olla eläin? -näyttelyn avajaisissa tutustutaan näyttelyyn ja kuullaan Kaarisillan opiskelijoiden musiikkiesityksiä.</p><p>Avajaisissa järjestetään Muotokuvakioski, jossa Kaarisillan taideopiskelijat ja taiteilijat piirtävät nopeita muotokuvia avajaisvieraista.</p><p>Illan aikana voi osallistua myös avoimeen taidetyöpajaan, jonka vetää Annantalon taidekasvattaja Anne Rossi-Horto.</p><p>HUOPAHIPPOPOTAMUS Tervetuloa inspiroitumaan Kaarisillan näyttelyn eläinteoksista! Suunnittelemme ja teemme pienet huopaeläimet. Miltä näyttäisi violetti käärme tai vihreä kissa? Huopaeläimiin kiinnitetään pienet metallirenkaat joiden avulla eläin voi päästä laukkuusi tai takkiisi roikkumaan.</p><p>Avajaisissa on pientä tarjoilua.<br> <br>Lämpimästi tervetuloa!</p>",
                "sv": "<p>Öppningen av utställningen \"Hur känns det att vara ett djur?\" inkluderar musik av Kaarisiltas elever.</p><p>På vernissagen finns ett porträttkiosk, där Kaarisiltas konststuderande och konstnärer ritar snabba porträtt av vernissagegästerna.</p><p>Under kvällen håller Anne Rossi-Horto, lärare i bildkonst vid Annegården, en öppen konstverkstad, där man tillverkar små djur av filt.</p><p>Du är varmt välkommen!</p>",
                "en": "<p>Exhibition opening \"How does it feel to be an animal?\" features music by Kaarisilta students.</p><p>The opening will feature a portrait booth where Kaarisilta art students and artists will draw quick portraits of the opening guests.</p><p>In the evening, Anne Rossi-Horto, a visual arts teacher at Annantalo, will hold an open art workshop where small animals will be made from felt.</p><p>You are warmly invited!</p>"
            },
            "short_description": {
                "fi": "Miltä tuntuu olla eläin? -näyttelyn avajaisia juhlitaan tiistaina 20.2.2024 klo 16-18."
            },
            "name": {
                "fi": "Miltä tuntuu olla eläin? – Tervetuloa näyttelyn avajaisiin!",
                "sv": "Hur känns det att vara ett djur? – Välkommen till utställning öppning!",
                "en": "How does it feel to be an animal? – Welcome to the exhibition opening party!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/16F2338D57219166A34189D1E09F2AD8/Milta_tuntuu_olla_elain_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/16F2338D57219166A34189D1E09F2AD8/Hur_kanns_det_att_vara_ett_djur_",
                "en": "http://www.annantalo.fi/en/events/event/16F2338D57219166A34189D1E09F2AD8/How_does_it_feel_to_be_an_animal_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61982/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61604",
            "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/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:752/?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:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6477,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:08.663514Z",
                    "last_modified_time": "2024-02-06T13:23:10.166115Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739501.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-07T14:14:08.647978Z",
            "last_modified_time": "2024-04-05T17:13:46.200797Z",
            "date_published": null,
            "start_time": "2024-02-20T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Susien kasvattama ihmispoika Mowgli ja musta pantteri Bagheera seikkailevat läpi viidakon.</p><p>Matkallaan kaksikko kohtaa leppoisan karhun Baloon, rytmikkään apinakuninkaan Louien, ihmissyöjätiikerin Shere Khanin ja monet muut hulvattomat ystävät.</p><p>Puhuttu suomeksi.<br>Kesto: 75 min<br>Ikäraja: 7</p>",
                "sv": "<p>Människosonen Mowgli som är uppfostrad av vargar och den svarte pantern Bagheera färdas genom djungeln och möter många roliga vänner.</p>",
                "en": "<p>Mowgli, a human boy raised by wolves, and Bagheera, a black panther, venture through the jungle and encounter many hilarious friends.</p>"
            },
            "short_description": {
                "fi": "Susien kasvattama ihmispoika Mowgli ja musta pantteri Bagheera seikkailevat läpi viidakon.",
                "sv": "Människosonen Mowgli som är uppfostrad av vargar och den svarte pantern Bagheera färdas genom djungeln och möter många roliga vänner.",
                "en": "Mowgli, a human boy raised by wolves, and Bagheera, a black panther, venture through the jungle and encounter many hilarious friends."
            },
            "name": {
                "fi": "Talvilomaleffa: Viidakkokirja (7)",
                "sv": "Vinterlovsfilm: Djungelboken (7)",
                "en": "Winter holiday movie: The Jungle Book (7)"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/71A9984ED1FE44F0FF46836625A000B2/Talvilomaleffa_Viidakkokirja_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/71A9984ED1FE44F0FF46836625A000B2/Vinterlovsfilm_Djungelboken_7_",
                "en": "http://www.malmitalo.fi/en/events/event/71A9984ED1FE44F0FF46836625A000B2/Winter_holiday_movie_The_Jungle_Book_7_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61604/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61983",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/vuotalon-elokuvat-vuotalo-18217735/",
                        "sv": "https://www.lippu.fi/event/vuotalon-elokuvat-vuotalo-18217735/",
                        "en": "https://www.lippu.fi/event/vuotalon-elokuvat-vuotalo-18217735/"
                    },
                    "price": {
                        "fi": "10e + tilausmaksut",
                        "sv": "10e + tilausmaksut",
                        "en": "10e + tilausmaksut"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7343,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-24T12:14:06.926119Z",
                    "last_modified_time": "2024-02-06T13:23:10.260169Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744062.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7343/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-24T12:14:06.902108Z",
            "last_modified_time": "2024-04-05T17:13:46.141478Z",
            "date_published": null,
            "start_time": "2024-02-20T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sofia Coppolan uusin elokuva kertoo koskettavasti rakkaudesta, haaveista ja kuuluisuudesta.</p><p>Kun teini-ikäinen Priscilla tapaa juhlissa räjähdysmäisen suosion saavuttaneen Elvis Presleyn, paljastaa rocktähti hänelle kahden kesken henkilökohtaisemman puolensa. Elviksestä tulee pian Priscillalle kiehtova ihastus, yksinäisyyden liittolainen ja haavoittuvainen ystävä. Priscillan kautta näemme suuresta amerikkalaisesta myytistä puolen, jota emme ole aikaisemmin nähneet – Elviksen ja Priscillan pitkän seurustelusuhteen, myrskyisän avioliiton, sekä matkan saksalaisesta armeijatukikohdasta Elviksen unelmataloon Gracelandiin.</p><p>K 12<br>Kesto: 113 min.<br>Ohjaaja: Sofia Coppola</p><p>Näyttelijät: Cailee Spaeny, Jacob Elordi, Ari Cohen, Dagmara Dominczyk, Tim Post, Lynne Griffin</p><p>Käsikirjoitus:<br>Sofia Coppola, Sandra Harmon, Priscilla Presley</p>",
                "sv": "<p>Tonårsflickan Priscilla Beaulieu blir förälskad i Elvis Presley, mannen som redan är en enorm rock-and-roll-superstjärna, men som privat visar sig vara någon helt annan.</p><p>Genom Priscillas ögon berättar Sofia Coppola den osedda sidan av Priscilla och Elvis turbulenta kärlekshistoria. Ett intimt porträtt av kärlek, ensamhet och berömmelse.</p><p>Längd: 1h 53min<br>Språk: engelska<br>Text: finska<br>F12</p><p>I större roller: Cailee Spaeny, Jacob Elordi, Ari Cohen, Dagmara Dominczyk, Tim Post, Lynne Griffin</p><p>Regi: Sofia Coppola</p>",
                "en": "<p>When teenage Priscilla Beaulieu meets Elvis Presley at a party, the man who is already a meteoric rock-and-roll superstar becomes someone entirely unexpected in private moments: a thrilling crush, an ally in loneliness, a vulnerable best friend.</p><p>Duration: 1h 53min<br>Language: English<br>Subs: Finnish<br>+12</p><p>Starring: Cailee Spaeny, Jacob Elordi, Ari Cohen, Dagmara Dominczyk, Tim Post, Lynne Griffin</p><p>Director: Sofia Coppola</p>"
            },
            "short_description": {
                "fi": "Sofia Coppolan uusin elokuva kertoo koskettavasti rakkaudesta, haaveista ja kuuluisuudesta.",
                "sv": "Tonårsflickan Priscilla Beaulieu blir förälskad i Elvis Presley, mannen som redan är en enorm rock-and-roll-superstjärna, men som privat visar sig vara någon helt annan."
            },
            "name": {
                "fi": "Priscilla (K12) – Ensi-iltaviikon elokuva",
                "sv": "Priscilla (F12)",
                "en": "Priscilla (12)"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9EA7071A946F1E938FD8E4A3CD100395/Priscilla_K12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/9EA7071A946F1E938FD8E4A3CD100395/Priscilla_F12_",
                "en": "http://www.vuotalo.fi/en/events/event/9EA7071A946F1E938FD8E4A3CD100395/Priscilla_12_"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Vuotalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61983/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61885",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7107,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-10T14:13:09.522058Z",
                    "last_modified_time": "2024-02-06T13:23:10.075675Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738413.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7107/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-10T14:13:09.507507Z",
            "last_modified_time": "2024-04-05T17:13:46.081061Z",
            "date_published": null,
            "start_time": "2024-02-20T08:00:00Z",
            "end_time": "2024-02-20T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>KURSSI ON TÄYNNÄ.</p><p>Kaksipäiväisessä työpajassa tutustutaan stopmotion- animaation tekemiseen. Käytössä ovat tabletit ja ohjelmina ovat Stopmotion ja Procreate.</p><p>Työpajassa on lyhyt lounastauko (klo 11.30–12), joten lapsille kannattaa pakata eväitä ja juomapullo mukaan.</p><p>Työpajan ohjaajana toimii taidekasvattaja Kristina Laine.</p><p><b>Ilmoittautuminen</b></p><p>Työpaja on maksuton, mutta vaatii sitovan ilmoittautumisen. Paikkoja on rajatusti.</p><p>Ilmoittaudu tästä linkistä:<br>https://forms.office.com/e/ZVvPdgfLxP</p><p>Kieli: suomi, tarvittaessa englanti</p>",
                "sv": "<p>KURS ÄR FULLBOKAT.</p><p>I den två dagar långa verkstaden får du lära dig hur man gör en stopmotion-animation. Verkstaden innehåller en kort lunchrast (kl. 11.30–12), så packa gärna mat och dryck för barnen.</p><p>Klicka på denna länk för att registrera dig: https://forms.office.com/e/ZVvPdgfLxP</p><p>Språk: finska</p>",
                "en": "<p>THE COURSE IS FULL BOOKED.</p><p>In the two-day workshop, you will learn about making stop motion animation. The workshop has a short lunch break (11:30 a.m. to 12 noon), so we recommend packing snacks and a drink for the children.</p><p>Click on this link to register: https://forms.office.com/e/ZVvPdgfLxP</p><p>Language: Finnish + English (if necessary)</p>"
            },
            "short_description": {
                "fi": "KURSSI ON TÄYNNÄ.",
                "sv": "KURS ÄR FULLBOKAT.",
                "en": "THE COURSE IS FULL BOOKED."
            },
            "name": {
                "fi": "TÄYNNÄ Animoin! – Animaatiotyöpaja 7–12-vuotiaille lapsille",
                "sv": "FULLBOKAT Jag animerar! – Animationsverkstad för barn mellan 7 och 12 år",
                "en": "FULL BOOKED I animate! – Animation workshop for children aged 7–12"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/749C8FB1E3BB915375BB6C7B91645009/TAYNNA_Animoin_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/749C8FB1E3BB915375BB6C7B91645009/FULLBOKAT_Jag_animerar_",
                "en": "http://www.caisa.fi/en/events/event/749C8FB1E3BB915375BB6C7B91645009/FULL_BOOKED_I_animate_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61885/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61539",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6386,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-30T13:14:02.897917Z",
                    "last_modified_time": "2024-02-06T13:23:09.991627Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739525.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6386/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-30T13:14:02.881355Z",
            "last_modified_time": "2024-04-05T17:13:46.024117Z",
            "date_published": null,
            "start_time": "2024-02-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen! Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii Mari Kätkä.</p><p><u><a href=\"http://www.kanneltalo.fi/maksuttomat-maanantait\">Maksuttomat maanantait</a></u> on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Kesto: 1 t</p>",
                "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås! Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.</p><p><u><a href=\"https://www.kanneltalo.fi/sv/konstadsfria-mandagar\">Kostnadsfria måndagar</u></a> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p><p>Längd: 1 t.</p>",
                "en": "<p>Nothing is more fun than singing – except for singing together! Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä.</p><p><u><a href=\"https://www.kanneltalo.fi/en/free-mondays\">Free Mondays</u></a> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p><p>Duration: 1 hour</p>"
            },
            "short_description": {
                "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen! Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii Mari Kätkä.",
                "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås! Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.",
                "en": "Nothing is more fun than singing – except for singing together! Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä."
            },
            "name": {
                "fi": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7BBEF09CA78BCB67CDFC2CA6C31FC56E/Nyt_lauletaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7BBEF09CA78BCB67CDFC2CA6C31FC56E/Nu_sjunger_vi_",
                "en": "http://www.kanneltalo.fi/en/events/event/7BBEF09CA78BCB67CDFC2CA6C31FC56E/Let_us_sing_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61539/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61636",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6517,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T13:14:16.223655Z",
                    "last_modified_time": "2024-02-06T13:23:09.901654Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739514.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6517/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-08T13:14:16.205278Z",
            "last_modified_time": "2024-04-05T17:13:45.978502Z",
            "date_published": null,
            "start_time": "2024-02-19T11:45:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Fiilistellään Dancing Queen -leffaa tanssimalla yhteisillä leffajatkoilla!</p><p>Annantalon TanssiKino näyttää klo 12–13.30 elokuvan Dancing Queen ja tässä tanssityöpajassa palataan elokuvan tunnelmiin.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Non-stop-pajassa sisään ja ulos pääsee silloin kun haluaa. Halutessasi voit myös jättää elokuvan katselun välistä ja osallistua pelkkään työpajaan</p><p>Tanssit alkavat jo Dancing Queenia ennen leffaetkoilla klo 10:30-11:30.<br>Leffaetkot ja -jatkot ohjaa tanssinopettaja ja Annantalon taidekasvattaja Sanna Kuusisto.</p><p>Ikäsuositus: 7+<br>Tila: Tanssiluokka<br>Kieli: suomi</p>",
                "sv": "<p>Vi fortsätter i Dancing Queen-filmens stämning genom att dansa i vår gemensamma filmefterfest!</p><p>I dansverkstaden återgår vi till filmens stämning.</p>",
                "en": "<p>Stay in the Dancing Queen mood by dancing together at the movie afterparty!</p><p>The dance workshop will keep you in the spirit of the movie.</p>"
            },
            "short_description": {
                "fi": "Fiilistellään Dancing Queen -leffaa tanssimalla yhteisillä leffajatkoilla!",
                "sv": "Vi fortsätter i Dancing Queen-filmens stämning genom att dansa i vår gemensamma filmefterfest!",
                "en": "Stay in the Dancing Queen mood by dancing together at the movie afterparty!"
            },
            "name": {
                "fi": "Tanssityöpaja: Leffajatkot – Tanssiva talviloma",
                "sv": "Tanssityöpaja: Leffajatkot – Tanssiva talviloma | Dansande vinterlov",
                "en": "Tanssityöpaja: Leffajatkot – Tanssiva talviloma | Dancing Winter Holiday"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2D4A3FD7B6603C2FC5A772CC748F6C0B/Tanssityopaja_Leffajatkot",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/2D4A3FD7B6603C2FC5A772CC748F6C0B/Tanssityopaja_Leffajatkot",
                "en": "http://www.annantalo.fi/en/events/event/2D4A3FD7B6603C2FC5A772CC748F6C0B/Tanssityopaja_Leffajatkot"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61636/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63018",
            "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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7538,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-02T15:13:19.515446Z",
                    "last_modified_time": "2024-02-06T13:23:09.805569Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744515.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7538/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-02T15:13:19.485797Z",
            "last_modified_time": "2024-04-05T17:13:45.927146Z",
            "date_published": null,
            "start_time": "2024-02-19T11:00:00Z",
            "end_time": "2024-02-23T19:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa talvilomalla Kanneltaloon!</p><p>Talvilomalla askarrellaan, pelataan lautapelejä, kuullaan satuja ja lähdetään pulkkamäkeen!</p><p><b>Ma 19.2.</b></p><p>klo 13-15 <br>Talviloman askartelutuokio kirjastossa<br>Askartelutuokiossa askarrellaan yhdessä kivoja ja helppoja juttuja. Ei ennakkoilmoittautumista.</p><p>klo 14-16<br>Lapsille tarkoitettu pulkkaretki<br>Pulkkia tarjolla ja nuorisotalon omat ohjaajat ovat mukana. <br>Lähtö on Kannelmäen nuorisotalolta.</p><p>klo 18-18.30<br>Iltasatutuokio <br>Tervetuloa Kannelmäen kirjaston iltasatutuokioon! Satutuokioissa tutustutaan yhdessä erilaisiin tarinoihin. Satutuokiot sopivat parhaiten yli kolmevuotiaille, mutta nuoremmatkin ovat tervetulleita kokeilemaan. Satutuokiot kestävät noin puoli tuntia. Aamun satutuokiossa luetaan Kuvakirjavaalien voittanut kuvakirja.</p><p><b>Ti 20.2.</b></p><p>klo 10-10.30 <br>Satutuokio päiväkotiryhmille ja perheille<br>Satutuokiossa tutustutaan yhdessä erilaisiin tarinoihin. Kannelmäen kirjastossa satutuokiot pidetään tiistaisin 9.1.–23.4. <br>klo 10-10.30. Tuokiot on suunnattu 3-6 -vuotiaille lapsille.</p><p>Ryhmien ilmoittautuminen etukäteen kultus.fi-palvelussa: Kannelmäen kirjaston satutuokiot.</p><p>Satutuokioon mahtuu useampi ryhmä kerrallaan.</p><p>Klo 13-15<br>Talviloman pelituokio kirjastossa<br>Pelituokiossa pelaillaan kivoja lautapelejä. Kiva, jos myös vinkkaat omat lautapelisuosikkisi muille osallistujille! Tuokioon ei ole ennakkoilmoittautumista.</p><p><b>To 22.2.</b></p><p>Klo 13–15<br>Talviloman tietokilpailu ja värityskuvatuokio kirjastossa<br>Talvilomalla kisaillaan perinteisessä tietokilpailussa. Tässä kilpailussa et tarvitse laitteita, vain kynää ja paperia. Voit osallistua yksin tai ryhmänä. Joukkueiden jäsenten etunimet kirjoitetaan ylös kilpailun alussa. Yllätyspalkinto. Tietokilpailuun voi tulla myös yleisöksi, ja väritellä samalla kivoja värityskuvia.</p><p>klo 16–18.30<br>Kesätyönhaku-paja Kannelmäen nuorisotalolla<br>Ohjaajat auttavat tekemään kesätyöhakemuksia nuorten kanssa ja neuvovat CV:n teossa.</p><p><b>Pe 23.2.</b></p><p>Perjantaina Kannelmäen nuorisotalo on auki normaalisti. <br>Lapset klo 14.30–16.00 ja nuoret klo 17.00–21.30.</p>",
                "sv": "<p><b>Mån 19.2 </b></p><p>Kl. 13–15 Gamlas bibliotek: Sportlovets pysselstund<br>Under pysselstunden pysslar vi tillsammans trevliga och lätta saker. Ingen förhandsanmälan.</p><p>kl. 14–16 Ungdomstjänster: Pulkautflykt för barn<br>Man kan låna pulkor och ungdomsgårdens ungdomsledare är med på utflykten.<br>Avresa från ungdomsgården.</p><p>Kl. 18–18.30 Gamlas bibliotek: Kvällsagostund <br>Välkommen på kvällsagostund i Gamlas bibliotek! Under sagostunder läser vi tillsammans olika berättelser. Sagostunderna lämpar sig bäst för barn över 3 år, men även yngre barn är välkomna att lyssna. Sagostunderna tar cirka en halv timme. Under kvällens sagostund läser vi den vinnande bildboken vid Bilderboksvalet.</p><p><b>Tis 20.2</b></p><p>Kl. 10–10.30 Gamlasbibliotek:  Sagostund för daghemsgrupper och familjer<br>Under sagostunden läser vi tillsammans olika berättelser. Sagostunder i Gamlas bibliotek ordnas på tisdagar 9.1–23.4 kl. 10.00–10.30. Sagostunderna är avsedda för barn mellan 3 och 6 år. Förhandsanmälan för grupper via tjänsten kultus.fi: Sagostunder i Gamlas bibliotek. Det finns plats för flera grupper åt gången.</p><p>Kl. 13–15 Gamlas bibliotek: Sportlovets spelstund<br>Vi spelar roliga brädspel under spelstuden. Roligt om du kan tipsa andra deltagare om dina egna brädspelfavoriter! Ingen förhandsanmälan.</p><p><b>Tor 22.2</b></p><p>Kl. 13–15 Gamlas bibliotek: Sportlovets frågesport och färgläggningsstund<br>Under sportlovet tävlar vi i en traditionell frågesport. I tävlingen behöver du inga apparater, endast en penna och papper. Du kan delta ensam eller i en grupp. Förnamnen på gruppmedlemmarna skrivs ner i början av tävlingen. Överraskningspris. Du kan också komma som publik till frågesporten och färglägga samtidigt trevliga färgläggningsbilder.</p><p>Kl. 16–18.30 Ungdomsgården: Verkstad för sommarjobbansökningar <br>Ungdomshandledare hjälper unga med att skriva sommarjobbansökningar och ger råd om hur man skriver ett CV.</p><p><b>Fre 23.2</b><br>Ungdomsgården: Ungdomsgården har öppet som normalt på fredagen. Barn kl. 14.30–16.00 och unga kl. 17.00–21.30</p>",
                "en": "<p><b>Monday, 19 February</b></p><p>13:00–15:00 Kannelmäki Library: Winter break arts and crafts workshop<br>In the arts and crafts workshop, we will make fun and easy things together. No advance registration.</p><p>14:00–16:00 Youth services: Sledging for children<br>Sledges are available to borrow and the youth centre’s instructors will join you. Departure is from the youth centre.</p><p>18:00–18:30 Kannelmäki Library: Bedtime story time <br>Welcome to listen to a bedtime story at Kannelmäki Library! We will explore different stories together. The story time is best suited for children over the age of three, but younger children are also welcome. The event lasts about half an hour. During morning story time, we will read the winning picture book of the Picture Book Elections (Kuvakirjavaalit).</p><p><b>Tuesday, 20 February</b></p><p>10:00–10:30 Kannelmäki Library:  Story time for day-care centre groups and families<br>We will explore different stories together. Story times at Kannemäki Library are on Tuesdays from 10:00 to 10:30 between 9 January and 23 April. They are designed for children aged 3–6 years. Advance registration of groups in the kultus.fi service under Kannelmäen kirjaston satutuokiot. Several groups can be accommodated at a time.</p><p>13:00–15:00 Kannelmäki Library: Winter break playtime<br>Fun board games. It would be nice if you could share your board game favourites with the other participants! There is no advance registration for this event.</p><p><b>Tuesday, 22 February</b></p><p>13:00–15:00 Kannelmäki Library: Winter break quiz and colouring book session</p><p>During the winter break, you can compete in a traditional quiz. You won’t need any electric devices for this quiz: a pen and paper suffice. You can participate alone or as a group. The team members’ first names will be written down at the start of the quiz. A surprise prize. You can also come to see the quiz unfold and colour some pictures while you watch.</p><p>16:00–18:30 Youth centre: Summer job search workshop <br>The instructors will help young people to prepare summer job applications and advise them on how to write a CV.</p><p><b>Friday, 23 February</b><br>Youth centre: On Friday, the youth centre will be open as usual. Children 14:30–16:00 and the young 17:00–21:30.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa talvilomalla Kanneltaloon!"
            },
            "name": {
                "fi": "Kanneltalon talviloma",
                "sv": "Sportlovsprogram på Gamlasgården",
                "en": "Winter break programme at Kanneltalo"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/30EA648E7215D1A25B515293E79E2C2C/Kanneltalon_talviloma",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/30EA648E7215D1A25B515293E79E2C2C/Sportlovsprogram_pa_Gamlasgarden",
                "en": "http://www.kanneltalo.fi/en/events/event/30EA648E7215D1A25B515293E79E2C2C/Winter_break_programme_at_Kanneltalo_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63018/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}