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

{
    "meta": {
        "count": 19251,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=246",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=244"
    },
    "data": [
        {
            "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": [],
                    "price": null,
                    "info_url": 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,
            "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_"
            },
            "provider_contact_info": null,
            "provider": 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>"
            },
            "name": {
                "fi": "TanssiKino: Encanto (7) – Tanssiva talviloma",
                "sv": "TanssiKino: Encanto (7) – Dansande vinterlov",
                "en": "TanssiKino: Encanto (7) – Dancing Winter Holiday"
            },
            "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."
            },
            "location_extra_info": 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": [],
                    "price": null,
                    "info_url": 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,
            "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"
            },
            "provider_contact_info": null,
            "provider": 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>"
            },
            "name": {
                "fi": "Hupsansaa ry: Siivoushulinat",
                "sv": "Hupsansaa ry: Städningskalas",
                "en": "Hupsansaa ry: Cleaning spree"
            },
            "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!"
            },
            "location_extra_info": 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": [],
                    "price": null,
                    "info_url": 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,
            "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"
            },
            "provider_contact_info": null,
            "provider": 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>"
            },
            "name": {
                "fi": "Naperokino",
                "sv": "Naperokino – Knattebion",
                "en": "Naperokino – Toddler cinema"
            },
            "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."
            },
            "location_extra_info": 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": [],
                    "price": null,
                    "info_url": 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,
            "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_"
            },
            "provider_contact_info": null,
            "provider": 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>"
            },
            "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?"
            },
            "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."
            },
            "location_extra_info": 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": [],
                    "price": null,
                    "info_url": 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,
            "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_"
            },
            "provider_contact_info": null,
            "provider": 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>"
            },
            "name": {
                "fi": "Kulttuuripäivä! – Parvigallerian näyttely",
                "sv": "Kulturdagen! – Utställningen på balkonggalleriet",
                "en": "Culture Day! – Balcony gallery exhibition"
            },
            "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."
            },
            "location_extra_info": 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": [],
                    "price": null,
                    "info_url": 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,
            "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_"
            },
            "provider_contact_info": null,
            "provider": 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>"
            },
            "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!"
            },
            "short_description": {
                "fi": "Miltä tuntuu olla eläin? -näyttelyn avajaisia juhlitaan tiistaina 20.2.2024 klo 16-18."
            },
            "location_extra_info": 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": [],
                    "price": null,
                    "info_url": 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,
            "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_"
            },
            "provider_contact_info": null,
            "provider": 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>"
            },
            "name": {
                "fi": "Talvilomaleffa: Viidakkokirja (7)",
                "sv": "Vinterlovsfilm: Djungelboken (7)",
                "en": "Winter holiday movie: The Jungle Book (7)"
            },
            "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."
            },
            "location_extra_info": 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": [],
                    "price": {
                        "fi": "10e + tilausmaksut",
                        "sv": "10e + tilausmaksut",
                        "en": "10e + tilausmaksut"
                    },
                    "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/"
                    },
                    "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,
            "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_"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Vuotalo"
            },
            "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>"
            },
            "name": {
                "fi": "Priscilla (K12) – Ensi-iltaviikon elokuva",
                "sv": "Priscilla (F12)",
                "en": "Priscilla (12)"
            },
            "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."
            },
            "location_extra_info": null,
            "@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": [],
                    "price": null,
                    "info_url": 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,
            "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_"
            },
            "provider_contact_info": null,
            "provider": 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>"
            },
            "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"
            },
            "short_description": {
                "fi": "KURSSI ON TÄYNNÄ.",
                "sv": "KURS ÄR FULLBOKAT.",
                "en": "THE COURSE IS FULL BOOKED."
            },
            "location_extra_info": 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": [],
                    "price": null,
                    "info_url": 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,
            "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_"
            },
            "provider_contact_info": null,
            "provider": 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>"
            },
            "name": {
                "fi": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "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ä."
            },
            "location_extra_info": 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": [],
                    "price": null,
                    "info_url": 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,
            "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"
            },
            "provider_contact_info": null,
            "provider": 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>"
            },
            "name": {
                "fi": "Tanssityöpaja: Leffajatkot – Tanssiva talviloma",
                "sv": "Tanssityöpaja: Leffajatkot – Tanssiva talviloma | Dansande vinterlov",
                "en": "Tanssityöpaja: Leffajatkot – Tanssiva talviloma | Dancing Winter Holiday"
            },
            "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!"
            },
            "location_extra_info": 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": [],
                    "price": null,
                    "info_url": 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,
            "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_"
            },
            "provider_contact_info": null,
            "provider": 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>"
            },
            "name": {
                "fi": "Kanneltalon talviloma",
                "sv": "Sportlovsprogram på Gamlasgården",
                "en": "Winter break programme at Kanneltalo"
            },
            "short_description": {
                "fi": "Tervetuloa talvilomalla Kanneltaloon!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63018/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61635",
            "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: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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6516,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T13:14:16.108163Z",
                    "last_modified_time": "2024-02-06T13:23:09.712108Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739494.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6516/?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.091604Z",
            "last_modified_time": "2024-04-05T17:13:45.870151Z",
            "date_published": null,
            "start_time": "2024-02-19T10: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8C1309B4D7D2519EE99E9C6061A0FD6F/TanssiKino_Dancing_Queen_7_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/8C1309B4D7D2519EE99E9C6061A0FD6F/TanssiKino_Dancing_Queen_7_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Talvilomalla katsotaan tanssiteemaisia elokuvia TanssiKinossa. Norjalaiselokuva Dancing Queen (2023) kertoo intohimosta tanssiin, nuoresta rakkaudesta sekä rohkeudesta olla oma itsensä muista välittämättä.</p><p>Elokuvassa 12-vuotias Miina sekoaa, kun kuuluisa hiphop-tanssija ED Win muuttaa kaupunkiin ja aloittaa hänen koulussaan. Miina rakastuu ja kun ED ilmoittaa perustavansa uuden tanssiryhmän kaupungin tanssikilpailua varten, Miina päättä mennä koe-esiintymiseen. Ongelma on vain, että hän ei osaa tanssia.</p><p>Dancing Queen on feelgood-elokuva rakkaudesta, tanssista ja siitä, että pitää joskus uskaltaa heittäytyä tuntemattomaan saadakseen sen mitä haluaa.</p><p>Elokuva on norjankielinen ja tekstitetty suomeksi.</p><p>Vapaa pääsy, ei ilmoittautumista. Tulethan hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuvaan mahtuu 74 katsojaa.</p><p>Pääset myös virittäytymään tanssitunnelmiin leffaetkoilla- (klo 10:30–11:30) ja jatkoilla (klo 13:45–14:45), joita vetää tanssinopettaja ja Annantalon taidekasvattaja Sanna Kuusisto.</p><p>Ikäraja: 7<br>Tila: Juhlasali<br>Kieli: suomi, norja</p>",
                "sv": "<p>På vinterlovet ser man filmer med danstema i DansKino. Den norska filmen Dancing Queen (2023) berättar om passion för dans, ung kärlek och modet att vara sig själv utan att bry sig om andra.</p><p>På vinterlovet ser man filmer med danstema i DansKino. Den norska filmen Dancing Queen (2023) berättar om passion för dans, ung kärlek och modet att vara sig själv utan att bry sig om andra.</p><p>Kom i god tid, för vi tar in publiken i ankomstordning. Föreställningen har plats för 74 åskådare.</p>"
            },
            "name": {
                "fi": "TanssiKino: Dancing Queen (7) – Tanssiva talviloma",
                "sv": "TanssiKino: Dancing Queen (7)"
            },
            "short_description": {
                "fi": "Talvilomalla katsotaan tanssiteemaisia elokuvia TanssiKinossa. Norjalaiselokuva Dancing Queen (2023) kertoo intohimosta tanssiin, nuoresta rakkaudesta sekä rohkeudesta olla oma itsensä muista välittämättä.",
                "sv": "På vinterlovet ser man filmer med danstema i DansKino. Den norska filmen Dancing Queen (2023) berättar om passion för dans, ung kärlek och modet att vara sig själv utan att bry sig om andra."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61635/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63005",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1377/?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:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7431,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-30T13:13:41.291730Z",
                    "last_modified_time": "2024-02-06T13:23:09.620818Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743883.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7431/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-30T13:13:41.246459Z",
            "last_modified_time": "2024-04-05T17:13:45.823893Z",
            "date_published": null,
            "start_time": "2024-02-19T09:00:00Z",
            "end_time": "2024-02-23T12: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3E53E554A2368A61F8FEA9F29D054E70/Ragamuf-ryijytyopaja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/3E53E554A2368A61F8FEA9F29D054E70/Ragamuf-ryaverkstader",
                "en": "http://www.vuotalo.fi/en/events/event/3E53E554A2368A61F8FEA9F29D054E70/Ragamuf_chair_rug_workshops"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tule kokeilemaan Ragamuf-ryijyn tekemistä talvilomalla! Nonstop-työpajat on suunnattu yli 12-vuotiaille. Mukaan mahtuu kerrallaan 12 osallistujaa.</p><p>Ragamuf tarkoittaa trikookuteista verkkokankaaseen solmittua ryijyä. Tuula Pöyhönen on kehittänyt Ragamuf-tuoliryijytekniikan ja ohjaa nyt osallistujia solmimaan värikkäitä hapsutyynyjä.</p><p>Saat paikan päältä kaiken tarvittavan. Voit myös tuoda omia trikookuteita ja oman tyynyn, jonka päälle ryijyn teet. Tarkoitukseen sopii mainiosti esimerkiksi hieman kulahtanut koristetyyny.</p><p>Työpajat on suunnattu yli 12-vuotiaille. Pienemmät lapset mukaan vain aikuisen kanssa.</p><p>Ryijytyöpaja järjestetään talvilomalla non-stop 19.–23.2. klo 11–14. Mukaan mahtuu kerrallaan 12 osallistujaa. <br>Vinkki: Ryijyä on mukava solmia kaverin kanssa!</p><p>Työpajat ohjaa muoti- ja konseptisuunnittelija Tuula Pöyhönen.</p>",
                "sv": "<p>Kom och prova att knyta en Ragamuf-rya under sportlovet! Ragamuf betyder en rya som knyts med trikåinslag på nättyg.</p><p>Tuula Pöyhönen har utvecklat Ragan-stolryateknik och handleder nu deltagarna i att knyta färgglada kuddar med fransar. Du får allt material som behövs på kursen. Du kan också ta med dig egna trikåinslag och en egen kudde som blir ett underlag för din rya. Till exempel en litet sliten dekorationskudde passar utmärkt för ändamålet.</p><p>Verkstäderna är avsedda för personer över 12 år. De yngsta barnen endast i sällskap av vuxna. Det finns plats för 12 deltagare per kurs. Tips: Det är roligt att knyta en rya med en kompis!</p><p>Verkstäderna handleds av mode- och konceptdesigner Tuula Pöyhönen.</p><p>Ingen deltagaravgift. På Nordhusets galleri.</p>",
                "en": "<p>Come and make a ragamuf chair rug/cover during the winter break! Ragamuf is a chair rug or cover woven in mesh fabric.</p><p>Tuula Pöyhönen, the developer of the Ragamuf technique, will instruct the participants on how to weave colourful fringed pillows.</p><p>You don’t need to bring anything with you, but you can bring your own tricot strips and a pillow on which you will make the RAGAMUF. A slightly worn decorative pillow is perfect.</p><p>The workshops are aimed at over 12-year-olds. Smaller children should be accompanied by an adult. Twelve participants at a time.</p><p>Tip: It’s nice to weave a Ragamuf with a friend!</p><p>The workshop instructor is fashion and concept designer Tuula Pöyhönen.</p><p>No entry fee. At the Vuosaari House gallery.</p>"
            },
            "name": {
                "fi": "Ragamuf-ryijytyöpaja",
                "sv": "Ragamuf-ryaverkstäder",
                "en": "Ragamuf chair rug workshops"
            },
            "short_description": {
                "fi": "Tule kokeilemaan Ragamuf-ryijyn tekemistä talvilomalla! Nonstop-työpajat on suunnattu yli 12-vuotiaille. Mukaan mahtuu kerrallaan 12 osallistujaa.",
                "sv": "Kom och prova att knyta en Ragamuf-rya under sportlovet! Ragamuf betyder en rya som knyts med trikåinslag på nättyg.",
                "en": "Come and make a ragamuf chair rug/cover during the winter break! Ragamuf is a chair rug or cover woven in mesh fabric."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63005/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61634",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6515,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T13:14:15.960421Z",
                    "last_modified_time": "2024-02-06T13:23:09.527535Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739513.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6515/?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:15.937987Z",
            "last_modified_time": "2024-04-05T17:13:45.776948Z",
            "date_published": null,
            "start_time": "2024-02-19T08:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/08B012640E8B4D67B486B3B1E4BF03F5/Tanssityopaja_Leffaetkot",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/08B012640E8B4D67B486B3B1E4BF03F5/Tanssityopaja_Leffaetkot",
                "en": "http://www.annantalo.fi/en/events/event/08B012640E8B4D67B486B3B1E4BF03F5/Tanssityopaja_Leffaetkot"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Käynnistetään talvilomaviikko tanssimalla yhteisillä leffaetkoilla!</p><p>Annantalon TanssiKino näyttää klo 12–13.30 elokuvan Dancing Queen ja tässä tanssityöpajassa virittäydytään elokuvan tunnelmaan.</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>Dancing Queenin jälkeen tanssit jatkuvat leffajatkoilla klo 13.45–14.45.</p><p>Leffaetkot ja -jatkot ohjaa tanssinopettaja ja Annantalon taidekasvattaja Sanna Kuusisto.</p><p>Ikäsuositus: 7+<br>Tila: Tanssiluokka<br>Kieli: suomi</p>",
                "sv": "<p>Inled vinterlovsveckan med att dansa på den gemensamma filmförfesten!</p><p>Annegårdens DansKino visar klockan 12–13.30 filmen Dancing Queen och i den här dansverkstaden förbereder man för filmens stämning.</p>",
                "en": "<p>Let’s kick off the winter holiday week by dancing at a movie preparty!</p><p>Annantalo’s TanssiKino is showing the movie Dancing Queen from 12 noon to 1:30 p.m. Set the mood at this dance workshop!</p>"
            },
            "name": {
                "fi": "Tanssityöpaja: Leffaetkot – Tanssiva talviloma",
                "sv": "Tanssityöpaja: Leffaetkot – Tanssiva talviloma | Dansande vinterlov",
                "en": "Tanssityöpaja: Leffaetkot – Tanssiva talviloma | Dancing Winter Holiday"
            },
            "short_description": {
                "fi": "Käynnistetään talvilomaviikko tanssimalla yhteisillä leffaetkoilla!",
                "sv": "Inled vinterlovsveckan med att dansa på den gemensamma filmförfesten!",
                "en": "Let’s kick off the winter holiday week by dancing at a movie preparty!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61634/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61884",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7106,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-10T14:13:09.248794Z",
                    "last_modified_time": "2024-02-06T13:23:09.435189Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738412.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7106/?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.224519Z",
            "last_modified_time": "2024-04-05T17:13:45.724446Z",
            "date_published": null,
            "start_time": "2024-02-19T08:00:00Z",
            "end_time": "2024-02-19T12: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/8B65BC2189ACD59D5D7BE11C8296110B/TAYNNA_Animoin_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8B65BC2189ACD59D5D7BE11C8296110B/FULLBOKAT_Jag_animerar_",
                "en": "http://www.caisa.fi/en/events/event/8B65BC2189ACD59D5D7BE11C8296110B/FULL_BOOKED_I_animate_"
            },
            "provider_contact_info": null,
            "provider": 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>"
            },
            "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"
            },
            "short_description": {
                "fi": "KURSSI ON TÄYNNÄ.",
                "sv": "KURS ÄR FULLBOKAT.",
                "en": "THE COURSE IS FULL BOOKED."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61884/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61595",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6467,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T13:15:25.560617Z",
                    "last_modified_time": "2024-02-06T13:23:09.339696Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739483.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6467/?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-07T13:15:25.544594Z",
            "last_modified_time": "2024-04-05T17:13:45.682116Z",
            "date_published": null,
            "start_time": "2024-02-19",
            "end_time": "2024-02-22",
            "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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/88EAC60190AA990B4637B6B55B272DE5/VARATTU_TAYTEEN_Talvilomakurssi_Satumetsan_salaisuus",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/88EAC60190AA990B4637B6B55B272DE5/VARATTU_TAYTEEN_Talvilomakurssi_Satumetsan_salaisuus",
                "en": "http://www.vuotalo.fi/en/events/event/88EAC60190AA990B4637B6B55B272DE5/VARATTU_TAYTEEN_Talvilomakurssi_Satumetsan_salaisuus"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tällä elämysleirillä selvitetään satumetsän salaisuutta ja luodaan itse satumetsä ympärillemme!</p><p>Maanantaista torstaihin klo 10–14.</p><p>Leirillä askarrellaan satumaisia taideteoksia, runoillaan ja leikitään seuraten koko ajan samalla tarinaa, joka paljastaa pikkuhiljaa satumetsän salaisuutta. Leirin lopussa pelataan teemaan sopiva satumainen pakopeli.</p><p>Kohderyhmä: 1–3-luokkalaiset<br>Ohjaaja: Maaria Klemetti</p><p>Maksuton osallistuminen. Ilmoittautumiset 1.12.2023 alkaen: salla.fornaro@hel.fi tai puh. 040 537 1520.</p><p>Huom! Ilmoittautuminen on sitova ja paikka pitää perua hyvissä ajoin ennen leirin alkua, jos lapsi ei pääsekään osallistumaan.</p>",
                "sv": "<p>I upplevelselägret tar vi reda på hemligheten med sagoskogen och skapar själva sagoskogen runt omkring oss!</p><p>Måndag till torsdag kl. 10–14.</p><p>På lägret skapar man sagolika konstverk, skriver dikter och leker, och samtidigt hela tiden följer en berättelse som långsamt avslöjar sagoskogens hemlighet. I slutet av lägret spelas ett sagolikt flyktspel som passar temat.</p><p>Fråga mer och registrera: salla.fornaro@hel.fi</p>",
                "en": "<p>At this experience camp, we will explore the Secret of the Fairy Tale Forest and create our own fairy tale forest around us!</p><p>Monday through Thursday from 10 a.m. to 2 p.m.</p><p>At the camp, we will craft fairy-tale artworks, write poems and play while following a story that slowly reveals the secret of the fairy-tale forest. At the end of the camp, we will play a fairy-tale escape game.</p><p>Enquiries and registration:salla.fornaro@hel.fi</p>"
            },
            "name": {
                "fi": "VARATTU TÄYTEEN Talvilomakurssi: Satumetsän salaisuus",
                "sv": "VARATTU TÄYTEEN Talvilomakurssi: Satumetsän salaisuus",
                "en": "VARATTU TÄYTEEN Talvilomakurssi: Satumetsän salaisuus"
            },
            "short_description": {
                "fi": "Tällä elämysleirillä selvitetään satumetsän salaisuutta ja luodaan itse satumetsä ympärillemme!",
                "sv": "I upplevelselägret tar vi reda på hemligheten med sagoskogen och skapar själva sagoskogen runt omkring oss!",
                "en": "At this experience camp, we will explore the Secret of the Fairy Tale Forest and create our own fairy tale forest around us!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61595/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61631",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6514,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T13:14:15.793622Z",
                    "last_modified_time": "2024-02-06T13:23:09.250226Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738215.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6514/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-08T13:14:15.765328Z",
            "last_modified_time": "2024-04-05T17:13:45.628003Z",
            "date_published": null,
            "start_time": "2024-02-19",
            "end_time": "2024-03-09",
            "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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F0B7313E74AAE5001DF8262BE25C9103/Minun_elamani_Ukraina_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F0B7313E74AAE5001DF8262BE25C9103/Minun_elamani_Ukraina_",
                "en": "http://www.kanneltalo.fi/en/events/event/F0B7313E74AAE5001DF8262BE25C9103/Minun_elamani_Ukraina_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kuvataidenäyttely sodan aiheuttamasta tuhosta, pelon voittamisesta ja unelmista.</p><p>Minun elämäni, Ukraina! on OSIRIS teatterin yhteistyöhanke ukrainalaisten maahanmuuttajien, kausityöntekijöiden, pakolaisten, eri alojen taiteilijoiden sekä teatterialan ammattilaisten kanssa.</p><p>Näyttely koostuu OSIRIS teatterin Ukraina-hankkeen aikana <b>Ahmed Alalousin</b> ottamista valokuvista Suomessa sekä samaan aikaan <b>Oleksandra Abdurashytovan</b> ottamista Ukrainan sodan aikaisista valokuvista Ukrainassa. Valokuvat kertovat sodan aiheuttamasta tuhosta, pelon voittamisesta ja unelmista. Ne kertovat myös Suomeen paenneiden naisten tarinoista, heidän surustaan ja sitkeydestään, rohkeudesta ja jälleenrakentamisen voimasta.</p><p>Näyttelyn toisen osion muodostaa Ukrainan Tšernihivin kaupungin jälleenrakennusprojektin suunnitelmat. Arkkitehtitoimisto Kanttia 2 ja arkkitehti <b>Anastasiia Pihlman</b> loivat ohjeiston sodan aikana mittavia tuhoja kärsineen Tšernihivin jälleenrakentamiselle. Kanttia 2:n ja Pihlmanin luomassa dokumentaatiossa analysoidaan rakennukset, julkisivut, kadut, torit ja puistoalueet ja annetaan esimerkkejä siitä, miten ne voitaisiin suunnitella. Lisäksi kiinnitetään huomiota esteettömyyteen, energiaratkaisuihin sekä esimerkiksi väestönsuojiin. Näyttelyssä esitellään ohjeisto visualisointikuvineen sekä hankkeen seuraavat vaiheet.</p><p>Näyttelyn oheisohjelma:<br> <br>Ke 14.2. klo 12.00–15.00<br>Ystävänpäivän askartelutyöpaja: Taitellaan paperista pieniä kukkia, jotka halutessaan voi jättää osaksi näyttelyä<br> <br>La 2.3. klo 13.00<br>OSIRIS teatteri: Sotaa paenneiden naisten tarinoita ja lauluja<br> <br>La 9.3. klo 13.00<br>Arkkitehti Anastasiia Pihlman esittelee Tšernihivin kaupungin suomalais-ukrainalaista jälleenrakennusprojektia.</p><p>Kuvataidenäyttelyn lisäksi hankkeessa toteutetaan Minun elämäni, Ukraina! -näyttämöteos, jonka ensi-ilta on 21.2.2024 klo 19 Malmitalossa.</p><p>Tuotanto OSIRIS teatteri<br>Opetus- ja kulttuuriministeriö on tukenut hanketta.</p>",
                "sv": "<p>Bildkonstutställning om krigets förstörelse, om att övervinna rädslan och om drömmarna.</p><p>Mitt liv, Ukraina! är ett samarbetsprojekt mellan OSIRIS teater och ukrainska och finländska invandrare, säsongsarbetare, flyktingar, konstnärer inom olika branscher samt teaterproffs.</p>",
                "en": "<p>A visual art exhibition about the destruction caused by war, overcoming fear, and dreams.</p><p>My Life, Ukraine! is OSIRIS theatre’s cooperation project with Ukrainian and Finnish immigrants, seasonal workers, refugees, artists from various fields and theatre professionals.</p>"
            },
            "name": {
                "fi": "Minun elämäni, Ukraina!",
                "sv": "Minun elämäni, Ukraina!",
                "en": "Minun elämäni, Ukraina!"
            },
            "short_description": {
                "fi": "Kuvataidenäyttely sodan aiheuttamasta tuhosta, pelon voittamisesta ja unelmista.",
                "sv": "Bildkonstutställning om krigets förstörelse, om att övervinna rädslan och om drömmarna.",
                "en": "A visual art exhibition about the destruction caused by war, overcoming fear, and dreams."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61631/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61238",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6168,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T11:13:41.001604Z",
                    "last_modified_time": "2024-02-06T13:23:09.154506Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739462.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6168/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-23T11:13:40.972623Z",
            "last_modified_time": "2024-04-05T17:13:45.577872Z",
            "date_published": null,
            "start_time": "2024-02-19",
            "end_time": "2024-02-25",
            "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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6FF075C5DB1C9DC14B04500AD5791926/Tanssiva_talviloma",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/6FF075C5DB1C9DC14B04500AD5791926/Tanssiva_talviloma",
                "en": "http://www.annantalo.fi/en/events/event/6FF075C5DB1C9DC14B04500AD5791926/Tanssiva_talviloma"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Viileitä tanssiliikkeitä ja jäätävän siistejä askelkuvioita! Talvilomaviikolla tanssin riemu valtaa Annantalon ja luvassa on monipuolista tanssiteemaista ohjelmaa.</p><p>Arkipäivinä koululaiset pääsevät nauttimaan tanssiteemaisista leffoista elokuvateatteri <b>TanssiKinossa</b>.</p><p>Maanantaina katsotaan norjalainen uutuuselokuva <b>Dancing Queen</b>, jonka tunnelmiin virittäydytään tanssietkoilla –ja jatkoilla.  <br> <br>Tiistaina Ihanat-tanssiryhmän sooloesitysprojekti <b>Muotokuvia</b> ja tanssielokuvatrilogia <b>Z-sukupolvi</b> nostavat esiin tanssijoita, joista jokaisella on oma erityisyytensä. Heti Ihanien esitysten jälkeen siirrymme ihmettelemään Kaarisillan <b>Miltä tuntuu olla eläin?</b> -näyttelyn avajaisia. Näyttely tuo esille eri tekniikoilla työskentelevien erityistä tukea tarvitsevien Kaarisillan taitelijoiden eläinaiheisia töitä. <br> <br>Keskiviikon TanssiKinossa katsotaan Walt Disneyn <b>Encanto</b>, joka on musiikkia ja tanssia pursuava Oscar-palkittu animaatioelokuva. Pienemmille katsojille järjestetään <b>NaperoKino</b>, jossa näytetään lyhytanimaatioita teemalla luovuus ja taiteet. <br> <br>Torstaina Ko-kollektiivi tuo Annantalolle <b>Tanssikorttipakan</b>, osallistavan tanssiesityksen, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.  Iltapäivän TanssiKinossa katsotaan klassikkoelokuva <b>Billy Elliot</b> (2000), joka on suunnattu nuorille katsojille. <br> <br>Perjantaina Annantalolla nähdään eläimellisiä tanssiliikkeitä, kun <b>AnnanHouse – koko perheen disko</b> villitsee, tällä kertaa eläinteemalla. Päivän tunnelmiin virittäydytään TanssiKinossa <b>Sing 2</b> -eläinmusikaalia katsomalla. <br> <br>Sunnuntaina eli talvilomaviikon päätöspäivässä nautitaan Tanssiteatteri Raatikon esityksestä <b>Hip Hop Hurraa! Hyrrän pyörteissä</b> -työpajassa tutustutaan puolestaan optiseen taiteeseen valmistamalla omat tanssivat taikahyrrät. Lisäksi Janne Stormin <b>Birth of a Bird</b> -teoksessa päästään vr-lasien avulla testaamaan, miltä tuntuu koskettaa ääntä ja ohjata sitä liikkeellä. <br> <br>Tervetuloa mukaan viettämään viileää ja tanssin täyteistä talvilomaa!</p><p>Talvilomaviikon aikataulu päivittyy talven aikana <u><a href=\"https://annantalo.fi/fi/tapahtumat/?q=Tanssiva%20talviloma\">Annantalon tapahtumakalenterissa</u></a>.</p>",
                "sv": "<p>Dansande vinterlov! Coola danssteg och rysande snygga stegmönster! Under vinterlovsveckan kommer dansens glädje att råda över Annegården och det temat ska vara ett mångsidigt danstema.</p><p>Skolbarn får njuta av filmer med danstema i biografen DansKino, dansverkstäder, hela familjens disco, Hur känns det att vara ett djur? -utställningen och hip-hop-dansteater.</p>",
                "en": "<p>Dancing Winter Holiday – Cool dance moves and ice-cold steps! During the winter holiday week, the joy of dancing will take over Annantalo with versatile dance-themed programme.</p><p>Schoolchildren can enjoy dance-themed movies at the TanssiKino cinema, dance workshops, a disco for the whole family, the What does it feel like to be an animal? exhibition and hip hop dance theatre.</p>"
            },
            "name": {
                "fi": "Tanssiva talviloma",
                "sv": "Tanssiva talviloma – Dansande vinterlov",
                "en": "Tanssiva talviloma – Dancing Winter Holiday"
            },
            "short_description": {
                "fi": "Viileitä tanssiliikkeitä ja jäätävän siistejä askelkuvioita! Talvilomaviikolla tanssin riemu valtaa Annantalon ja luvassa on monipuolista tanssiteemaista ohjelmaa.",
                "sv": "Dansande vinterlov! Coola danssteg och rysande snygga stegmönster! Under vinterlovsveckan kommer dansens glädje att råda över Annegården och det temat ska vara ett mångsidigt danstema.",
                "en": "Dancing Winter Holiday – Cool dance moves and ice-cold steps! During the winter holiday week, the joy of dancing will take over Annantalo with versatile dance-themed programme."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61238/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61570",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/mais-harb-the-middle-eastern-ensemble-3428498/",
                        "sv": "https://www.lippu.fi/artist/stoa/mais-harb-the-middle-eastern-ensemble-3428498/",
                        "en": "https://www.lippu.fi/artist/stoa/mais-harb-the-middle-eastern-ensemble-3428498/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6458,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T12:14:56.378940Z",
                    "last_modified_time": "2024-02-06T13:23:09.066268Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741476.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6458/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-07T12:14:56.345626Z",
            "last_modified_time": "2024-04-05T17:13:45.516574Z",
            "date_published": null,
            "start_time": "2024-02-17T17: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/54A25894E528CFBD4AE9920912E4334F/Mais_Harb_The_Middle_Eastern_Ensemble",
                "sv": "http://www.stoa.fi/sv/evenemang/event/54A25894E528CFBD4AE9920912E4334F/Mais_Harb_The_Middle_Eastern_Ensemble",
                "en": "http://www.stoa.fi/en/events/event/54A25894E528CFBD4AE9920912E4334F/Mais_Harb_The_Middle_Eastern_Ensemble"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Fatima Zahra Bennacer on joutunut perumaan esiintymisensä, illan uudeksi solistiksi saadaan upea syyrialainen laulaja, lauluntekijä ja säveltäjä Mais Harb.</p><p>The Middle Eastern Ensemble tuo vaikuttavan melodioiden ja rytmien täyteisen musiikillisen ilotulituksen 15 muusikon kokoonpanolla.</p><p>Ohjelma sisältää energisiä ja tanssittavia, mutta samalla koskettavia ja melankolisia sävelmiä, Lähi-Idän klassista ja kansanmusiikkia kuten arabialaista, persialaista, turkkilaista ja kurdilaista musiikkia. Kokoonpanon äänimaailmaa värittävät arabialaiset soittimet yhdessä länsimaisten soittimien kanssa.</p><p>Yhtyeen taiteellinen johtaja ja perustaja on oud-soittaja Ali Haithem Irakista.</p><p>Kesto: 2 t, ei väliaikaa</p>",
                "sv": "<p>Mais Harb och The Middle Eastern Ensemble bjuder in dig att uppleva den djupsinniga och fängslande arabiska musiken vid Stoa kulturcentrum.</p><p>Den här gången presenterar The Middle Eastern Ensemble ett imponerande musikaliskt fyrverkeri av melodier och rytmer tillsammans med tio andra musiker. Programmet består av energifyllda och dansvänliga men samtidigt rörande och melankoliska låtar, som hämtar inspiration från klassisk musik och folkmusik från olika delar av Mellanöstern, till exempel arabisk, persisk, turkisk och kurdisk musik från länder som Egypten, Syrien, Turkiet och Isak.</p><p>Ensemblens ljudlandskap färgas av en unik blandning av arabiska och västerländska instrument, inklusive oud, tabla, riq, ney, qanoun, saz, violin, altfiol, cello, dragspel, trumpet, klarinett och piano. Den konstnärliga ledaren och grundaren av ensemblen Ali Haithem, som är en känd oudspelare från Irak, leder gruppen och skapar en förtrollande musikalisk upplevelse.</p><p>Längd: 2 t.</p>",
                "en": "<p>Fatima Zahra Bennacer has had to cancel her performance, the new soloist of the evening will be the wonderful Syrian singer, songwriter and composer Mais Harb.</p><p>This time, The Middle Eastern Ensemble presents an impressive musical firework of melodies and rhythms together with 10 musicians. The program consists of energetic and danceable yet touching and melancholic tunes, drawing on Middle Eastern classical and folk music from various regions such as Arabic, Persian, Turkish, and Kurdish music from countries like Egypt, Syria, Turkey, and Iraq.</p><p>The soundscape of the ensemble is colored by a unique blend of Arabic and Western instruments, including oud, tabla, riq, ney, qanoun, saz, violin, viola, cello, accordion, trumpet, clarinet, and piano. Artistic director and founder of the ensemble, Ali Haithem, a renowned oud player from Iraq, leads the group to create a mesmerizing musical experience that will leave you spellbound.</p><p>Duration: 2 hours</p>"
            },
            "name": {
                "fi": "Mais Harb & The Middle Eastern Ensemble",
                "sv": "Mais Harb & The Middle Eastern Ensemble",
                "en": "Mais Harb & The Middle Eastern Ensemble"
            },
            "short_description": {
                "fi": "Fatima Zahra Bennacer on joutunut perumaan esiintymisensä, illan uudeksi solistiksi saadaan upea syyrialainen laulaja, lauluntekijä ja säveltäjä Mais Harb.",
                "sv": "Mais Harb och The Middle Eastern Ensemble bjuder in dig att uppleva den djupsinniga och fängslande arabiska musiken vid Stoa kulturcentrum.",
                "en": "Fatima Zahra Bennacer has had to cancel her performance, the new soloist of the evening will be the wonderful Syrian singer, songwriter and composer Mais Harb."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61570/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}