Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 27621,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=1003",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=1001"
    },
    "data": [
        {
            "id": "kulke:60466",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-2/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4638,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:07.535398Z",
                    "last_modified_time": "2024-02-06T13:22:45.136662Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725191.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4638/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:07.379091Z",
            "last_modified_time": "2024-02-06T13:22:45.177267Z",
            "date_published": null,
            "start_time": "2023-12-12T11:30:00Z",
            "end_time": "2023-12-12T13: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,
            "description": {
                "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/6AD61C4CCF7D19B9E2F54EF978109329/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers",
                "sv": "http://www.caisa.fi/sv/evenemang/event/6AD61C4CCF7D19B9E2F54EF978109329/Open_Art_Studio_for_Toddlers-verkstader_",
                "en": "http://www.caisa.fi/en/events/event/6AD61C4CCF7D19B9E2F54EF978109329/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers"
            },
            "name": {
                "fi": "Taidetta taaperoille – Open Art Studio for Toddlers",
                "sv": "Open Art Studio for Toddlers-verkstäder",
                "en": "Taidetta taaperoille – Open Art Studio for Toddlers"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60466/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59907",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4637,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:07.158081Z",
                    "last_modified_time": "2024-02-06T13:22:45.042900Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731101.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4637/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:06.991160Z",
            "last_modified_time": "2024-02-06T13:22:45.085687Z",
            "date_published": null,
            "start_time": "2023-12-12T08:30:00Z",
            "end_time": "2023-12-12T09: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,
            "description": {
                "fi": "<p>Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan, sään mukaan voidaan tanssia myös Stoan aukiolla.</p><p>Aiempaa osaamista et tarvitse eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona. Vapaa pääsy.      <br>  <br>Ohjauskieli: suomi</p>",
                "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas entré.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska   <br>Fritt inträde.</p>",
                "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish  <br>Free entry</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D51962ECD7CA1F6D9B2E646ADD873EAC/Aamupaivatanssit",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D51962ECD7CA1F6D9B2E646ADD873EAC/Formiddagsdans",
                "en": "http://www.stoa.fi/en/events/event/D51962ECD7CA1F6D9B2E646ADD873EAC/Dances_in_the_Morning"
            },
            "name": {
                "fi": "Aamupäivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa",
                "sv": "Förmiddagsdans",
                "en": "Dances in the Morning"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan, sään mukaan voidaan tanssia myös Stoan aukiolla.",
                "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas entré.",
                "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59907/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60634",
            "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: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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4636,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:06.755149Z",
                    "last_modified_time": "2024-02-06T13:22:44.941523Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730325.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4636/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:06.555446Z",
            "last_modified_time": "2024-02-06T13:22:44.982878Z",
            "date_published": null,
            "start_time": "2023-12-11T15: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,
            "description": {
                "fi": "<p>Aleksi Salmenperän lämminhenkinen draamakomedia kuvaa perhe-elämän, kasvatuksen ja parisuhteen haasteita samaistuttavasti ja hurmaavan humoristisesti, kipeistäkin aiheista huolimatta.</p><p>Elokuvahistorian asiantuntija FT <b>Harri Kilpi</b> johdattaa illan elokuvaan klo 17–17.45. Luennon jälkeen klo 18 alkaa elokuvan ilmaisnäytös.  <br>  <br>Kino Kuutamon ohjelmistossa nähdään syksyllä 2023 tuoreita kotimaisia kuvauksia nuoruudesta.  <br> <br>16-vuotias Eveliina näkee sattumalta äitinsä suutelevan toista naista. Vanhempiensa eroa peläten hän päättää puuttua tilanteeseen, lupaa kysymättä ja keinoja kaihtamatta.<br> <br>Eveliinan elämässä onnistumisen mittariksi muodostuu isän ja äidin pysyminen yhdessä. Hänen mielestään paras keino tuhota äidin avioliiton ulkopuolinen suhde ja lähentää vanhemmat uudelleen on vaikeuksiin joutunut teinitytär.<br> <br>Niinpä Eveliina heittäytyy moniongelmaiseksi. Siinä sivussa panoksiksi joutuu muutaman muunkin elämä. Silti Eveliina varjelee suunnitelmaansa viimeiseen asti ja omat salaiset selviytymiskeinonsa on aikuisillakin — kunnes kupla puhkeaa.<br> <br><i>”Stella Leppikorpi, 17, näyttelee kipuilevaa tytärtä ilmiömäisesti Aleksi Salmenperän viiden tähden Kuplassa”</i> – MR/HS<br>  <br>Suomi, 2022 <br>Ikäraja: 12 vuotta, voi aiheuttaa ahdistusta, sisältää päihteiden käyttöä <br>Kesto: 1 t 43 min <br>Ohjaaja: Aleksi Salmenperä<br>Pääosissa: Stella Leppikorpi, Minna Haapkylä, Tommi Korpela, Anna-Maija Tuokko ja Amos Brotherus <br>Kieli: suomi</p><p><i>Maksuttomat maanantait 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!</i></p>",
                "sv": "<p>Aleksi Salmenperäs varmhjärtade dramakomedi beskriver utmaningar i familjelivet, uppfostran och parförhållandet på ett igenkännbart och charmigt humoristiskt sätt, trots även smärtsamma ämnen.</p><p>FD Harri Kilpi, expert på filmhistoria, leder kvällen till filmen klockan 17–17.45. Efter föreläsningen börjar den kostnadsfria visningen av filmen klockan 18. Föreläsningen hålls på finska.</p><p>På Kino Kuutamos repertoar står under hösten 2023 färska inhemska skildringar av ungdomen.    <br>  <br><i>Kostnadsfria måndagar ä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!</i></p>",
                "en": "<p>Aleksi Salmenperä’s warm-hearted drama comedy describes the challenges of family life, parenting and relationships with a relatable and charmingly humorous approach, even to difficult subjects.</p><p>Film history expert PhD Harri Kilpi introduces the film at 17.00–17.45. The free screening of the film starts after the lecture at 18.00. The lecture is in Finnish.</p><p>In autumn 2023, Kino Kuutamo’s programme features fresh Finnish portrayals of youth.    <br> <br><i>Free Mondays 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!</i></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E670831CCD850DC4216BEF701B5F28AD/Kino_Kuutamo_Kupla",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E670831CCD850DC4216BEF701B5F28AD/Kino_Kuutamo_Kupla",
                "en": "http://www.kanneltalo.fi/en/events/event/E670831CCD850DC4216BEF701B5F28AD/Kino_Kuutamo_The_Bubble"
            },
            "name": {
                "fi": "Kino Kuutamo: Kupla – Maksuttomat maanantait",
                "sv": "Kino Kuutamo: Kupla – Kostandsfria måndagar",
                "en": "Kino Kuutamo: The Bubble – Free Mondays"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Aleksi Salmenperän lämminhenkinen draamakomedia kuvaa perhe-elämän, kasvatuksen ja parisuhteen haasteita samaistuttavasti ja hurmaavan humoristisesti, kipeistäkin aiheista huolimatta.",
                "sv": "Aleksi Salmenperäs varmhjärtade dramakomedi beskriver utmaningar i familjelivet, uppfostran och parförhållandet på ett igenkännbart och charmigt humoristiskt sätt, trots även smärtsamma ämnen.",
                "en": "Aleksi Salmenperä’s warm-hearted drama comedy describes the challenges of family life, parenting and relationships with a relatable and charmingly humorous approach, even to difficult subjects."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60634/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60503",
            "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:32/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4635,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:04.932684Z",
                    "last_modified_time": "2024-02-06T13:22:44.845922Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731782.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4635/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:04.070598Z",
            "last_modified_time": "2024-02-06T13:22:44.884515Z",
            "date_published": null,
            "start_time": "2023-12-11T08:15:00Z",
            "end_time": "2023-12-11T09: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,
            "description": {
                "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.<br>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>",
                "sv": "<p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>",
                "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/AD1FB6DF99EFEC2D5578E35295B7FA61/Tanssi_ja_leikki_-tyopajat_Leikki-ikaiset",
                "sv": "http://www.caisa.fi/sv/evenemang/event/AD1FB6DF99EFEC2D5578E35295B7FA61/Dans_och_lek_verkstad_Barn_i_lekaldern",
                "en": "http://www.caisa.fi/en/events/event/AD1FB6DF99EFEC2D5578E35295B7FA61/Dance_and_play_workshops_Play-age"
            },
            "name": {
                "fi": "Tanssi ja leikki -työpajat | Leikki-ikäiset – Leikki-ikäisille (3–5 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek verkstad | Barn i lekåldern – För barn i lekåldern (3–5 år) och deras föräldrar",
                "en": "Dance and play workshops | Play-age – For play-age children (3–5 years) and their parents"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "en": "The dance and play workshop introduces children to the world of dance through movement, music and play."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60503/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60491",
            "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: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: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4634,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:03.236382Z",
                    "last_modified_time": "2024-02-06T13:22:44.744351Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731766.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4634/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:02.853819Z",
            "last_modified_time": "2024-02-06T13:22:44.783025Z",
            "date_published": null,
            "start_time": "2023-12-11T07:15:00Z",
            "end_time": "2023-12-11T08: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,
            "description": {
                "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.</p><p>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>",
                "sv": "<p>Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>",
                "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/2C5B41C7122A8944DAE6504158E829F0/Tanssi_ja_leikki_-tyopaja_Taaperot",
                "sv": "http://www.caisa.fi/sv/evenemang/event/2C5B41C7122A8944DAE6504158E829F0/Dans_och_lek_verkstad_Smabarn",
                "en": "http://www.caisa.fi/en/events/event/2C5B41C7122A8944DAE6504158E829F0/Dance_and_play_workshops_Toddlers"
            },
            "name": {
                "fi": "Tanssi ja leikki -työpaja | Taaperot – Taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek verkstad | Småbarn – För småbarn (1–3 år) och deras föräldrar",
                "en": "Dance and play workshops / Toddlers – For toddlers (1–3 years) and their parents"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "The dance and play workshop introduces children to the world of dance through movement, music and play."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60491/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61131",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3506503",
                        "en": "https://www.lippu.fi/eventseries/name-3506503"
                    },
                    "price": {
                        "fi": "52/124 €",
                        "en": "52/124 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5427,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-12T12:32:36.138346Z",
                    "last_modified_time": "2024-02-06T13:22:44.643503Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737846.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5427/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-12T12:32:36.009539Z",
            "last_modified_time": "2024-02-06T13:22:44.685152Z",
            "date_published": null,
            "start_time": "2023-12-10T17: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,
            "description": {
                "fi": "<p>CACTUS - A monologue play by Renata Litvinova</p><p>CACTUS is a striking monologue play by the iconic Renata Litvinova – an actress and screenwriter, she has become a Russian art-house cult figure, and has acquired international acting fame from collaborating with leading European directors.</p><p>The play starts with the scene where a woman is packing up to leave with her beloved. She is packing the suitcase, remembering him and her love towards him and under the influence of this love miracles begin to happen. The fact is that she is either a magician or a woman that became mad with love — it’s up to the audience to decide. But her monologue is only for love and her beloved, that she must finally meet.</p><p>The music for the play was written by Zemfira – one of Russia’s most prized rock singer-songwriters. While the stunning flamboyant costumes were created by Demna – the creative director of the luxury Balenciaga brand.</p><p>Also taking part in the performance:<br>Eric Laugérias<br>Terenteva Elena<br>Renata Litvinova</p><p>The performance is in Russian and French with Russian and English subtitles.</p><p>Duration 1 hour and 40 minutes.</p><p>****</p>",
                "en": "<p>CACTUS - A monologue play by Renata Litvinova</p><p>CACTUS — A monologue play by Renata Litvinova</p><p>CACTUS is a striking monologue play by the iconic Renata Litvinova – an actress and screenwriter, she has become a Russian art-house cult figure, and has acquired international acting fame from collaborating with leading European directors.</p><p>The play starts with the scene where a woman is packing up to leave with her beloved. She is packing the suitcase, remembering him and her love towards him and under the influence of this love miracles begin to happen. The fact is that she is either a magician or a woman that became mad with love — it’s up to the audience to decide. But her monologue is only for love and her beloved, that she must finally meet.</p><p>The music for the play was written by Zemfira – one of Russia’s most prized rock singer-songwriters. While the stunning flamboyant costumes were created by Demna – the creative director of the luxury Balenciaga brand.</p><p>Also taking part in the performance:<br>Eric Laugérias<br>Terenteva Elena<br>Renata Litvinova</p><p>The performance is in Russian and French with Russian and English subtitles.</p><p>Duration 1 hour and 40 minutes.</p><p>****</p>",
                "ru": "<p>Спектакль «Кактус» Ренаты Литвиновой в Хельсинки!</p><p>Пронзительная история про любовь, происходящую в странное и трагичное время, про адские сны и любимых, которых надо ждать бесконечно. Премьера спектакля состоялась в Париже в январе 2023 года в театре Hebertot, на сцене которого ставили пьесы Жана Кокто, Альбера Камю и Оскара Уайльда.</p><p>В работе над постановкой принимали участие также невероятно талантливые друзья Ренаты Литвиновой. Музыку и песню к спектаклю написала рок-звезда Земфира. А знаменитый модельер и креативный директор Balenciaga Демна Гвасалия создал серию восхитительных костюмов для этой оригинальной постановки. Всего один спектакль в Хельсинки, 10 декабря в театре Savoy!</p><p>С конца февраля 2022 г. Рената Литвинова живет в Париже, где пишет сценарии, снимает фильм, учит французский язык и участвует в дефиле модного дома Balenciaga. Именно в Париже Рената Литвинова и поставила новый спектакль «Кактус» по собственной одноименной пьесе, и сама же исполнила в нем главную роль.</p><p>В спектакле так же участвуют:<br>Eric Laugérias<br>Terenteva Elena<br>Рената Литвинова</p><p>Спектакль идет на русском и французском языках с русскими и английскими субтитрами.</p><p>Продолжительность спектакля примерно 1 час и 40 минут.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1EC72BB06B82469E7B512A5EC0177023/CACTUS_Renata_Litvinova_in_Helsinki",
                "en": "http://www.savoyteatteri.fi/en/events/event/1EC72BB06B82469E7B512A5EC0177023/CACTUS_Renata_Litvinova_in_Helsinki"
            },
            "name": {
                "fi": "CACTUS: Renata Litvinova in Helsinki",
                "en": "CACTUS: Renata Litvinova in Helsinki"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "CACTUS - A monologue play by Renata Litvinova",
                "en": "CACTUS - A monologue play by Renata Litvinova"
            },
            "provider": {
                "fi": "Aftersunset Oy",
                "en": "Aftersunset Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61131/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:58607",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://web.lippu.fi/palautus/",
                        "sv": "https://web.lippu.fi/palautus/",
                        "en": "https://web.lippu.fi/palautus/"
                    },
                    "price": {
                        "fi": "59,50/54,50 €",
                        "sv": "59,50/54,50 €",
                        "en": "59,50/54,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4633,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:02.621589Z",
                    "last_modified_time": "2024-02-06T13:22:44.545988Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_723014.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4633/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:02.470830Z",
            "last_modified_time": "2024-02-06T13:22:44.585852Z",
            "date_published": null,
            "start_time": "2023-12-10",
            "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,
            "description": {
                "fi": "<p>Maggie Reilly on peruuttanut saapumisensa Suomeen eikä Savoy-teatteriin 10. joulukuuta suunniteltu konsertti valitettavasti toteudu.</p><p>Jo maksetut liput tulee palauttaa sunnuntaihin 10.12.2023 mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelu- tai toimitusmaksuja.<br>Jo maksetut liput voi myös vaihtaa Savoy-teatterin lahjakorttiin. Lahjakortti on voimassa kaksi (2) vuotta myöntöhetkestä, ja sillä voi ostaa lippuja Savoy-teatterin tapahtumiin Savoy-teatterin lipunmyynnistä ja Lippupisteen täyden palvelun lippukaupoista. Lahjakortti toimitetaan postitse asiakkaan ilmoittamaan osoitteeseen.</p><p>OHJE LIPPUJEN VAIHTAMISEKSI LAHJAKORTTIIN:</p><p>Ilmoita lipun viivakoodinumero, rivi- ja paikkanumero sekä osoite johon lahjakortti postitetaan osoitteeseen raisa.ailio@hel.fi.</p><p>OHJE LIPPUJEN PALAUTUKSIIN:<br> <br>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/<br> <br>Liput voi myös palauttaa postitse. <br>Asiakkaat saavat lipun hinnan takaisin palauttamalla lipun yhteystietoineen ja tilinumeroineen postitse Lippupisteelle osoitteeseen:<br> <br>Lippupiste Oy / ”Tapahtuman nimi” palautus <br>Kansikatu 5, 33100 Tampere</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br> <br>Tapahtumajärjestäjä Visual Media Productions Finland Oy sekä Savoy-teatteri ja Lippupiste pahoittelevat muutoksesta aiheutuvaa vaivaa!</p><p>****</p><p>Moonlight Shadow - ja Everytime We Touch -hiteistään tunnetuksi tullut Maggie Reilly saapuu konsertoimaan Helsinkiin joulukuussa 2023. Reilly nähdään Happy Christmas -nimisessä joulukonsertissaan Savoy-teatterissa sunnuntaina 10. joulukuuta.</p><p>Reilly julkaisi Happy Christmas -joulualbumin viime vuoden lopulla. Konsertissaan hän esittää kaikkien tuntemia joululauluja sekä skottilaisia ja muita brittiläisiä kansanlaulua unohtamatta myöskään muiden muassa Nat King Colen ja Joni Mitchellin tunnetuksi tekemiä ikivihreitä kappaleita.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: S</p><p>****<br>Maggie Reilly -joulukonsertin (su 11.12.2022) liput käyvät sellaisenaan sunnuntaina 10.12.2023 klo 19 alkavaan konserttiin. Lippuja ei tarvitse vaihtaa.</p>",
                "sv": "<p>KONSERTEN ÄR INSTÄLLD!</p><p>Kan de som redan betalat sina biljetter returnera dem vid 10.12.2023. Köparna får sina pengar tillbaka med undantag av Lippupistes serviceavgift.</p><p>Återbetalningarna av biljettpriserna utförs via denna webblänk: <br>https://web.lippu.fi/palautus/ <br> <br>Biljetterna kan också returneras per post. <br>Kunderna återfår biljettpriset genom att returnera biljetterna med kontaktinformation och kontonummer per post till Lippupiste på adressen:</p><p>Lippupiste Oy / ”Evenemangets namn” retur <br>Kansikatu 5 <br>33100 Tampere</p><p>Kunderna återbetalas biljettpriset på de köpta biljetterna.</p><p>***</p><p>Maggie Reilly, sångerskan som blev känd med hitlåtarna Moonlight Shadow och Everytime We Touch, ger en konsert i Helsingfors i december 2023. Reillys julkonsert Happy Christmas går av stapeln i Savoyteatern söndagen den 10 december.</p><p>Reilly släppte julalbumet Happy Christmas i slutet av fjolåret. På konserten framför hon välkända julsånger, skotska och andra brittiska folksånger och även evergreens som Nat King Cole och Joni Mitchell gjort kända.</p><p>Längd ca 2 h med paus</p><p>Åldersgräns: T</p><p>****<br>Biljetterna till Maggie Reilly – Julkonsert (sön. 11.12.2022) gäller på konserten som börjar kl. 19 söndagen 10.12.2023. Biljetterna behöver inte bytas.</p>",
                "en": "<p>The concert is cancelled.</p><p>Tickets that have already been paid for can be returned until 10th of December 2023 and reimbursed for their full value excluding Lippupiste’s service charge.</p><p>Tickets can be reimbursed on the following webpage: <br>https://web.lippu.fi/palautus/</p><p>Tickets can also be returned by post. <br>Customers may reimburse tickets by returning them with their contact information and relevant bank account information attached to Lippupiste at:</p><p>Lippupiste Oy/\"Event name\" reimbursement <br>Kansikatu 5 <br>33100 Tampere</p><p>Purchased tickets will be reimbursed for the price of the ticket.</p><p>****</p><p>Maggie Reilly, who is known for her hits Moonlight Shadow and Everytime We Touch, will perform her Happy Christmas concert at Savoy Theatre in Helsinki on Sunday 10 December.</p><p>Reilly released her Happy Christmas album at the end of last year. The concert will feature well-known Christmas classics as well as Scottish and other British folk songs, not forgetting the evergreens made famous by artists such as Nat King Cole and Joni Mitchell.</p><p>Duration approx. 2 h, including intermission</p><p>Age limit: all ages</p><p>****<br>The tickets for the Maggie Reilly Christmas concert (Sun 11 December 2022) are valid for the concert at 7 pm on Sunday 10 December 2023. No need to change the tickets.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/BD6AD6B5AB17E7F53575D5AA9317E66A/Maggie_Reilly_-_Joulukonsertti",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/BD6AD6B5AB17E7F53575D5AA9317E66A/Maggie_Reilly_-_Julkonsert",
                "en": "http://www.savoyteatteri.fi/en/events/event/BD6AD6B5AB17E7F53575D5AA9317E66A/Maggie_Reilly_-_Christmas_concert"
            },
            "name": {
                "fi": "Maggie Reilly - Joulukonsertti – KONSERTTI ON PERUTTU!",
                "sv": "Maggie Reilly - Julkonsert – KONSERTEN ÄR INSTÄLLD!",
                "en": "Maggie Reilly - Christmas concert – CONCERT CANCELLED!"
            },
            "location_extra_info": null,
            "short_description": null,
            "provider": {
                "fi": "Visual Media Productions Finland Oy",
                "sv": "Visual Media Productions Finland Oy",
                "en": "Visual Media Productions Finland Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:58607/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59940",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/daltonit-3417949/",
                        "sv": "https://www.lippu.fi/artist/stoa/daltonit-3417949/",
                        "en": "https://www.lippu.fi/artist/stoa/daltonit-3417949/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4632,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:02.218203Z",
                    "last_modified_time": "2024-02-06T13:22:44.453841Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731719.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4632/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:02.040376Z",
            "last_modified_time": "2024-02-06T13:22:44.494552Z",
            "date_published": null,
            "start_time": "2023-12-10T13: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,
            "description": {
                "fi": "<p>Daltonit on tanssin ja sirkuksen liikekulttuureja yhdistelevä koko perheelle suunnattu tanssiteatteriseikkailu.</p><p><b>Daltonien</b> edesottamuksista ei tunnetta, vauhtia ja vaarallisia tilanteita puutu, kun sirkustaiteilijat <b>Onni Toivonen ja Kalle Lehto</b> ja Kinetic Orchestran perustajan <b>Jarkko Mandelinin</b> tanssivat lapset tulkitsevat sarjakuvistakin tuttujen antisankarien tarinaa.</p><p>Daltonien kantavana teemana on syrjäytyminen ja sen henki on hurja, jännittävä, ja koominen. Kaiken sekoilun ja slapstickin jälkeen se toisaalta näyttää omanlaisensa itsepäisen omalakisen elämänkatsomuksen tai vastuuttomuuden traagisenkin puolen.</p><p>Daltonit on ikäänkuin humoristisempi, monitulkintaisempi ja lennokkaampi versio seitsemästä veljeksestä, jossa neljästä elämän kolhimasta, mutta hyväntahtoisesta sekoilijasta, paljastuu uusia puolia, kun heidän normaalin remuamisensa katkaisee tärkeän perheenjäsenen yllättävä katoaminen.</p><p>Daltonien maailma rakentuu tanssin, sirkuksen ja koomisen liikkumisen varaan.</p><p>Koreografia ja konsepti Jarkko Mandelin<br>Esiintyjät: Onni Toivonen, Kalle Lehto, Jarkko Mandelin, Lyyli Mandelin, Oiva Mandelin, Rauha Mandelin, Urho Mandelin<br>Sävellys ja äänisuunnittelu: Josu Mämmi ja Petri Kautto<br>Valosuunnittelu: Niila Rantala ja Jarkko Mandelin<br>Puvustus: Jenna Mandelin<br>Lavastus: Jarkko Mandelin ja työryhmä<br>Tuotanto: Tuotanto: Kinetic Orchestra ja JoJo - Oulun Tanssin Keskus</p><p>Ikäsuositus 5+<br>Kesto n. 45 min <br>Liput la ja su esityksiin 6 €</p><p>Ilmoittautuminen perjantain 8.12.2023 klo 10 koululaisesitykseen: kultus.fi 15.8.2023 alkaen, vapaa pääsy.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Daltonit är ett dansteateräventyr för hela familjen som kombinerar dansens och cirkusens rörelsekulturer.</p><p>‘The Daltons’ is a dance theatre adventure for the whole family, combining the movement cultures of dance and circus.</p><p>Åldersrekommendation 5+<br>Längd cirka 45 min</p>",
                "en": "<p>‘The Daltons’ is a dance theatre adventure for the whole family, combining the movement cultures of dance and circus.</p><p>The Daltons’ performances are full of emotion, speed and dangerous situations as circus artists Onni Toivonen and Kalle Lehto, the dancing children of Jarkko Mandelin, founder of Kinetic Orchestra interpret the story of the comic-book anti-heroes.</p><p>Age recommendation: 5+<br>Duration approx. 45 min</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/0D78D20F1536AFFC1D3237E814D2C045/Daltonit",
                "sv": "http://www.stoa.fi/sv/evenemang/event/0D78D20F1536AFFC1D3237E814D2C045/Daltonit_",
                "en": "http://www.stoa.fi/en/events/event/0D78D20F1536AFFC1D3237E814D2C045/The_Daltons"
            },
            "name": {
                "fi": "Daltonit",
                "sv": "Daltonit",
                "en": "The Daltons"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Daltonit on tanssin ja sirkuksen liikekulttuureja yhdistelevä koko perheelle suunnattu tanssiteatteriseikkailu.",
                "sv": "Daltonit är ett dansteateräventyr för hela familjen som kombinerar dansens och cirkusens rörelsekulturer.",
                "en": "‘The Daltons’ is a dance theatre adventure for the whole family, combining the movement cultures of dance and circus."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59940/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60044",
            "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: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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/labia-3498815/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/labia-3498815/?affiliate=ADV",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/labia-3498815/?affiliate=ADV"
                    },
                    "price": {
                        "fi": "15 € / 10 €",
                        "sv": "15 € / 10 €",
                        "en": "15 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5258,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:33:16.224489Z",
                    "last_modified_time": "2024-02-06T13:22:44.356906Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732368.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5258/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:33:16.068428Z",
            "last_modified_time": "2024-02-06T13:22:44.398495Z",
            "date_published": null,
            "start_time": "2023-12-10T13: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,
            "description": {
                "fi": "<p>Labiassa tanssijat tuovat suutelemisen aistisuuden ja poetiikan näyttämölle. Hempeät queerit muovaavat sukupuolen sekä romanttisen rakkauden moninaisia muotoja ja kuvastoja.</p><p>Erilaiset suutelemisen tavat ja tunnelmat kiteytyvät pieniksi tansseiksi, esityksiksi ja koreografiaksi.</p><p>Huulet koskettavat toisia huulia – janoten, tervehtien, hyvästellen, antaen, ottaen, tuntien, kysyen ja hamuten. Labiassa tanssijat liikkuvat intiimin kokemisen ja sen esittämisen välillä.</p><p><i>bois, butts<br>hubba bubba, guts<br>wet lips, singing hips<br>bye shy bye</i><br> <br>Työryhmä:  <br>Ohjaus: Kauri Sorvari <br>Näyttämöllä: György Jellinek, Kauri Sorvari, Jussi Ulkuniemi <br>Valosuunnittelija: Sofia Palillo <br>Äänisuunnittelija: Satu Kankkonen <br>Pukusuunnittelija: Johanna Liebl  <br>Tuottaja: Riikka Lakea<br>Tukijat: Wihuri, Taike, SKR, Urban Apa, Circus Maximus <br> <br>Labian demoversioita on esitetty Museum Of Impossible Formsilla Bodies of Pleasures -kollektiivin esitysiltamissa ja Club Ambedossa osana Urban Apaa. <br>  <br>Kesto: n. 60 min. Ei väliaikaa. <br>Ei suositella lapsille.<br>Esityksessä kovia ääniä, teatterisavua ja eroottista kuvastoa.<br>Esitys ei ole kielisidonnainen.</p><p>Pressiliput ja lisätiedot: johanna.rissanen@hel.fi</p>",
                "sv": "<p>I Labia tas det intima, poetiska och politiska i kyssande upp på scenen av tre artister.</p><p>De smäktande queerpersonerna omfamnar och formar de många olika formerna av kön och kärlek.</p><p><i>bois, butts<br>hubba bubba, guts<br>wet lips, singing hips<br>bye shy bye</i></p><p>Längd: 60 min, ingen paus<br>Åldersrekommendation: inte för barn<br>Språk: inte språkbunden</p>",
                "en": "<p>Labia is a performance where three performers kiss on stage showing the intimacy, poetics and politics of this action.</p><p>The soft and tender queers embrace and reformulate the multiple shapes of gender and love.</p><p><i>bois, butts<br>hubba bubba, guts<br>wet lips, singing hips<br>bye shy bye</i></p><p>Duration: 60 min, no intermission<br>Age recommendation: not for children<br>Language: no speech</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/E18136FF37C3A2EA4F330D3A05AE7375/Kauri_Sorvari_ja_tyoryhma_labia",
                "sv": "http://www.caisa.fi/sv/evenemang/event/E18136FF37C3A2EA4F330D3A05AE7375/labia",
                "en": "http://www.caisa.fi/en/events/event/E18136FF37C3A2EA4F330D3A05AE7375/labia"
            },
            "name": {
                "fi": "Kauri Sorvari ja työryhmä: labia",
                "sv": "labia",
                "en": "labia"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Labiassa tanssijat tuovat suutelemisen aistisuuden ja poetiikan näyttämölle. Hempeät queerit muovaavat sukupuolen sekä romanttisen rakkauden moninaisia muotoja ja kuvastoja.",
                "sv": "I Labia tas det intima, poetiska och politiska i kyssande upp på scenen av tre artister.",
                "en": "Labia is a performance where three performers kiss on stage showing the intimacy, poetics and politics of this action."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60044/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60043",
            "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: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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/labia-3498815/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/labia-3498815/?affiliate=ADV",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/labia-3498815/?affiliate=ADV"
                    },
                    "price": {
                        "fi": "15 € / 10 €",
                        "sv": "15 € / 10 €",
                        "en": "15 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5257,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:33:15.387214Z",
                    "last_modified_time": "2024-02-06T13:22:44.268257Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732365.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5257/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:33:14.200354Z",
            "last_modified_time": "2024-02-06T13:22:44.305805Z",
            "date_published": null,
            "start_time": "2023-12-09T17: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,
            "description": {
                "fi": "<p>Labiassa tanssijat tuovat suutelemisen aistisuuden ja poetiikan näyttämölle. Hempeät queerit muovaavat sukupuolen sekä romanttisen rakkauden moninaisia muotoja ja kuvastoja.</p><p>Erilaiset suutelemisen tavat ja tunnelmat kiteytyvät pieniksi tansseiksi, esityksiksi ja koreografiaksi.</p><p>Huulet koskettavat toisia huulia – janoten, tervehtien, hyvästellen, antaen, ottaen, tuntien, kysyen ja hamuten. Labiassa tanssijat liikkuvat intiimin kokemisen ja sen esittämisen välillä.</p><p><i>bois, butts<br>hubba bubba, guts<br>wet lips, singing hips<br>bye shy bye</i><br> <br>Työryhmä:  <br>Ohjaus: Kauri Sorvari <br>Näyttämöllä: György Jellinek, Kauri Sorvari, Jussi Ulkuniemi <br>Valosuunnittelija: Sofia Palillo <br>Äänisuunnittelija: Satu Kankkonen <br>Pukusuunnittelija: Johanna Liebl  <br>Tuottaja: Riikka Lakea<br>Tukijat: Wihuri, Taike, SKR, Urban Apa, Circus Maximus <br> <br>Labian demoversioita on esitetty Museum Of Impossible Formsilla Bodies of Pleasures -kollektiivin esitysiltamissa ja Club Ambedossa osana Urban Apaa. <br>  <br>Kesto: n. 60 min. Ei väliaikaa. <br>Ei suositella lapsille.<br>Esityksessä kovia ääniä, teatterisavua ja eroottista kuvastoa.<br>Esitys ei ole kielisidonnainen.</p><p>Pressiliput ja lisätiedot: johanna.rissanen@hel.fi</p>",
                "sv": "<p>I Labia tas det intima, poetiska och politiska i kyssande upp på scenen av tre artister.</p><p>De smäktande queerpersonerna omfamnar och formar de många olika formerna av kön och kärlek.</p><p><i>bois, butts<br>hubba bubba, guts<br>wet lips, singing hips<br>bye shy bye</i></p><p>Längd: 60 min, ingen paus<br>Åldersrekommendation: inte för barn<br>Språk: inte språkbunden</p>",
                "en": "<p>Labia is a performance where three performers kiss on stage showing the intimacy, poetics and politics of this action.</p><p>The soft and tender queers embrace and reformulate the multiple shapes of gender and love.</p><p><i>bois, butts<br>hubba bubba, guts<br>wet lips, singing hips<br>bye shy bye</i></p><p>Duration: 60 min, no intermission<br>Age recommendation: not for children<br>Language: no speech</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/0776A5B37479F5F927C381BFA844D6DC/Kauri_Sorvari_ja_tyoryhma_labia",
                "sv": "http://www.caisa.fi/sv/evenemang/event/0776A5B37479F5F927C381BFA844D6DC/labia",
                "en": "http://www.caisa.fi/en/events/event/0776A5B37479F5F927C381BFA844D6DC/labia"
            },
            "name": {
                "fi": "Kauri Sorvari ja työryhmä: labia",
                "sv": "labia",
                "en": "labia"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Labiassa tanssijat tuovat suutelemisen aistisuuden ja poetiikan näyttämölle. Hempeät queerit muovaavat sukupuolen sekä romanttisen rakkauden moninaisia muotoja ja kuvastoja.",
                "sv": "I Labia tas det intima, poetiska och politiska i kyssande upp på scenen av tre artister.",
                "en": "Labia is a performance where three performers kiss on stage showing the intimacy, poetics and politics of this action."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60043/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61319",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5963,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T10:13:31.963816Z",
                    "last_modified_time": "2024-02-06T13:22:44.179195Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739470.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5963/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-13T10:13:31.945910Z",
            "last_modified_time": "2024-02-06T13:22:44.218628Z",
            "date_published": null,
            "start_time": "2023-12-09T16: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,
            "description": {
                "fi": "<p>Joulutarina on perinteisten joululaulujen, tunnelmallisten runojen ja kolmen kokeneen taiteilijan muodostama toisenlainen joulukonsertti.</p><p>Tarina vie kuulijat joulun odotuksesta ja aattoillan lämmöstä jouluyön mietteisiin. Sytytämme kynttilän ja ajatus lapsesta herkistää meidät.</p><p>Hiljaa helkkyellen kellot herättävät meidät jouluaamuun. Varpunen ja pienen pirtin tyttö kohtaavat toisensa lumihiutaleen leijuessa kohti kevään valoa.</p><p>Konsertissa kuullaan perinteisiä suomalaisia joululauluja säveltäjinä mm. Sibelius, Madetoja, Merikanto, Kaski, Kuusisto. Lisäksi mukana on myös vähemmän esitettyjä helmiä, sekä nykypäivän joululauluja uusin sovituksin – Sydämeeni joulun teen syntyy uudelleen.</p><p><b>Eija Ahvo</b>, kertoja<br><b>Juho Punkeri</b>, laulu<br><b>Tuula Hällström</b>, piano</p><p>Kokonaiskesto 60 min. Vapaa pääsy, tervetuloa!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/18F8BF4ED8F53ADEE3244C40DEC2521C/Joulutarina-konsertti"
            },
            "name": {
                "fi": "Joulutarina-konsertti – Malmitalon joulu"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Joulutarina on perinteisten joululaulujen, tunnelmallisten runojen ja kolmen kokeneen taiteilijan muodostama toisenlainen joulukonsertti."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61319/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61392",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6135,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-22T12:14:01.371513Z",
                    "last_modified_time": "2024-02-06T13:22:44.074017Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739642.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6135/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-22T12:14:01.299983Z",
            "last_modified_time": "2024-02-06T13:22:44.115848Z",
            "date_published": null,
            "start_time": "2023-12-09T14: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,
            "description": {
                "fi": "<p>Vieno Motors tuo Malmitalolle kasvihuoneilta tuoksuvan anarkofloristisen kukituskeitaan.</p><p>Eritaustaisista taiteilijoista koostuva Vieno Motorsin improvisaatiotiimi loihtii elävistä kasveista ja löytötavarasta puettavia asetelmia yleisön silmien edessä. Rohkeat ja onnekkaat saavat matkaansa villit kukitukset!</p><p>Malmitalon Vieno Motors Wintergarden -esityksiin taiteilijat kutsuvat yleisöä tuomaan kukitustaan varten mukanaan oman taskulampun, led-valon, sähkötuikun tai muun kannettavan valonlähteen.</p><p>Lauantain 9.12. 2023  taiteilijat ovat Aura Hakuri, Matteus Pentti, Kirsti Tuokko, Paavo Halonen ja Ilona Valkonen.</p><p><b>Vieno Motors</b> toteuttaa anarkofloristisia esityksiä, joissa taiteilijat yhdistävät yleisön silmien edessä kukkia, kasveja ja muuta materiaalia (found objects) ja työskentelyn seuraaminen muodostaa kokemuksellisen ja hetkellisen spektaakkelin.</p><p>Vieno Motorsia voisi luonnehtia vaihtuvajäseniseksi improvisaatiobändiksi, joskin musiikin sijaan se nostaa valokeilaan visuaalisesti työskentelevien taiteilijoiden käsialat. Materiaalina näille erilaisille äänille ovat kasvit, joita kukin taiteilija käsittelee omaan ammattitaustaansa liittyvin metodein. Esityksissä ja installaatioissa taiteilijat yhdistävät kasveja ennakkoluulottomasti ihmisiin ja esineisiin, mikä saa aikaan sekä havaintoja nykyhetkestä että futuristisia ehdotuksia. Taidekentän lisäksi Vieno Motorsin viitekehystä on katumuoti ja urbaani viljelykulttuuri sekä luovat tavat muuntaa mennyt tulevaisuudeksi.</p><p>Vuodesta 2014 alkaen Ilona Valkonen on maalaamisen rinnalla toteuttanut/tuottanut Vieno Motors –esityksiä. Valkosen roolina on ollut toimia priimusmoottorina ja yhtenä esiintyvistä taiteilijoista, joskin konsepti on alusta asti muokkaantunut kollegiaalisessa vuorovaikutuksessa. Malmitalon esityksiä isännöi Ilona Valkosen kanssa kuvataiteilija Paavo Halonen. Molemmissa esityksissä nähdään viisihenkinen taiteilijakombo.  <br> <br>Vieno Motorsin esityksiin on osallistunut jo yli 70 eritaustaista taiteilijaa ja lukumäärä kasvaa koko ajan. Vain osa esityksistä on ollut kuvataidekonteksteissa, museoissa tai gallerioissa. Vieno Motors on kutsuttu myös yliopiston promootiojuhlallisuuksiin, erilaisiin tapahtumiin, musiikkivideolle ja häihin. Esityksiä on ollut myös ulkomailla: mm. Berliinissä, New Yorkissa, Roomassa, Brightonissa, Lontoossa ja Reykjavikissa.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E000F147EC5E71A0E80BE1588A77BA38/Vieno_Motors_Wintergarden"
            },
            "name": {
                "fi": "Vieno Motors: Wintergarden – Malmitalon joulu"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Vieno Motors tuo Malmitalolle kasvihuoneilta tuoksuvan anarkofloristisen kukituskeitaan."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61392/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61374",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6085,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-17T10:13:39.613102Z",
                    "last_modified_time": "2024-02-06T13:22:43.976716Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739814.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6085/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-17T10:13:39.570564Z",
            "last_modified_time": "2024-02-06T13:22:44.017454Z",
            "date_published": null,
            "start_time": "2023-12-09T13: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,
            "description": {
                "fi": "<p>”Vonkka” perustuu Roald Dahlin ikonisen ja huippusuositun lastenkirjan Jali ja suklaatehdas hämmästyttäviin hahmoihin.</p><p>Elokuva kertoo siitä, miten maailman suurimmasta keksijästä, taikurista ja suklaatehtailijasta tuli tuntemamme, rakastettu Villi Vonkka.</p><p><b>Paul King</b>, joka kirjoitti ja ohjasi Paddington-elokuvat ja David Heyman, joka tuotti Harry Potter -elokuvat, ”Gravityn”, ”Ihmeotukset” ja ”Paddingtonin” sekä tuottajat <b>Alexandra Derbyshire</b> (”Paddington”-elokuvat, ”Jurassic World: Dominion”) ja <b>Luke Kelly</b> (”Roald Dahl’s The White Witches”) tarjoavat huumaavan sekoituksen taikaa ja musiikkia, kaaosta ja tunnetta, joka kerrotaan suurella sydämellä ja huumorilla.</p><p><b>Timothée Chalamet</b> esittää pääosaa tässä vastustamattoman vauhdikkaassa ja kekseliäässä laajakangasspektaakkelissa, joka kertoo Villi Vonkasta. Hänellä on loputtomasti ideoita ja hän on päättänyt muuttaa maailmaa herkullinen suupala kerrallaan ja samalla todistaa, että parhaat asiat elämässä alkavat unelmasta – ja että joka onnekseen tapaa Villi Vonkan huomaa, että mikä tahansa on mahdollista.</p><p>Ikäraja: ei tiedossa <br>Ensi-ilta 8.12.2023 <br>Kesto: 100 min</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D4C2DE5282046020E0CF43EA7EE6F280/Vonkka"
            },
            "name": {
                "fi": "Vonkka – Kino Helios"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "”Vonkka” perustuu Roald Dahlin ikonisen ja huippusuositun lastenkirjan Jali ja suklaatehdas hämmästyttäviin hahmoihin."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61374/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60884",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3479719"
                    },
                    "price": {
                        "fi": "39,50/36,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4713,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-11T21:26:03.164683Z",
                    "last_modified_time": "2024-02-06T13:22:43.884005Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736875.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4713/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-11T21:26:02.754331Z",
            "last_modified_time": "2024-02-06T13:22:43.922325Z",
            "date_published": null,
            "start_time": "2023-12-09T13: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,
            "description": {
                "fi": "<p>Antti Sarpila Swing Band tarjoaa taas yleisölleen svengaavan joulukonsertin, jossa meno vaihtelee vauhdikkaasta herkkään.</p><p>Solistivieraana on vuoden 2022 Tangokuningatar Heta Halonen tällä kertaa jazzillisissa tunnelmissa.</p><p>Kesto n. 2,5 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A850549DEE9790FCF430695B48116051/Swinging_Christmas_2023_"
            },
            "name": {
                "fi": "Swinging Christmas 2023 – Antti Sarpila Swing Band featuring Heta Halonen"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Antti Sarpila Swing Band tarjoaa taas yleisölleen svengaavan joulukonsertin, jossa meno vaihtelee vauhdikkaasta herkkään."
            },
            "provider": {
                "fi": "Antti Sarpila Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60884/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59939",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/daltonit-3417949/",
                        "sv": "https://www.lippu.fi/artist/stoa/daltonit-3417949/",
                        "en": "https://www.lippu.fi/artist/stoa/daltonit-3417949/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4631,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:01.639693Z",
                    "last_modified_time": "2024-02-06T13:22:43.781638Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731718.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4631/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:00.085715Z",
            "last_modified_time": "2024-02-06T13:22:43.821811Z",
            "date_published": null,
            "start_time": "2023-12-09T13: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,
            "description": {
                "fi": "<p>Daltonit on tanssin ja sirkuksen liikekulttuureja yhdistelevä koko perheelle suunnattu tanssiteatteriseikkailu.</p><p><b>Daltonien</b> edesottamuksista ei tunnetta, vauhtia ja vaarallisia tilanteita puutu, kun sirkustaiteilijat <b>Onni Toivonen ja Kalle Lehto</b> ja Kinetic Orchestran perustajan <b>Jarkko Mandelinin</b> tanssivat lapset tulkitsevat sarjakuvistakin tuttujen antisankarien tarinaa.</p><p>Daltonien kantavana teemana on syrjäytyminen ja sen henki on hurja, jännittävä, ja koominen. Kaiken sekoilun ja slapstickin jälkeen se toisaalta näyttää omanlaisensa itsepäisen omalakisen elämänkatsomuksen tai vastuuttomuuden traagisenkin puolen.</p><p>Daltonit on ikäänkuin humoristisempi, monitulkintaisempi ja lennokkaampi versio seitsemästä veljeksestä, jossa neljästä elämän kolhimasta, mutta hyväntahtoisesta sekoilijasta, paljastuu uusia puolia, kun heidän normaalin remuamisensa katkaisee tärkeän perheenjäsenen yllättävä katoaminen.</p><p>Daltonien maailma rakentuu tanssin, sirkuksen ja koomisen liikkumisen varaan.</p><p>Koreografia ja konsepti Jarkko Mandelin<br>Esiintyjät: Onni Toivonen, Kalle Lehto, Jarkko Mandelin, Lyyli Mandelin, Oiva Mandelin, Rauha Mandelin, Urho Mandelin<br>Sävellys ja äänisuunnittelu: Josu Mämmi ja Petri Kautto<br>Valosuunnittelu: Niila Rantala ja Jarkko Mandelin<br>Puvustus: Jenna Mandelin<br>Lavastus: Jarkko Mandelin ja työryhmä<br>Tuotanto: Tuotanto: Kinetic Orchestra ja JoJo - Oulun Tanssin Keskus</p><p>Ikäsuositus 5+<br>Kesto n. 45 min <br>Liput la ja su esityksiin 6 €</p><p>Ilmoittautuminen perjantain 8.12.2023 klo 10 koululaisesitykseen: kultus.fi 15.8.2023 alkaen, vapaa pääsy.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Daltonit är ett dansteateräventyr för hela familjen som kombinerar dansens och cirkusens rörelsekulturer.</p><p>‘The Daltons’ is a dance theatre adventure for the whole family, combining the movement cultures of dance and circus.</p><p>Åldersrekommendation 5+<br>Längd cirka 45 min</p>",
                "en": "<p>‘The Daltons’ is a dance theatre adventure for the whole family, combining the movement cultures of dance and circus.</p><p>The Daltons’ performances are full of emotion, speed and dangerous situations as circus artists Onni Toivonen and Kalle Lehto, the dancing children of Jarkko Mandelin, founder of Kinetic Orchestra interpret the story of the comic-book anti-heroes.</p><p>Age recommendation: 5+<br>Duration approx. 45 min</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/729BD081DEC81A773669A8D7F5CED2B2/Daltonit",
                "sv": "http://www.stoa.fi/sv/evenemang/event/729BD081DEC81A773669A8D7F5CED2B2/Daltonit_",
                "en": "http://www.stoa.fi/en/events/event/729BD081DEC81A773669A8D7F5CED2B2/The_Daltons"
            },
            "name": {
                "fi": "Daltonit",
                "sv": "Daltonit",
                "en": "The Daltons"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Daltonit on tanssin ja sirkuksen liikekulttuureja yhdistelevä koko perheelle suunnattu tanssiteatteriseikkailu.",
                "sv": "Daltonit är ett dansteateräventyr för hela familjen som kombinerar dansens och cirkusens rörelsekulturer.",
                "en": "‘The Daltons’ is a dance theatre adventure for the whole family, combining the movement cultures of dance and circus."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59939/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61579",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6403,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-01T15:13:08.594956Z",
                    "last_modified_time": "2024-02-06T13:22:43.690039Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741561.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6403/?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-01T15:13:08.557060Z",
            "last_modified_time": "2024-02-06T13:22:43.731173Z",
            "date_published": null,
            "start_time": "2023-12-09T12: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,
            "description": {
                "fi": "<p>Lauantaina 9.12. klo 14-16 juhlitaan Vuotalolla MLL Perhehaavin kauden päätöstä.</p><p>Jos et vielä tunne MLL Uudenmaan piirin tai Perhehaavin toimintaa, tervetuloa mukaan niin kuulet siitä lisää!<br>Juhlassa on kivaa ohjelmaa koko perheelle; musiikkia, pipareiden koristelua, jättimäisiä pelejä ja herkullista syötävää!<br>Tervetuloa mukaan koko perheen yhteiseen juhlaan!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/43E5100B5E3F58E3688CBAB3D5D6A555/MLL_Perhehaavin_Talvijuhla_"
            },
            "name": {
                "fi": "MLL Perhehaavin Talvijuhla!"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Lauantaina 9.12. klo 14-16 juhlitaan Vuotalolla MLL Perhehaavin kauden päätöstä."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61579/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61367",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6091,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-17T11:13:46.409218Z",
                    "last_modified_time": "2024-02-06T13:22:43.577623Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740081.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6091/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-17T11:13:46.342744Z",
            "last_modified_time": "2024-02-06T13:22:43.619956Z",
            "date_published": null,
            "start_time": "2023-12-09T11:00:00Z",
            "end_time": "2023-12-09T14:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tervetuloa monikieliseen perheiden päivään lasten- ja nuorten taidekeskukseen Annantaloon!</p><p>Koko päivän on luvassa paljon erilaista innostavaa kokemista ja tekemistä koko perheelle. <br>Päivän aikana ohjelmaa löytyy suomeksi, somaliksi, arabiaksi, dariksi, englanniksi ja ukrainaksi. Ohjelmaan voi osallistua myös ilman suomenkielentaitoa.<br>Ohjelma on suunniteltu yhdistämään kaiken kielisiä lapsia ja perheitä kielitaidosta huolimatta yhteisen taiteen ja tekemisen äärelle. Tapahtuman järjestää Yhteiset lapsemme ry. yhdessä Annantalon kanssa. Tervetuloa viettämään ihanaa päivää koko perheellä!</p><p><b>Kalle-karhun ystäväseikkailu</b><br>Työpaja kello 13.30-14.15, kielet: suomi, englanti, <br>1. krs tanssiluokka. <br>Työpajaan mahtuu 25 osallistujaa. Osallistujat otetaan työpajaan tulojärjestyksessä.</p><p>Kalle-karhun ystäväseikkailu on vanhemmille ja lapsille suunnattu työpaja, jonka aikana kierretään maailmaa yhdessä Kalle-karhun kanssa. Mielikuvitusmatkan tavoitteena on tarjota vanhemmille keinoja käsitellä monikulttuurista rikkautta ja ystävyyden teemoja yhdessä lapsen kanssa. Työpajaan voi osallistua, vaikka ei puhuisi paljoa suomen kieltä.</p><p><b>Aarresaari-työpaja</b><br>Työpaja kello 14.30-15.15, kielet: suomi, englanti, <br>1. krs tanssiluokka. <br>Työpajaan mahtuu 25 osallistujaa. Osallistujat otetaan työpajaan tulojärjestyksessä.</p><p>Seikkailuteemainen työpaja on toiminnallinen ja soveltuu kaikille kielitaidosta riippumatta. Työpaja on suunnattu 1–3. luokkalaisille lapsille.<br> <br><b>Ymmyrkäisenä-varjoteatteriesitys</b><br>Esitys kello 13.30-14.00 <br>Työpaja klo 14-15<br>Esitykseen mahtuu 20 osallistujaa. Osallistujat otetaan esitykseen tulojärjestyksessä.<br>Työpajaan mahtuu kerrallaan 20 hlö. <br>2. krs teatteriluokka</p><p>Esitys matkaa tarinoillaan Romaniaan, Mongoliaan, Karibian saarille ja Pohjois-Amerikkaan. Esityksessä kysytään miksi ihminen on ahneuteensa kompuroiva, ikuisesti harhaileva ja lapsenmielensä kadotteleva, pikkuisen onneton olento. Esitys toteutetaan varjoteatteria, tanssia ja videotaidetta yhdistelemällä. Esityksessä liikutaan, keskustellaan ja pohdiskellaan yhdessä.<br>Esityksen ohjaus, käsikirjoitus, varjonuket ja esiintyminen: Elviira Davidow, videotaide: Veera Lehtola, musiikki: Jopi Knuutinen. <br>Esitystä suositellaan yli 6-vuotiaille.  <br> <br><b>Krok: Let it snow -tanssiesitys</b><br>Esitys alkaa klo 15.30-16.15<br>Annantalon Juhlasali, 1. krs<br>Paikkoja rajoitetusti ja ne täytetään tulojärjestyksessä.</p><p>Ukrainalaisten lasten tanssiryhmä Krok esittää saduista kumpuavan talvisen tanssiesityksen Let it Snow! Esiintymässä on lapsia Helsingin ja Espoon tanssiryhmistä. Esityksen koreografian on tehnyt ja sen on ohjannut tanssinopettaja, tanssija Olexandra Sandblom. Esityksen seuraaminen ei vaadi kielitaitoa. Esityksessä on ukrainan- ja englanninkielisiä kappaleita.<br> <br><b>Monien satujen nurkka</b><br>klo 13-16<br>2. krs käytävä</p><p>Monien satujen nurkassa pääset kuuntelemaan satuja monilla eri kielillä! Satunurkassa luetaan erilaisia lastenkirjoja ja uteliaasti tarkastellaan satujen ja tarinoiden maailmaa. Satunurkka on auki koko perhepäivän, joten voit pistäytyä siellä koska tahansa! <br>klo 13 suomi, englanti, arabia<br>klo 14 suomi, englanti, dari<br>klo 15 suomi, englanti, somali</p><p><b>Talvinen askartelupiste</b> <br>Klo 13-16<br>2. krs taideluokat</p><p>Taidepajoissa voi tehdä talvisia askarteluja yhdessä monikielisten ohjaajien kanssa. Taidepajat ovat auki koko perhepäivän, joten voit pistäytyä askartelemaan koska tahansa! <br>Kielet: suomi, englanti<br>Dari klo 13<br>Somali klo 14<br>Arabia klo 15</p><p><b>Näyttelyopastukset</b> perheille näyttelyihin Ihmeellinen kone ja Self titled, Annantalon galleriat. <br>Lähtö 1.kerroksen gallerian edestä klo 13.15 ja 14.15<br>Kesto 30 min, opastuksen kieli: englanti</p><p>Annantalolla toimii myös pop-up kahvila klo 12-16! Myynnissä makeita ja suolaisia herkkuja. Maksuvälineenä käteinen ja mobilepay.</p>",
                "sv": "<p>Välkommen till familjedagen för flerspråkiga till konstcentrumet Annegården!</p><p>Dagen är fylld med spännande upplevelser och aktiviteter för hela familjen. Du får bekanta dig med skuggteaterns speciella värld, rita och pyssla, lyssna på sagor på flera olika språk, bekanta dig med förunderlig maskin -barnens konstutställning och leka i barnens egna workshops med andra barn och nya vänner! Familjedagen är flerspråkig och det går att delta utan kunnande i finska.</p><p>Dagens program och aktiviteter sker på finska, somaliska, arabiska, dari, engelska och ukrainska. Du är varmt välkommen till familjedagen för flerspråkiga på vilket språk som helst! Idén är att skapa en mötesplats för barn och familjer oavsett språkkunskaper, där konst och aktiviteter kan göras tillsammans. Evenemanget anordnas av föreningen Våra gemensamma barn tillsammans med Annantalo.</p><p>Välkommen med och spendera en fin dag tillsammans med hela familjen!</p><p>Inträde till evenemanget är gratis.<br> <br><b>Kalle-björns vän -äventyr</b><br>1 vån., dansklassrum<br>Workshop kl. 13.30-14.15<br>finska, engelska<br>Plats för 25 deltagare.<br>Deltagare enligt först till kvarn-principen<br> <br><b>Skattön -workshop</b><br>1 vån., dansklassrum<br>Workshop kl. 14.30-15.15<br>finska, engelska<br>Plats för 25 deltagare.<br>Deltagare enligt först till kvarn-principen<br> <br><b>Ymmyrkäisenä – skuggteater</b><br>2 vån. teaterklassrummet<br>Rekommenderat för 6-åringar och uppåt.<br>Föreställning kl. 13.30-14.00 <br>Workshop från kl. 14.00-15.00<br>Presentationen har plats för 20 deltagare. <br>Workshopen rymmer 20 personer åt gången. <br>Teaterklassrum på 2:a vån.<br> <br><b>Krok: Let it snow -dansföreställning</b><br>Föreställningen kl. 15.30-16.15<br>Annegårdens festsal, 1 vån.</p><p>Platserna är begränsade och fylls i enlighet med först till kvarn-principen.</p><p><b>Flera sagors hörn</b><br>2 vån korridor<br>Kl. 13.00 finska, engelska, arabiska<br>Kl. 14.00 finska, engelska, dari<br>Kl. 15 finska, engelska, somaliska<br> <br><b>Vinterpyssel</b><br>2 vån, konstklassrummer<br>finska, engelska<br>Dari kl. 13.00<br>Somaliska kl. 14.00<br>Arabiska kl. 15.00</p><p><b>Guidade turer</b> för familjer till utställningarna En Förunderlik Maskin och Self titled<br>Gallerier på 1 oc 2 våningen<br>Kl. 13.15 och 14.15<br>30 min<br>Språk: Engelska</p><p>Där finns ett pop-up café på Annegården från 12-16!<br>Söta och salta delikatesser till försäljning.<br>Betalningssätt är mobile pay och pengar.</p>",
                "en": "<p>Welcome to the Multilingual Family Day at Annantalo Art Centre!</p><p>The day is filled with exciting experiences and activities for the whole family. You get to explore the special world of shadow play, crafts, listen to fairy tales in different languages, explore amazing machines in the children's art exhibition and play in children's workshops with new friends! The family day is multilingual and can be attended without any knowledge of Finnish.</p><p>The programme is available in Finnish, Somali, Arabic, Dari, English and Ukrainian. You are warmly welcome to the multilingual Family Day in any language! The idea is to bring together children and families regardless of language skills, for a shared experience of art and activities.</p><p>The event is organised by association All Our Children together with Annantalo.  You are welcome to spend a wonderful day with your whole family!</p><p><b>The friendship adventure of Kalle the bear</b><br>workshop at 13:30-14:15<br>1st floor, classroom<br>finnish, english<br>25 participants by the order arrival.<br> <br><b>Treasure island -workshop</b><br>workshop at 14:30-15:15<br>1st floor, dance classroom<br>finnish, english (is suitable for everyone, regardless of language skills.)<br>25 participants by the order arrival.</p><p><b>Ymmyrkäisenä- shadow play perfomance</b><br>perfomance at 13:30-14:00<br>workshop at 14:00-15:00<br>2nd floor, theatre classroom<br>non-verbal<br>recommended for children over 6 years old.<br>20 participants to the performance by the order arrival. <br>20 participants in time at workhop.<br> <br><b>Fairy tale corner</b><br>2nd floor, lobby<br>at 13:00 Finnish, English, Arab<br>at 14:00 Finnish, English, Dari<br>at 15:00 Finnish, English, Somali<br> <br><b>Winter themed crafts</b> <br>2nd floor, art classrooms<br>at 13:00 Finnish, English, Dari<br>at 14:00 Finnish, English, Somali<br>at 15:00 Finnish, English, Arab</p><p><b>Krok: Let it snow- dance perfomance</b><br>starts at 15:30-16.15 <br>Annannatalo Hall, 1st floor<br>Limited amount of places. Participants get to the event in order of arrival.</p><p><b>Guided tours</b> for families to the exhibitions The Incredible Machine and Self titled<br>Galleries at 1st floor and 2th floor<br>at 13.15 and 14.15 p.m<br>Duration: 30 min<br>Language: English</p><p>There is a pop-up café in Annantalo from 12-16!<br>Sweet and savoury treats for sale.<br>Payment methods are mobile pay and cash.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9F11B77A7B97F141A091AAF8ED854556/Monikielinen_perheiden_paiva_Annantalolla",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9F11B77A7B97F141A091AAF8ED854556/Familjedag_for_flersprakiga_pa_Annegarden",
                "en": "http://www.annantalo.fi/en/events/event/9F11B77A7B97F141A091AAF8ED854556/Multilingual_Family_Day"
            },
            "name": {
                "fi": "Monikielinen perheiden päivä Annantalolla – Maalinta qoyska ee luqado badan, Dag för flerspråkiga familjer, багатомовний день із родиною, Multilingual family day, روز خانواده چند زبانه, يوم الأسرة متعدد اللغات",
                "sv": "Familjedag för flerspråkiga på Annegården – Monikielinen perheiden päivä, Maalinta qoyska ee luqado badan, багатомовний день із родиною, Multilingual family day, روز خانواده چند زبانه, يوم الأسرة متعدد اللغات",
                "en": "Multilingual Family Day – Monikielinen perheiden päivä, يوم الأسرة متعدد اللغات, Maalinta qoyska ee luqado badan, Dag för flerspråkiga familjer, багатомовний день із родиною, روز خانواده چند زبانه"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa monikieliseen perheiden päivään lasten- ja nuorten taidekeskukseen Annantaloon!",
                "sv": "Välkommen till familjedagen för flerspråkiga till konstcentrumet Annegården!",
                "en": "Welcome to the Multilingual Family Day at Annantalo Art Centre!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61367/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61334",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5978,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T12:14:17.862148Z",
                    "last_modified_time": "2024-02-06T13:22:43.481301Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739812.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5978/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-13T12:14:17.841078Z",
            "last_modified_time": "2024-02-06T13:22:43.520922Z",
            "date_published": null,
            "start_time": "2023-12-09T11: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,
            "description": {
                "fi": "<p>Joulurauha laskeutuu hiljalleen pikkukaupunkiin, mutta paikallisilla joulumarkkinoilla on edelleen kova vipinä.</p><p>Marian on markkinoilla hoitamassa äitinsä pyynnöstä vielä viimeisiä jouluostoksia, kun hän huomaa jouluarpajaisten ylähyllyllä lumoavan pienen nallekarhun. Heidän silmänsä kohtaavat, ja Marian on täysin varma, että pieni karhu yllättäen liikahtaa. Onko se elossa? Kyllä! Marian on aivan varma siitä. Hänen on saatava tuo nallekarhu, hinnalla millä hyvänsä!</p><p>Nallekarhu sen sijaan unelmoi varakkaasta omistajasta, joka veisi hänet seikkailulle suureen maailmaan. Marianin ja nallekarhun kohtaaminen käynnistää uskomattoman seikkailun kohti odottamattomia ja yllättäviä hetkiä.</p><p>Kesto 78 min<br>Ikäraja: sallittu<br>Ensi-ilta 24.11.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EC5ABEC10CE0EC7E670A0F9E504105AA/Nallekarhun_joulu_S_"
            },
            "name": {
                "fi": "Nallekarhun joulu (S) – Kino Helios"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Joulurauha laskeutuu hiljalleen pikkukaupunkiin, mutta paikallisilla joulumarkkinoilla on edelleen kova vipinä."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61334/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61318",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5962,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T10:13:31.694910Z",
                    "last_modified_time": "2024-02-06T13:22:43.386044Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739284.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5962/?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-13T10:13:31.676046Z",
            "last_modified_time": "2024-02-06T13:22:43.427478Z",
            "date_published": null,
            "start_time": "2023-12-09T09:00:00Z",
            "end_time": "2023-12-09T11: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,
            "description": {
                "fi": "<p>Voihan lumikissan viikset ja karhun talvikuono!</p><p>Lumi on satanut metsään ja metsäneläimet ovat muuttuneet kovin talvisiksi. Turkit ja höyhenet ovat sinisävyisiä ja hiutaleita löytyy kuonon päältä. Tule askartelemaan oma talvinen eläinnaamari: lumikettu, hiutalepöllö tai vaikka talviuniltaan hetkeksi herännyt nallekarhu!</p><p>Työpajan suunnittelu ja toteutus, Ulla-Maija Vanhala/Runoropinoita <br>Malmitalon aulassa.</p><p>Vapaa pääsy, tervetuloa!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2E52E1F4F23AB9B4B8265AECB129AAB5/Askartelutyopaja_Talvinen_elainnaamari_"
            },
            "name": {
                "fi": "Askartelutyöpaja: Talvinen eläinnaamari – Malmitalon joulu"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Voihan lumikissan viikset ja karhun talvikuono!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61318/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60042",
            "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: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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/labia-3498815/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/labia-3498815/?affiliate=ADV",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/labia-3498815/?affiliate=ADV"
                    },
                    "price": {
                        "fi": "15 € / 10 €",
                        "sv": "15 € / 10 €",
                        "en": "15 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5255,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:33:11.448177Z",
                    "last_modified_time": "2024-02-06T13:22:43.288396Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732362.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5255/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:33:11.304300Z",
            "last_modified_time": "2024-02-06T13:22:43.330998Z",
            "date_published": null,
            "start_time": "2023-12-08T17: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,
            "description": {
                "fi": "<p>Labiassa tanssijat tuovat suutelemisen aistisuuden ja poetiikan näyttämölle. Hempeät queerit muovaavat sukupuolen sekä romanttisen rakkauden moninaisia muotoja ja kuvastoja.</p><p>Erilaiset suutelemisen tavat ja tunnelmat kiteytyvät pieniksi tansseiksi, esityksiksi ja koreografiaksi.</p><p>Huulet koskettavat toisia huulia – janoten, tervehtien, hyvästellen, antaen, ottaen, tuntien, kysyen ja hamuten. Labiassa tanssijat liikkuvat intiimin kokemisen ja sen esittämisen välillä.</p><p><i>bois, butts<br>hubba bubba, guts<br>wet lips, singing hips<br>bye shy bye</i><br> <br>Työryhmä:  <br>Ohjaus: Kauri Sorvari <br>Näyttämöllä: György Jellinek, Kauri Sorvari, Jussi Ulkuniemi <br>Valosuunnittelija: Sofia Palillo <br>Äänisuunnittelija: Satu Kankkonen <br>Pukusuunnittelija: Johanna Liebl  <br>Tuottaja: Riikka Lakea<br>Tukijat: Wihuri, Taike, SKR, Urban Apa, Circus Maximus <br> <br>Labian demoversioita on esitetty Museum Of Impossible Formsilla Bodies of Pleasures -kollektiivin esitysiltamissa ja Club Ambedossa osana Urban Apaa. <br>  <br>Kesto: n. 60 min. Ei väliaikaa. <br>Ei suositella lapsille.<br>Esityksessä kovia ääniä, teatterisavua ja eroottista kuvastoa.<br>Esitys ei ole kielisidonnainen.</p><p>Pressiliput ja lisätiedot: johanna.rissanen@hel.fi</p>",
                "sv": "<p>I Labia tas det intima, poetiska och politiska i kyssande upp på scenen av tre artister.</p><p>De smäktande queerpersonerna omfamnar och formar de många olika formerna av kön och kärlek.</p><p><i>bois, butts<br>hubba bubba, guts<br>wet lips, singing hips<br>bye shy bye</i></p><p>Längd: 60 min, ingen paus<br>Åldersrekommendation: inte för barn<br>Språk: inte språkbunden</p>",
                "en": "<p>Labia is a performance where three performers kiss on stage showing the intimacy, poetics and politics of this action.</p><p>The soft and tender queers embrace and reformulate the multiple shapes of gender and love.</p><p><i>bois, butts<br>hubba bubba, guts<br>wet lips, singing hips<br>bye shy bye</i></p><p>Duration: 60 min, no intermission<br>Age recommendation: not for children<br>Language: no speech</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/2BF34B1D84C53DCD4099B05A2F90C98B/Kauri_Sorvari_ja_tyoryhma_labia",
                "sv": "http://www.caisa.fi/sv/evenemang/event/2BF34B1D84C53DCD4099B05A2F90C98B/labia",
                "en": "http://www.caisa.fi/en/events/event/2BF34B1D84C53DCD4099B05A2F90C98B/labia"
            },
            "name": {
                "fi": "Kauri Sorvari ja työryhmä: labia",
                "sv": "labia",
                "en": "labia"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Labiassa tanssijat tuovat suutelemisen aistisuuden ja poetiikan näyttämölle. Hempeät queerit muovaavat sukupuolen sekä romanttisen rakkauden moninaisia muotoja ja kuvastoja.",
                "sv": "I Labia tas det intima, poetiska och politiska i kyssande upp på scenen av tre artister.",
                "en": "Labia is a performance where three performers kiss on stage showing the intimacy, poetics and politics of this action."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60042/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}