Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 26873,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1151&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1149&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:61102",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5182,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:43.785451Z",
                    "last_modified_time": "2023-10-09T13:30:43.785477Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736356.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5182/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-10-09T13:30:42.998909Z",
            "last_modified_time": "2023-11-14T06:13:25.690477Z",
            "date_published": null,
            "start_time": "2023-10-19T15: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,
            "name": {
                "fi": "Paavo pelastaa Uutelan"
            },
            "short_description": {
                "fi": "Nuorten tekemä Paavo pelastaa Uutelan -elokuva ensi-illassa!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/635624FB6D585898D1F9163B82EC2DAD/Paavo_pelastaa_Uutelan"
            },
            "description": {
                "fi": "<p>Nuorten tekemä Paavo pelastaa Uutelan -elokuva ensi-illassa!</p><p>AsuntoSatama LKV:n palkkaamien kahdenkymmenen nuoren kesäduunina syntynyt lyhytelokuvan ensi-ilta on syyslomaviikolla 19.10. Vuotalon Vuosalissa.</p><p>Nuorten käsikirjoituksesta lopputeksteihin tuottamassa elokuvassa Paavo-koira pelastaa Uutelan ympäristörikollisten voimalasuunnitelmilta.</p><p>Paavo pelastaa Uutelan -elokuva 19.10. klo 18:00 ja klo 18:45. <br>Elokuvan kesto 13 minuuttia. <br>Vapaa pääsy, mutta halutessasi voit tukea haluamallasi summalla ProUutela-liikettä.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61102/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61112",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5181,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:41.591042Z",
                    "last_modified_time": "2023-10-09T13:30:41.591068Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731925.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5181/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:41.365390Z",
            "last_modified_time": "2023-11-14T06:13:25.618031Z",
            "date_published": null,
            "start_time": "2023-10-19T11: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,
            "name": {
                "fi": "Seniornätverksträff: Trolleri med magikern Robert Jägerhorn",
                "sv": "Seniornätverksträff: Trolleri med magikern Robert Jägerhorn"
            },
            "short_description": {
                "fi": "Taikuri Robert Jägerhorn kutsuu sinut mukaan maagiseen hetkeen Kanneltalon kahvilaan.",
                "sv": "Trollkonstnären Robert Jägerhorn bjuder in till en magisk stund i Gamlasgårdens café. Förvänta dig överraskningar, skratt och oförklarliga trick."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4E8845001DF755C7E6C6E28F003AD2B7/Seniornatverkstraff_Trolleri_med_magikern_Robert_Jagerhorn_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4E8845001DF755C7E6C6E28F003AD2B7/Seniornatverkstraff_Trolleri_med_magikern_Robert_Jagerhorn_"
            },
            "description": {
                "fi": "<p>Taikuri Robert Jägerhorn kutsuu sinut mukaan maagiseen hetkeen Kanneltalon kahvilaan.</p><p>Luvassa on yllätyksiä, naurua ja selittämättömiä temppuja.</p><p>Esityksen kesto: n. 60 min.<br>Kieli: ruotsi</p><p>Lisäksi infotori ja kahvitarjoilu. Ilmainen sisäänpääsy, ei ennakkoilmoittautumista.</p><p>Järj. Senioriverkosto Helsingissä yhteistyössä Kanneltalon kanssa.</p><p>Trollkonstnären Robert Jägerhorn bjuder in till en magisk stund i Gamlasgårdens café. Förvänta dig överraskningar, skratt och oförklarliga trick.</p><p>Föreställningens längd ca 60 min.<br>Språk: svenska</p><p>Dessutom infotorg och kaffeservering. Fri entré, ingen förhandsanmälan.</p><p>Arr. Seniornätverket i Helsingfors i samarbete med Gamlasgården.</p>",
                "sv": "<p>Trollkonstnären Robert Jägerhorn bjuder in till en magisk stund i Gamlasgårdens café. Förvänta dig överraskningar, skratt och oförklarliga trick.</p><p>Föreställningens längd ca 60 min.<br>Språk: svenska</p><p>Dessutom infotorg och kaffeservering. Fri entré, ingen förhandsanmälan.</p><p>Arr. Seniornätverket i Helsingfors i samarbete med Gamlasgården.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61112/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60529",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4430,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:46.431052Z",
                    "last_modified_time": "2023-09-07T14:24:46.431073Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731323.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4430/?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:24:46.280344Z",
            "last_modified_time": "2023-11-14T06:13:25.545637Z",
            "date_published": null,
            "start_time": "2023-10-19T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Syyslomaleffa: Mahtava Morris (7)",
                "sv": "Höstlovsfilm: Den makalöse Maurice (7)",
                "en": "Autumn holiday film: The Amazing Maurice (7)"
            },
            "short_description": {
                "fi": "Morris-kissa kiertää rinta rottingilla kaupungista toiseen ratkomassa yllättäen ilmeneviä rottaongelmia, kömpelö pillipiipari Keith vanavedessään.",
                "sv": "Den makalöse Maurice är en berättelse om katten Maurice som reser från stad till stad och erbjuder sig stoltserande att lösa plötsliga råttproblem.",
                "en": "‘The Amazing Maurice’ is the story of Morris the cat, who travels from town to town with his head held high to solve unexpected rat problems, with Keith the clumsy piper in tow."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/53C61F82AC9256D9BCB099F07B9A6935/Syyslomaleffa_Mahtava_Morris_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/53C61F82AC9256D9BCB099F07B9A6935/Hostlovsfilm_Den_makalose_Maurice_7_",
                "en": "http://www.malmitalo.fi/en/events/event/53C61F82AC9256D9BCB099F07B9A6935/Autumn_holiday_film_The_Amazing_Maurice_7_"
            },
            "description": {
                "fi": "<p>Morris-kissa kiertää rinta rottingilla kaupungista toiseen ratkomassa yllättäen ilmeneviä rottaongelmia, kömpelö pillipiipari Keith vanavedessään.</p><p>Kun Keith lurittelee huilullaan, rotat marssivat pois kiitollisten kyläläisten riemuksi. Kyläläiset tosin eivät koskaan saa tietää, että yllättävän oppineet rotat ovat mukana juonessa. Morris, Keith ja rottalauma käärivät myhäillen palkkiorahat taskuihinsa.</p><p>Homma toimii mainiosti, kunnes yllättävä huijareiden joukko saapuu kylään. Siellä he kohtaavat satuja ja tarinoita rakastavan kirjatoukka Malician ja sekalainen seurakunta päätyy ratkomaan yhdessä kylän outoa mysteeriä. Missä ovat kaikki paikalliset rotat?</p><p>Mahtava Morris perustuu fantasiakirjailijan Terry Pratchettin Carnegie-palkittuun lastenkirjaan Mahtava Morris ja sivistyneet siimahännät.</p><p>Kesto: 93 min<br>Ikäraja: 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Den makalöse Maurice är en berättelse om katten Maurice som reser från stad till stad och erbjuder sig stoltserande att lösa plötsliga råttproblem.</p><p>Hans resesällskap är den klumpiga flöjtblåsaren Keith.</p><p>Längd: 93 min <br>Åldersgrän: 7<br>Språk: Finska</p><p>Fritt inträde!</p>",
                "en": "<p>‘The Amazing Maurice’ is the story of Morris the cat, who travels from town to town with his head held high to solve unexpected rat problems, with Keith the clumsy piper in tow.</p><p>Duration: 93 min <br>Age limit: 7<br>Language: Finnish</p><p>Free entry!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60529/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60528",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4429,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:46.000689Z",
                    "last_modified_time": "2023-09-07T14:24:46.000718Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731711.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4429/?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:24:45.759236Z",
            "last_modified_time": "2023-11-14T06:13:25.469965Z",
            "date_published": null,
            "start_time": "2023-10-19T08:00:00Z",
            "end_time": "2023-10-19T10: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,
            "name": {
                "fi": "Syyslomatyöpaja: Ötökkäpiilo – piiloötökkä",
                "sv": "Höstlovsverkstad: Ötökkäpiilo – piiloötökkä",
                "en": "Autumn holiday workshop Bug hide – hiding bug"
            },
            "short_description": {
                "fi": "Hupsut pomppuötökät piiloutuvat boksiin!",
                "sv": "De tokiga skuttande småkrypen gömmer sig i asken!",
                "en": "Silly bugs hide in a box!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B7FAFEE64D994ECABC789BC368A2BE0F/Syyslomatyopaja_Otokkapiilo_piilootokka",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B7FAFEE64D994ECABC789BC368A2BE0F/Hostlovsverkstad_Otokkapiilo_piilootokka",
                "en": "http://www.malmitalo.fi/en/events/event/B7FAFEE64D994ECABC789BC368A2BE0F/Autumn_holiday_workshop_Bug_hide_hiding_bug"
            },
            "description": {
                "fi": "<p>Hupsut pomppuötökät piiloutuvat boksiin!</p><p>Taittele taskukokoinen rasia paperista ja talleta rasiaan aivan yllättävä öttiäinen!</p><p>Työpajan suunnittelu ja toteutus: Runoropinoita</p><p>Malmitalon aulassa</p><p>Vapaa pääsy!</p>",
                "sv": "<p>De tokiga skuttande småkrypen gömmer sig i asken!</p><p>Vik en pappersask i fickstorlek och spara en överraskande varelse i den!</p>",
                "en": "<p>Silly bugs hide in a box!</p><p>Fold a pocket-sized box out of paper and store a surprising little bug in the box!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60528/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60527",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "22 € / 14,50 €",
                        "sv": "22 € / 14,50 €",
                        "en": "22 € / 14,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/",
                        "sv": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/",
                        "en": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4428,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:44.733559Z",
                    "last_modified_time": "2023-09-07T14:24:44.733584Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_720852.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4428/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:43.858766Z",
            "last_modified_time": "2023-11-14T06:13:25.388360Z",
            "date_published": null,
            "start_time": "2023-10-18T16: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,
            "name": {
                "fi": "The Great Helsinki Swing Big Band: Swingin' Jubilee!",
                "sv": "The Great Helsinki Swing Big Band: Swingin' Jubilee!",
                "en": "The Great Helsinki Swing Big Band: Swingin’ Jubilee!"
            },
            "short_description": {
                "fi": "Suomen big band -musiikin elävä kapellimestarilegenda Petri Juutilainen ja swing big bandin luottosolisti Juki Välipakka yhdistävät voimansa juhlavuosiensa merkeissä!",
                "sv": "Den levande dirigentlegenden inom finsk storbandsmusik Petri Juutilainen och Swing Big Bands go to-solist Juki Välipakka förenar krafterna i firandet av sina jubileumsår!",
                "en": "Petri Juutilainen, the living conductor legend of Finnish big band music, and Juki Välipakka, the swing big band’s trusted soloist, join forces to celebrate their anniversaries!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/77EEA2B24ADBBB5246D50825070B40A2/The_Great_Helsinki_Swing_Big_Band_Swingin_Jubilee_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/77EEA2B24ADBBB5246D50825070B40A2/The_Great_Helsinki_Swing_Big_Band_Swingin_Jubilee_",
                "en": "http://www.malmitalo.fi/en/events/event/77EEA2B24ADBBB5246D50825070B40A2/The_Great_Helsinki_Swing_Big_Band_Swingin_Jubilee_"
            },
            "description": {
                "fi": "<p>Suomen big band -musiikin elävä kapellimestarilegenda Petri Juutilainen ja swing big bandin luottosolisti Juki Välipakka yhdistävät voimansa juhlavuosiensa merkeissä!</p><p>Luvassa on autenttinen swing-show, jossa svengataan mm. Nat King Colen ja Frank Sinatran tahtiin!</p>",
                "sv": "<p>Den levande dirigentlegenden inom finsk storbandsmusik Petri Juutilainen och Swing Big Bands go to-solist Juki Välipakka förenar krafterna i firandet av sina jubileumsår!</p>",
                "en": "<p>Petri Juutilainen, the living conductor legend of Finnish big band music, and Juki Välipakka, the swing big band’s trusted soloist, join forces to celebrate their anniversaries!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60527/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61014",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:673/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "19 €",
                        "sv": "19 €",
                        "en": "19 €"
                    },
                    "info_url": {
                        "fi": "https://www.pathfindertravels.se/tickets-fi/tc-events/helsinki-18-october-2023-blue-program/",
                        "sv": "https://www.pathfindertravels.se/tickets-fi/tc-events/helsinki-18-october-2023-blue-program/",
                        "en": "https://www.pathfindertravels.se/tickets-fi/tc-events/helsinki-18-october-2023-blue-program/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5180,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:40.534381Z",
                    "last_modified_time": "2023-10-09T13:30:40.534400Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737513.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5180/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:40.395922Z",
            "last_modified_time": "2023-11-14T06:13:25.313930Z",
            "date_published": null,
            "start_time": "2023-10-18T15:30:00Z",
            "end_time": "2023-10-18T19: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,
            "name": {
                "fi": "BANFF Mountain Film Festival – BLUE FILM PROGRAM",
                "sv": "BANFF Mountain Film Festival – BLUE FILM PROGRAM",
                "en": "BANFF Mountain Film Festival – BLUE FILM PROGRAM"
            },
            "short_description": {
                "fi": "It is with great pleasure that we present this year’s two film programs. Here you can see a selection of the best festival entries, prize winners and audience favorites from the festival in Canada.",
                "sv": "It is with great pleasure that we present this year’s two film programs. Here you can see a selection of the best festival entries, prize winners and audience favorites from the festival in Canada.",
                "en": "It is with great pleasure that we present this year’s two film programs. Here you can see a selection of the best festival entries, prize winners and audience favorites from the festival in Canada."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/BB8D921FD2345C2591EA9F4196436ED8/BANFF_Mountain_Film_Festival",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/BB8D921FD2345C2591EA9F4196436ED8/BANFF_Mountain_Film_Festival",
                "en": "http://www.savoyteatteri.fi/en/events/event/BB8D921FD2345C2591EA9F4196436ED8/BANFF_Mountain_Film_Festival"
            },
            "description": {
                "fi": "<p>It is with great pleasure that we present this year’s two film programs. Here you can see a selection of the best festival entries, prize winners and audience favorites from the festival in Canada.</p><p>The BLUE film program brings you 9 films straight from the Canadian festival scene. It’s a diverse mix of films with different themes and lengths that will keep you glued to the screen. Our awesome host will be there to introduce the festival and each film, plus they’ll be rockin’ some great giveaways and more. We’ll take a break around halfway through the evening for about 20 minutes. And don’t worry about the language barrier, because all the films either have English audio or English subtitles.</p><p>https://pathfindertravels.eu/blue-film-program/</p>",
                "sv": "<p>It is with great pleasure that we present this year’s two film programs. Here you can see a selection of the best festival entries, prize winners and audience favorites from the festival in Canada.</p><p>The BLUE film program brings you 9 films straight from the Canadian festival scene. It’s a diverse mix of films with different themes and lengths that will keep you glued to the screen. Our awesome host will be there to introduce the festival and each film, plus they’ll be rockin’ some great giveaways and more. We’ll take a break around halfway through the evening for about 20 minutes. And don’t worry about the language barrier, because all the films either have English audio or English subtitles.</p><p>https://pathfindertravels.eu/blue-film-program/</p>",
                "en": "<p>It is with great pleasure that we present this year’s two film programs. Here you can see a selection of the best festival entries, prize winners and audience favorites from the festival in Canada.</p><p>The BLUE film program brings you 9 films straight from the Canadian festival scene. It’s a diverse mix of films with different themes and lengths that will keep you glued to the screen. Our awesome host will be there to introduce the festival and each film, plus they’ll be rockin’ some great giveaways and more. We’ll take a break around halfway through the evening for about 20 minutes. And don’t worry about the language barrier, because all the films either have English audio or English subtitles.</p><p>https://pathfindertravels.eu/blue-film-program/</p>"
            },
            "provider": {
                "fi": "Pathfinder Travels",
                "sv": "Pathfinder Travels",
                "en": "Pathfinder Travels"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61014/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61052",
            "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,
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5179,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:40.086930Z",
                    "last_modified_time": "2023-10-09T13:30:40.086955Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737387.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5179/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:39.103538Z",
            "last_modified_time": "2023-11-14T06:13:25.245570Z",
            "date_published": null,
            "start_time": "2023-10-18T15: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,
            "name": {
                "fi": "Valoa valoa valoa (12) – Kino Helios"
            },
            "short_description": {
                "fi": "Valoa valoa valoa on elokuva ensirakkaudesta, sen häikäisevästä valosta ja elämänpituiseksi venyneistä varjoista."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/234DF88F7638A659E89583170C839DB6/Valoa_valoa_valoa_12_"
            },
            "description": {
                "fi": "<p>Valoa valoa valoa on elokuva ensirakkaudesta, sen häikäisevästä valosta ja elämänpituiseksi venyneistä varjoista.</p><p>Elokuva perustuu kirjailija <b>Vilja-Tuulia Huotarisen</b> samannimiseen romaaniin, joka voitti Finlandia Juniorin ilmestyessään vuonna 2011.</p><p>Keväällä 1986 Tsernobylin ydinvoimalassa Neuvostoliitossa räjähtää ja hämäläiseen pikkukylään saapuu tyttö nimeltä Mimi, joka saa teini-ikäisen Mariian elämän hetkeksi täyteen valoa. Kahdenkymmenen vuoden jälkeen aikuistunut Mariia tulee vierailulle lapsuudenkotiinsa ja palaa muistoissaan nuoruutensa kesään ja sitä seuranneeseen traagiseen syksyyn.</p><p>Ensirakkauden kasarikesään palatessa, Mariian on päästettävä irti syyllisyydestä sekä annettava anteeksi muillekin kuin itselleen.</p><p>Kesto 91 min<br>Ikäraja 12<br>Ensi-ilta 13.10.2023<br>Tekstitys suomeksi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61052/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61077",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5178,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:37.987674Z",
                    "last_modified_time": "2023-10-09T13:30:37.987699Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736308.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5178/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:37.718367Z",
            "last_modified_time": "2023-11-14T06:13:25.167371Z",
            "date_published": null,
            "start_time": "2023-10-18T15: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,
            "name": {
                "fi": "Syyslomaleffa: Ufo Sweden (12)",
                "sv": "Höstlovsbio: Ufo Sweden (12)",
                "en": "Autumn holiday film: Ufo Sweden (12)"
            },
            "short_description": {
                "fi": "UFO Sweden on yliluonnollisia ilmiöitä tutkiva järjestö.",
                "sv": "UFO Sweden är en förening som utreder övernaturliga fenomen.",
                "en": "The association UFO Sweden investigates super­ natural phenomena."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/392B214680CBCD6DD5D1DA3403534467/Syyslomaleffa_Ufo_Sweden_12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/392B214680CBCD6DD5D1DA3403534467/Hostlovsbio_Ufo_Sweden_12_",
                "en": "http://www.vuotalo.fi/en/events/event/392B214680CBCD6DD5D1DA3403534467/Autumn_holiday_film_Ufo_Sweden_12_"
            },
            "description": {
                "fi": "<p>UFO Sweden on yliluonnollisia ilmiöitä tutkiva järjestö.</p><p>Eräänä päivänä teinikapinallinen, Denise, saapuu mukanaan tapaus, jollaista ei ole ennen nähty.</p><p>Yhdessä he heittäytyvät riskialttiiseen seikkailuun, joka johtaa heidät kauas lakien ulkopuolelle – maailmaan täynnä selittämättömiä ilmiöitä.</p><p>Ruotsi 2022<br>Genre: Adventure, Sci-fi<br>Ohjaus: Crazy Pictires / Victor Danell<br>Näyttelijät: Inez Torhaug, Jesper Barkselius, Eva Melander, Sara Shirpey, Oscar Töringe, Håkan Ehn, Isabelle Kyed, Mathias Lithner, Joakim Sällquist, Niklas Jönsson<br>Kesto: 1 h 55 min<br>Alkuperäiskieli: ruotsi<br>Tekstitys: suomi<br>K 12<br>Vapaa pääsy</p><p>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa</p>",
                "sv": "<p>UFO Sweden är en förening som utreder övernaturliga fenomen.</p><p>En dag dyker tonårsrebellen Denise upp med ett fall som inte liknar något de sett tidigare.</p><p>Tillsammans ger de sig ut på ett riskfyllt äventyr, som tar dem långt utanför lagens gränser och in i en värld av oförklarliga fenomen.</p><p>Sverige 2022<br>Genre: Äventyr, Sci-fi<br>Regi: Crazy Pictires / Victor Danell<br>Skådespelare: Inez Torhaug, Jesper Barkselius, Eva Melander, Sara Shirpey, Oscar Töringe, Håkan Ehn, Isabelle Kyed, Mathias Lithner, Joakim Sällquist, Niklas Jönsson<br>Längd: 1h 55 min.<br>Original språk: svenska<br>Text: finska<br>F 12<br>Fritt inträde</p><p>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>",
                "en": "<p>The association UFO Sweden investigates super­ natural phenomena.</p><p>One day, teenage rebel Denise shows up with a case unlike anything they've seen before. Together they embark on a risky adventure, which takes them far beyond the law's borders and into a world of unexplained phenomena.</p><p>UFO SWEDEN is a story about ordinary people in an extraordinary adventure filled with tension, drama and action.</p><p>Sweden 2022<br>Genre: Adventure, Sci-fi<br>Director: Crazy Pictires / Victor Danell<br>Actors: Inez Torhaug, Jesper Barkselius, Eva Melander, Sara Shirpey, Oscar Töringe, Håkan Ehn, Isabelle Kyed, Mathias Lithner, Joakim Sällquist, Niklas Jönsson<br>Runtime: 1h 55 min. <br>Original Language: Swedish<br>Subtitles: Finnish<br>Age limit: 12<br>Free entry</p><p>Org. Finlandssvenskt filmcentrum in cooperation with Vuotalo</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61077/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60052",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4427,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:43.240951Z",
                    "last_modified_time": "2023-09-07T14:24:43.240972Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732383.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4427/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:42.859758Z",
            "last_modified_time": "2023-11-14T06:13:25.099619Z",
            "date_published": null,
            "start_time": "2023-10-18T14:00:00Z",
            "end_time": "2023-10-18T16: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,
            "name": {
                "fi": "Kansantansseja elävän musiikin säestyksellä – Chile ja Espanja",
                "sv": "Folkdans till tonerna av livemusik – Chile och Spanien",
                "en": "Folk dances accompanied by live music – Chile and Spain"
            },
            "short_description": {
                "fi": "Opi musiikkia äidinkielenä! Työpajassa voit opetella soittamaan tanssien taustalla tai tanssimaan itse.",
                "sv": "Lär dig musik som modersmål! I den här verkstaden får du lära dig att spela till dans eller själv dansa.",
                "en": "Learn music as your native language! In this workshop, you can either learn to play in the background of the dances or dance yourself."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/A291628F94C8E64EB56D326C52831594/Kansantansseja_elavan_musiikin_saestyksella",
                "sv": "http://www.caisa.fi/sv/evenemang/event/A291628F94C8E64EB56D326C52831594/Folkdans_till_tonerna_av_livemusik_",
                "en": "http://www.caisa.fi/en/events/event/A291628F94C8E64EB56D326C52831594/Folk_dances_accompanied_by_live_music"
            },
            "description": {
                "fi": "<p>Opi musiikkia äidinkielenä! Työpajassa voit opetella soittamaan tanssien taustalla tai tanssimaan itse.</p><p>Kaikenlaiset soittimet ja tanssitaidot ovat tervetulleita. Et tarvitse muuta kuin soittimesi, äänesi ja kehosi!<br> <br>Aiempaa tanssikokemusta ei tarvita.<br> <br>Tapahtuman kesto: 2 t<br>Ikäsuositus: sopii kaikenikäisille<br>Ohjauskielet: englanti, portugali ja suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Lär dig musik som modersmål! I den här verkstaden får du lära dig att spela till dans eller själv dansa.</p><p>Alla instrument och dansfärdigheter är välkomna. Du behöver inget annat än ditt instrument, din röst och din kropp!</p><p>Ingen tidigare danserfarenhet behövs.</p><p>Längd: 2 t.<br>För alla åldrar<br>Språk: engelska, portugisiska, finska</p>",
                "en": "<p>Learn music as your native language! In this workshop, you can either learn to play in the background of the dances or dance yourself.</p><p>People with all kinds of instruments and dancing skills are welcome. All you need is your instrument, your voice and your body!</p><p>No prior experience in dance is required.</p><p>Duration: 2 hours<br>For all ages<br>Language of instuction: English, Portugese and Finnish</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60052/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61151",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-17T08:17:38.858157Z",
            "last_modified_time": "2023-11-14T06:13:25.020744Z",
            "date_published": null,
            "start_time": "2023-10-18T11:00:00Z",
            "end_time": "2023-10-18T11:50: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,
            "name": {
                "fi": "Tutustu Kekäläinen Companyn AVOIN Tila Esitykseen"
            },
            "short_description": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C29531E1C22801E0D6DB80AF9E8884F1/Tutustu_Kekalainen_Companyn_AVOIN_Tila_Esitykseen"
            },
            "description": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61151/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61090",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@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,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5177,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:37.311230Z",
                    "last_modified_time": "2023-10-09T13:30:37.311255Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736307.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5177/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-09T13:30:37.166201Z",
            "last_modified_time": "2023-11-14T06:13:24.951565Z",
            "date_published": null,
            "start_time": "2023-10-18T10: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,
            "name": {
                "fi": "Syyslomaleffa: Ronja Rövardotter (7)",
                "sv": "Höstlovsbio: Ronja Rövardotter (7)"
            },
            "short_description": {
                "fi": "Ronjan syntymä oli yhtä suurta juhlaa. Salamat leimusivat ja ukkosen jylinä kiiri halki vuorten ja metsien.",
                "sv": "Den natt rövarhövdingen Mattis dotter Ronja föds drar ett väldigt oväder över Mattisskogen. Så otäckt är det att endast de grymma Vildvittrorna kan vistas ute."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DA2BB1DB498C9A8B313127E8AACFEA8B/Syyslomaleffa_Ronja_Rovardotter_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/DA2BB1DB498C9A8B313127E8AACFEA8B/Hostlovsbio_Ronja_Rovardotter_7_"
            },
            "description": {
                "fi": "<p>Ronjan syntymä oli yhtä suurta juhlaa. Salamat leimusivat ja ukkosen jylinä kiiri halki vuorten ja metsien.</p><p>Ryöväripäällikkö Mattis oli haljeta onnesta! Mattisin suku jatkuisi ja Ronjasta tulisi uusi ryöväripäällikkö. Niin hän ainakin luuli. Hän ei nimittäin tiennyt, että samana yönä syntyi toinenkin ryöväripäällikkö...</p><p>Maa: Ruotsi 1984<br>Genre: Koko perheen elokuva <br>Ohjaus: Tage Danielsson<br>Kesto n. 2 h ja 20 min.<br>Puhumme ruotsia<br>Tekstitys: ruotsi<br>Ikäsuositus alkaen 7 vuotta<br>Vapaa pääsy  <br>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa</p>",
                "sv": "<p>Den natt rövarhövdingen Mattis dotter Ronja föds drar ett väldigt oväder över Mattisskogen. Så otäckt är det att endast de grymma Vildvittrorna kan vistas ute.</p><p>Blixtarna korsar den becksvarta himlen – och plötsligt slår åskan ned och klyver den mäktiga Mattisborgen i två delar.</p><p>Trots sin dramatiska ankomst växer Ronja upp till en ganska fridsam liten rövarflicka. Men modig är hon och när hon blivit stor nog skickas hon ut i Mattisskogen för att lära känna alla faror som lurar där. Här finns grådvärgar och rumpnissar, den farliga älven och det hemska Djävulsgapet. Men den största faran känner inte ens Mattis till – i skogen finns också Birk, son till Mattis ärkefiende Borka… Och Mattis som trodde att Borkaätten var på väg att dö ut! Inte blir det bättre av att Borka och hans rövarband bosatt sig i den del av Mattisborgen som ligger på andra sidan Djävulsgapet. Den gamla fejden blossar upp igen, men till de båda hövdingarnas förtret vägrar barnen att delta. Istället blir de bästa vänner och när det upptäcks blir det omöjligt att bo kvar i borgen.</p><p>Ronja och Birk väljer att ge sig ut i Mattisskogen där de bor i en gammal björngrotta och lever på det naturen ger. Ännu är det sommar, men hur ska det gå när vintern kommer? Och hur ska Mattis överleva sorgen över att ha förlorat sin älskade Ronja? Kanske måste han till slut följa den kloke Skalle-Pers råd: att försonas med Borka. Mattis slits mellan sin längtan efter Ronja och sitt hat mot Borkaätten. Och Ronja, hon har ärvt sin fars envishet och ger inte vika för något.</p><p>Land: Sverige 1984<br>Genre: Familjefilm<br>Regi: Tage Danielsson <br>Längd: 2 h 20 min.<br>Språk: svenska<br>Text: svenska<br>Åldersrekommendation: 7 år<br>Fritt inträde<br>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61090/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60526",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4426,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:42.630207Z",
                    "last_modified_time": "2023-09-07T14:24:42.630229Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731290.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4426/?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:24:42.473830Z",
            "last_modified_time": "2023-11-14T06:13:24.878765Z",
            "date_published": null,
            "start_time": "2023-10-18T10: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,
            "name": {
                "fi": "Syyslomaleffa: Kaksin karkuteillä (7)",
                "sv": "Höstlovsfilm: Trassel (7)",
                "en": "Autumn holiday film: Tangled (7)"
            },
            "short_description": {
                "fi": "Valtakunnan etsityin ja hurmaavin varas Flynn Rider piiloutuu syrjäiseen torniin.",
                "sv": "Rikets mest eftersökta och charmanta tjuv Flynn Rider gömmer sig i ett ensamt torn, där han träffar Rapunzel, en vacker och ettrig flicka vars 20 meter långa, gyllene hårsvall ger henne magiska krafter.",
                "en": "Flynn Rider, the most wanted and charming thief in the kingdom, hides in a remote tower and meets Rapunzel, a beautiful and feisty girl with superpowers thanks to her 20-metre-long golden hair."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6DA981C5060E6A8B953275D72BCD1231/Syyslomaleffa_Kaksin_karkuteilla_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6DA981C5060E6A8B953275D72BCD1231/Hostlovsfilm_Trassel_7_",
                "en": "http://www.malmitalo.fi/en/events/event/6DA981C5060E6A8B953275D72BCD1231/Autumn_holiday_film_Tangled_7_"
            },
            "description": {
                "fi": "<p>Valtakunnan etsityin ja hurmaavin varas Flynn Rider piiloutuu syrjäiseen torniin.</p><p>Siellä hän tapaa Tähkäpään, kauniin ja kipakan tytön, jolla on 20-metristen kultaisten kutriensa ansiosta supervoimia.</p><p>Kesto: 100 min<br>Ikäraja: 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Rikets mest eftersökta och charmanta tjuv Flynn Rider gömmer sig i ett ensamt torn, där han träffar Rapunzel, en vacker och ettrig flicka vars 20 meter långa, gyllene hårsvall ger henne magiska krafter.</p><p>Längd: 100 min<br>Åldersgräns: 7<br>Språk: finska</p><p>Fritt inträde!</p>",
                "en": "<p>Flynn Rider, the most wanted and charming thief in the kingdom, hides in a remote tower and meets Rapunzel, a beautiful and feisty girl with superpowers thanks to her 20-metre-long golden hair.</p><p>Duration: 100 min<br>Age limit: 7<br>Language: Finnish</p><p>Free entry!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60526/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60525",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4425,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:42.257367Z",
                    "last_modified_time": "2023-09-07T14:24:42.257398Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731710.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4425/?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:24:42.103297Z",
            "last_modified_time": "2023-11-14T06:13:24.803986Z",
            "date_published": null,
            "start_time": "2023-10-18T08:00:00Z",
            "end_time": "2023-10-18T10: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,
            "name": {
                "fi": "Syyslomatyöpaja: Jätskitikkukoppikset",
                "sv": "Höstlovsverkstad: Jätskitikkukoppikset",
                "en": "Autumn holiday workshop: Ice cream stick beetles"
            },
            "short_description": {
                "fi": "Värikkäät jätskitikkukoppikset valtaavat askartelupöydän. Tervetuloa luomaan oma upea kuoriaisesi!",
                "sv": "De färggranna skalbaggarna tar över hela pysselbordet. Välkommen att skapa din egen fantastiska skalbagge!",
                "en": "Colourful ice cream stick beetles take over the craft table. Come and create your own fabulous beetle!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F1848B7FF188C8F40E901658D6237544/Syyslomatyopaja_Jatskitikkukoppikset",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F1848B7FF188C8F40E901658D6237544/Hostlovsverkstad_Jatskitikkukoppikset",
                "en": "http://www.malmitalo.fi/en/events/event/F1848B7FF188C8F40E901658D6237544/Autumn_holiday_workshop_Ice_cream_stick_beetles"
            },
            "description": {
                "fi": "<p>Värikkäät jätskitikkukoppikset valtaavat askartelupöydän. Tervetuloa luomaan oma upea kuoriaisesi!</p><p>Löytyykö siltä sävelsiivet ja kukkasin kuvitettu kuori? Vai saako koppis koristeeksi tarinoita kirjan sivuilta? Työpajassa käytetään kierrätysmateriaaleja.</p><p>Työpajan suunnittelu ja toteutus: Runoropinoita</p><p>Malmitalon aulassa<br>Vapaa pääsy!</p>",
                "sv": "<p>De färggranna skalbaggarna tar över hela pysselbordet. Välkommen att skapa din egen fantastiska skalbagge!</p><p>Har din skalbagge vingar fulla av noter och ett blommande skal? Eller pyntar du den med berättelser från en bok? I verkstaden används återvunna material.</p>",
                "en": "<p>Colourful ice cream stick beetles take over the craft table. Come and create your own fabulous beetle!</p><p>Does it have musical wings and a floral illustrated shell? Or will you decorate it with stories from the pages of a book? We will use recycled materials in this workshop.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60525/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61076",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5176,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:36.492674Z",
                    "last_modified_time": "2023-10-09T13:30:36.492707Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736306.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5176/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:35.703729Z",
            "last_modified_time": "2023-11-14T06:13:24.728829Z",
            "date_published": null,
            "start_time": "2023-10-18T07: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,
            "name": {
                "fi": "Syyslomaleffa: Yuku och fjällets blomma (S)",
                "sv": "Höstlovsbio: Yuku och fjällets blomma (T)",
                "en": "Autumn holiday film: Yuku och fjällets blomma (S)"
            },
            "short_description": {
                "fi": "Pieni Yuku-hiiri asuu perheensä kanssa linnan kellarissa. Eräänä päivänä kissa hyökkää kellariin, ja Yukun isoäiti, perheen suuri tarinankertoja, joutuu vuoteenomaksi.",
                "sv": "Den lilla musen Yuku bor med sin familj i källaren på ett slott. En dag skadas hennes mormor, familjens stora sagoberättare, av en katt och blir sängliggande.",
                "en": "Yuku is a young mouse who lives with her family in the cellar of a castle. One day, a cat attacks the cellar and Yuku’s grandmother, the great storyteller of the family, is bedridden."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0A0BED57FA0A9B316C40EEE820C27408/Syyslomaleffa_Yuku_och_fjallets_blomma_S_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/0A0BED57FA0A9B316C40EEE820C27408/Hostlovsbio_Yuku_och_fjallets_blomma_T_",
                "en": "http://www.vuotalo.fi/en/events/event/0A0BED57FA0A9B316C40EEE820C27408/Autumn_holiday_film_Yuku_och_fjallets_blomma_S_"
            },
            "description": {
                "fi": "<p>Pieni Yuku-hiiri asuu perheensä kanssa linnan kellarissa. Eräänä päivänä kissa hyökkää kellariin, ja Yukun isoäiti, perheen suuri tarinankertoja, joutuu vuoteenomaksi.</p><p>Isoäiti kertoo hiirille, että hänen täytyy pian jättää heidät taakseen “seuratakseen pientä, sokeaa myyrää maanalaisiin tunneleihin”. Yksi isoäidin kirjoista on kertonut maagisesta, ikuisesti loistavasta kukasta, joka kasvaa vaikeapääsyisellä vuorenrinteellä. Yuku päättää etsiä kukan, jotta isoäidin ei tarvitsisi lähteä viimeiselle matkalleen pimeässä. Siitä alkaa pienen hiiren suuri seikkailu, josta ei voisi selvitä ilman ukulelea. ALLA TALAR – OCH SJUNGER! – PÅ SVENSKA!</p><p>Alkuperäinen nimi: Yuku et la fleur de l'Himalaya (Belgia, Ranska, Sveitsi 2022)<br>Animaatio, 65 min. <br>Suositellaan 4–9-vuotiaille. <br>Hauskaa oppimateriaalia löytyy. <br>Ruotsinkielinen puhe, ei tekstitystä. <br>Ikäsuositus: sallittu</p><p>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa.</p>",
                "sv": "<p>Den lilla musen Yuku bor med sin familj i källaren på ett slott. En dag skadas hennes mormor, familjens stora sagoberättare, av en katt och blir sängliggande.</p><p>Mormor säger till de små mössen att tiden snart ärr kommen då hon måste lämna dem förr att följa den lilla blinda mullvaden ner i jordens tunnlar. I en av mormors böcker har Yuku läst om en magisk evigt lysande blomma som växer på en svårtillgänglig fjällsluttning. Nu är hon fast besluten att hitta blomman för att mormor ska få vandra vidare i ljus. Den lilla musen – med ett stort mod och ett stort hjärta – beger sig ensam ut i världen. På sin färd möter hon snart andra djur som både skrämmer och hjälper henne, och som påminner om varför just en ukulele är bra att ta med på äventyr? ALLA TALAR – OCH SJUNGER! – PÅ SVENSKA!</p><p>Originaltitel: Yuku et la fleur de l'Himalaya (Belgien, Frankrike, Schweiz 2022)<br>Animation, 65 min <br>Rekommenderas för 4–9-åringar. <br>Skojigt läromaterial ingår. Svenskt tal, ingen text. <br>Åldersrekommendation: T</p><p>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>",
                "en": "<p>Yuku is a young mouse who lives with her family in the cellar of a castle. One day, a cat attacks the cellar and Yuku’s grandmother, the great storyteller of the family, is bedridden.</p><p>Original name: Yuku et la fleur de l'Himalaya (Belgium, France, Switzerland 2022)<br>Animation, 65 min. <br>Age limit: for all ages<br>Age recommendation: 4–9 yo.<br>Language: Swedish, no subtitles</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61076/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60986",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:99/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5174,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:33.642331Z",
                    "last_modified_time": "2023-10-09T13:30:33.642350Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737352.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5174/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-09T13:30:33.495323Z",
            "last_modified_time": "2023-11-14T06:13:24.650433Z",
            "date_published": null,
            "start_time": "2023-10-18T07:00:00Z",
            "end_time": "2023-10-18T11:40: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,
            "name": {
                "fi": "Satupäivä Annantalossa – Syysloma"
            },
            "short_description": {
                "fi": "Valtakunnallista Satupäivää vietetään Annantalossa satukirjoja tehden, tutustumalla Kekäläinen Companyn Avoin tila -teokseen ja katsomalla pikkuväelle mieluisia elokuvia. Vapaa pääsy!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/59C11561CAD7FB7F9404FE0942CB574F/Satupaiva_Annantalossa"
            },
            "description": {
                "fi": "<p>Valtakunnallista Satupäivää vietetään Annantalossa satukirjoja tehden, tutustumalla Kekäläinen Companyn Avoin tila -teokseen ja katsomalla pikkuväelle mieluisia elokuvia. Vapaa pääsy!</p><p>ke 18.10. klo 10–12  <u><a href=\"https://www.annantalo.fi/fi/tapahtumat/event/B4ADF280CD86FD0A177C81C2C8AD01FC/Naperokino__Mielikuvitus\">Naperokino: Mielikuvitus</a></u></p><p><b>Kirjailijavierailu: Käpykolon väkeä</b><br>Klo 10.30-11.15<br>Tervetuloa tutustumaan Käpykolon asukkaisiin!<br> <br>Satupäivänä 18.10. Käpykolon väkeä -lastenkirjan tekijät Leena Parkkinen ja Zagros Manuchar vierailevat Annantalolla.  Tule kuulemaan, miten he rakensivat Käpykolon miniatyyrimaailman. Pääset myös tutustumaan kirjan nukkehahmoihin.</p><p>Tilaisuus on suunniteltu 3-8-vuotiaille lapsille aikuisen seurassa.<br><u><a href=\"https://kulkeilmo.hel.fi/enrolmentclient/info.aspx?Key=B86613502FE7FF8A8ED99F52086C6E24\">Ilmoittaudu mukaan</a></u> HUOM! VARAATHAN PAIKAN KAIKILLE OSALLISTUJILLE (esim.yksi aikuinen ja yksi lapsi vievät kaksi paikkaa)</p><p><b>Satukirja</b><br>Nonstop työpaja on auki kello 11.30–13.30 ja 14.30–16.30 (tila: kuva 2 ja käytävä sen edessä)</p><p>Tule tekemään oma satukirja japanilaisella kirjansidontamenetelmällä. Kirjan sivuilta löytyy yllättäviä ja hauskoja tarinoiden alkuja ja vinkkejä kerrontaan, jotka saduttavat tekijänsä luomaan omia tarinoita ja tallentaa ne muistiin.</p><p>Saduttajan ohje: Kerro satu; kirjaan sen ylös juuri sellaisena kuin sen kerrot.</p><p>Työpaja on tarkoitettu kaikenikäisille, alle kouluikäiset aikuisen kanssa.</p><p><b>Tutustuminen Avoin tila -esityksen maailmaan</b><br>klo 14–14.40 (tila: Juhlasali)</p><p>Kekäläinen & Companyn <i>Avoin tila</i> on filosofinen tanssiteos kouluikäisille ja heidän aikuisilleen. Satupäivänä pääsemme kurkistamaan nabbteerin esinemaailmassa seikkailevaan tanssijaan.</p><p>Avoin tila -esitykset ovat Annantalossa 19., 20.ja 21.10. Lisätietoja <u><a href=\"https://www.annantalo.fi/fi/tapahtumat/?q=Avoin%20tila&st=2023-09-15&et=2024-06-15&el=46&show=20\">täältä</a></u></p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60986/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60937",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5175,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:34.100587Z",
                    "last_modified_time": "2023-10-09T13:30:34.100616Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737168.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5175/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-09T13:30:33.856426Z",
            "last_modified_time": "2023-11-14T06:13:24.572637Z",
            "date_published": null,
            "start_time": "2023-10-18T07:00:00Z",
            "end_time": "2023-10-18T09: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,
            "name": {
                "fi": "Naperokino: Mielikuvitus",
                "sv": "Knattebion: Fantasi",
                "en": "Naperokino (toddler cinema): Imagination"
            },
            "short_description": {
                "fi": "Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!",
                "en": "Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B4ADF280CD86FD0A177C81C2C8AD01FC/Naperokino_Mielikuvitus",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/B4ADF280CD86FD0A177C81C2C8AD01FC/Knattebion_Fantasi",
                "en": "http://www.annantalo.fi/en/events/event/B4ADF280CD86FD0A177C81C2C8AD01FC/Naperokino_toddler_cinema_Imagination"
            },
            "description": {
                "fi": "<p>Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>0–3-vuotiaiden Naperokino palaa ohjelmistoon syksyllä 2023! Rento, mukava esityspaikka ja -tilanne mahdollistavat vaipanvaihdon, syöttämisen/imettämisen tai vaikkapa pienet päiväunet lyhäreiden lomassa.</p><p>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen ottamaan vastaan ja katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas painottuu pienimmillekin sopiviin sanattomiin animaatioihin, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja.</p><p>Naperokino on suunnattu kotiäideille ja –isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ke 11.10., 22.11. ja 13.12. pääset paikan päällä myös tapaamaan ja halaamaan Naperokinossa vierailevaa Myyrää, jonka seikkailuita voit seurata tänä syksynä myös Annantalon somessa!</p><p>Näytöksillä on joka viikko vaihtuva teema.</p><p>Kieli: suomi<br>Ikäsuositus: 0-3-vuotiaille vanhempiensa kanssa<br>Tila: 1. kerroksen oleskelutila</p>",
                "sv": "<p>Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!</p><p>De minsta barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se även för en liten stund i taget. En avslappnad, bekväm plats för filmvisningen gör det möjligt att byta blöjor, mata/amma barnet eller t.ex. ta en liten tupplur under de korta filmerna.</p><p>Syftet är att visa barnet filmer av hög kvalitet och gradvis vänja hen vid att ta emot och titta på långa barnfilmer på biografer. Under den första halvan av visningen som varar två timmar ligger fokusen på animerade filmer utan tal och på den andra halvan visas det favoriter med tal.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Ons 11.10, 22.11. och 13.12 på plats kan du också möta och krama Mullvaden som besöker Knattebion. Mullvadens äventyr kan du följa under hösten också i Annegårdens sociala medier!</p><p>Föreställningarna har ett varierande tema varje vecka. Den här veckan är temat fantasi!</p><p>Mer information från kultural producent, tel. +358 40 188 3416</p>",
                "en": "<p>Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!</p><p>The cinema for toddlers, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while. The relaxed, comfortable venue and setting allow nappy changes, feeding/breastfeeding, or even little naps between short films.</p><p>The goal is to show children high-quality films and gradually get them used to engaging with and watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on wordless animations suitable for even the smallest children, and the second hour will feature favourites with spoken dialogue.</p><p>Naperokino is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>On Wed Oct 11, Nov 22 and Dec 13 you also get to meet and hug Naperokino’s guest Mole, whose adventures you can also follow this autumn on Annantalo’s social media!</p><p>The screenings have a different theme each week. This week, it’s imagination!</p><p>For more information please contact cultural produces +358 40 188 3416</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60937/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61013",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "19 €",
                        "sv": "19 €",
                        "en": "19 €"
                    },
                    "info_url": {
                        "fi": "https://www.pathfindertravels.se/tickets-fi/tc-events/helsinki-17-october-2023-red-program/",
                        "sv": "https://www.pathfindertravels.se/tickets-fi/tc-events/helsinki-17-october-2023-red-program/",
                        "en": "https://www.pathfindertravels.se/tickets-fi/tc-events/helsinki-17-october-2023-red-program/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5173,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:33.282781Z",
                    "last_modified_time": "2023-10-09T13:30:33.282801Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728707.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5173/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:33.137666Z",
            "last_modified_time": "2023-11-14T06:13:24.493478Z",
            "date_published": null,
            "start_time": "2023-10-17T15:30:00Z",
            "end_time": "2023-10-17T19: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,
            "name": {
                "fi": "BANFF Mountain Film Festival – RED FILM PROGRAM",
                "sv": "BANFF Mountain Film Festival – RED FILM PROGRAM",
                "en": "BANFF Mountain Film Festival – RED FILM PROGRAM"
            },
            "short_description": {
                "fi": "We’re stoked to announce this year’s two film programs! Get ready to witness a selection of the best festival entries, award-winners, and crowd favorites straight from the Canadian festival scene.",
                "sv": "We’re stoked to announce this year’s two film programs! Get ready to witness a selection of the best festival entries, award-winners, and crowd favorites straight from the Canadian festival scene.",
                "en": "We’re stoked to announce this year’s two film programs! Get ready to witness a selection of the best festival entries, award-winners, and crowd favorites straight from the Canadian festival scene."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CBAD76C3D3309BA516CC342D861FD7AA/BANFF_Mountain_Film_Festival",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/CBAD76C3D3309BA516CC342D861FD7AA/BANFF_Mountain_Film_Festival",
                "en": "http://www.savoyteatteri.fi/en/events/event/CBAD76C3D3309BA516CC342D861FD7AA/BANFF_Mountain_Film_Festival"
            },
            "description": {
                "fi": "<p>We’re stoked to announce this year’s two film programs! Get ready to witness a selection of the best festival entries, award-winners, and crowd favorites straight from the Canadian festival scene.</p><p>The RED film program brings you 8 films straight from the Canadian festival scene. It’s a diverse mix of films with different themes and lengths that will keep you glued to the screen. Our awesome host will be there to introduce the festival and each film, plus they’ll be rockin’ some sick giveaways and more. We’ll take a chill break around halfway through the evening for about 20 minutes. And don’t worry about the language barrier, because all the films either have English audio or English subtitles.</p><p>https://pathfindertravels.eu/red-film-program/</p>",
                "sv": "<p>We’re stoked to announce this year’s two film programs! Get ready to witness a selection of the best festival entries, award-winners, and crowd favorites straight from the Canadian festival scene.</p><p>The RED film program brings you 8 films straight from the Canadian festival scene. It’s a diverse mix of films with different themes and lengths that will keep you glued to the screen. Our awesome host will be there to introduce the festival and each film, plus they’ll be rockin’ some sick giveaways and more. We’ll take a chill break around halfway through the evening for about 20 minutes. And don’t worry about the language barrier, because all the films either have English audio or English subtitles.</p><p>https://pathfindertravels.eu/red-film-program/</p>",
                "en": "<p>We’re stoked to announce this year’s two film programs! Get ready to witness a selection of the best festival entries, award-winners, and crowd favorites straight from the Canadian festival scene.</p><p>The RED film program brings you 8 films straight from the Canadian festival scene. It’s a diverse mix of films with different themes and lengths that will keep you glued to the screen. Our awesome host will be there to introduce the festival and each film, plus they’ll be rockin’ some sick giveaways and more. We’ll take a chill break around halfway through the evening for about 20 minutes. And don’t worry about the language barrier, because all the films either have English audio or English subtitles.</p><p>https://pathfindertravels.eu/red-film-program/</p>"
            },
            "provider": {
                "fi": "Pathfinder Travels",
                "sv": "Pathfinder Travels",
                "en": "Pathfinder Travels"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61013/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61029",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5172,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:32.912458Z",
                    "last_modified_time": "2023-10-09T13:30:32.912477Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736353.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-10-09T13:30:32.705893Z",
            "last_modified_time": "2023-11-14T06:13:24.420819Z",
            "date_published": null,
            "start_time": "2023-10-17T15: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,
            "name": {
                "fi": "Syyslomaleffa: Kupla"
            },
            "short_description": {
                "fi": "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."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/49BC3E0042447616108C285E525A215E/Syyslomaleffa_Kupla"
            },
            "description": {
                "fi": "<p>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.</p><p>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. Niinpä Eveliina heittäytyy moniongelmaiseksi.</p><p>Siinä sivussa panoksiksi joutuu muutaman muunkin elämä. Silti Eveliina varjelee suunnitelmaansa viimeiseen asti ja omat salaiset selviytymiskeinonsa on aikuisillakin — kunnes kupla puhkeaa.</p><p>Aleksi Salmenperän lämminhenkinen draamakomedia kuvaa perhe-elämän, kasvatuksen ja parisuhteen haasteita lämpimästi, samaistuttavasti ja hurmaavan humoristisesti, kipeistäkin aiheista huolimatta.</p><p>Kesto: 1 t 43 min <br>Ohjaaja: Aleksi Salmenperä<br>Pääosissa: Stella Leppikorpi, Minna Haapkylä, Tommi Korpela, Anna-Maija Tuokko, Janne Reinikainen, Amos Brotherus, Saara Pakkasvirta</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61029/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60996",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5171,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:31.788363Z",
                    "last_modified_time": "2023-10-09T13:30:31.788382Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730884.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5171/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:30.703990Z",
            "last_modified_time": "2023-11-14T06:13:24.351616Z",
            "date_published": null,
            "start_time": "2023-10-17T14: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,
            "name": {
                "fi": "Malmitalon yhteislaulut",
                "sv": "Allsång på Malms kulturhus",
                "en": "Sing-alongs at Malmitalo"
            },
            "short_description": {
                "fi": "Malmitalon yhteislaulut – kuukauden paras tiistai!",
                "sv": "Allsång på Malms kulturhus - den bästa tisdagen i månaden!",
                "en": "Sing-alongs at Malmitalo – best Tuesday of the month!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C9ED8DCC8871CB5BF2D5DF500D4FFA46/Malmitalon_yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C9ED8DCC8871CB5BF2D5DF500D4FFA46/Allsang_pa_Malms_kulturhus",
                "en": "http://www.malmitalo.fi/en/events/event/C9ED8DCC8871CB5BF2D5DF500D4FFA46/Sing-alongs_at_Malmitalo"
            },
            "description": {
                "fi": "<p>Malmitalon yhteislaulut – kuukauden paras tiistai!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla saa Malmisalissa taas laulaa ihan sydämensä kyllyydestä!</p><p>Syksyn yhteislaulut järjestetään 12.9., 17.10., 14.11. sekä 19.12. klo 17.00 Malmisalissa. Tervetuloa!</p>",
                "sv": "<p>Allsång på Malms kulturhus - den bästa tisdagen i månaden!</p><p>Nu får publiken åter sjunga för full hals i Malmsalen under ledning av Jukka Okkonen och Pauli Kainulainen!</p><p>Vårens allsång ordnas 12.9, 17.10, 14.11 samt 19.12 kl. 17.00 i Malmsalen.</p><p>Välkommen!</p>",
                "en": "<p>Sing-alongs at Malmitalo – best Tuesday of the month!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, you can once again sing your heart out in Malmisali!</p><p>Spring sing-alongs are held in Malmisali on 12 September, 17 October, 14 November and 19 December at 17.00.</p><p>We look forward to seeing you!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60996/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61001",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5170,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:30.383984Z",
                    "last_modified_time": "2023-10-09T13:30:30.384002Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736354.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5170/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:30.232092Z",
            "last_modified_time": "2023-11-14T06:13:24.274750Z",
            "date_published": null,
            "start_time": "2023-10-17T11: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,
            "name": {
                "fi": "Syyslomaleffa: Sing 2 (in English)",
                "sv": "Höstlovsfilm: Sing 2 (in English)",
                "en": "Autumn holiday film: Sing 2 (in English)"
            },
            "short_description": {
                "fi": "Syyslomalla pääset ilmaiseksi leffaan Vuotalossa! Sing 2 näytetään englanniksi alkuperäisenä ääniversiona.",
                "sv": "Buster har gjort New Moon Theatre till en lokal hit, men Buster har ett större mål i sikte: att sätta upp en ny show på Crystal Tower Theatre i glamorösa Redshore City.",
                "en": "The new chapter in Illumination’s smash animated franchise returns with big dreams and spectacular hit songs."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/138E1FDF2B39B5EBDDBCD98363CBA62B/Syyslomaleffa_Sing_2_in_English_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/138E1FDF2B39B5EBDDBCD98363CBA62B/Hostlovsfilm_Sing_2_in_English_",
                "en": "http://www.vuotalo.fi/en/events/event/138E1FDF2B39B5EBDDBCD98363CBA62B/Autumn_holiday_film_Sing_2_in_English_"
            },
            "description": {
                "fi": "<p>Syyslomalla pääset ilmaiseksi leffaan Vuotalossa! Sing 2 näytetään englanniksi alkuperäisenä ääniversiona.</p><p>Animaatiostudio Illuminationin musiikintäyteinen Sing 2 on upea viihde-elämys! Lannistumaton showmies, koala Buster Moon ja hänen tähtikaartiinsa valmistautuvat elämänsä huikeimpaan spektaakkeliin viihdemaailman kimaltelevassa pääkaupungissa.</p><p>On vain yksi ongelma: heidän pitää suostutella erakoitunut supertähti mukaan show’hun. Sing 2 sisältää kymmeniä tunnettuja rock- ja pophittejä, sävähdyttäviä esityksiä sekä Illuminationille ominaista huumoria ja sydämellisyyttä.</p><p>Ensi-ilta: 22.12.2021<br>Ikäraja: 7<br>Pituus: 110 min<br>Ohjaus: Garth Jennings<br>Tekstitys: suomi ja ruotsi</p><p>Alkuperäinen ääniversio: Matthew McConaughey, Reese Witherspoon, Scarlett Johansson, Taron Egerton, Tori Kelly, Nick Kroll, Bobby Cannavale, Halsey, Pharrell Williams, Letitia Wright, Eric Andre, Chelsea Peretti, Bono</p><p>Vapaa pääsy</p>",
                "sv": "<p>Buster har gjort New Moon Theatre till en lokal hit, men Buster har ett större mål i sikte: att sätta upp en ny show på Crystal Tower Theatre i glamorösa Redshore City.</p><p>Utan de rätta kontakterna, måste Buster och hans artister - inklusive den plågade grismamman Rosita, det rockande piggsvinet Ash, den seriösa gorillan Johnny, den blyga elefanten Meena och, naturligtvis, den svinaktigt extraordinära provokatören Gunter – ändå på något sätt ta sig in på världsberömda Crystal Entertainment, som drivs av en hänsynslös mogulvarg som heter Jimmy Crystal.</p><p>I ett desperat försök att få Mr. Crystals uppmärksamhet försöker Gunter spontant pitcha en vansinnig idé, som Buster snabbt hakar på, och lovar att lejonrocklegenden Clay Calloway kommer att vara med i deras nya show. Problemet är att Buster aldrig har träffat Clay, en artist som drog sig tillbaka från världen för mer än ett decennium sedan, efter förlusten av sin fru, och inte har setts till sedan dess.</p><p>Åldersgräns: 7<br>Längd: 100 min<br>Textning: finska och svenska <br>Fritt inträde</p><p>Matthew McConaughey, Reese Witherspoon, Scarlett Johansson, Taron Egerton, Tori Kelly, Nick Kroll, Bobby Cannavale, Halsey, Pharrell Williams, Letitia Wright, Eric Andre, Chelsea Peretti, Bono</p>",
                "en": "<p>The new chapter in Illumination’s smash animated franchise returns with big dreams and spectacular hit songs.</p><p>Can-do koala Buster Moon and his all-star cast of animal performers prepare to launch their most dazzling stage extravaganza yet …in the glittering entertainment capital of the world.</p><p>There’s just one hitch: They first have to persuade the world’s most reclusive rock star—played by legendary music icon Bono, making his animated film debut—to join them.</p><p>Buster (Oscar® winner Matthew McConaughey) and his cast have turned the New Moon Theater into a local hit, but Buster has his eyes on a bigger prize: Debuting a new show at the Crystal Tower Theater in glamorous Redshore City.</p><p>Age limit: 7<br>Duration: 110 min <br>Texts: Finnish and Swedish<br>Free entry</p><p>Matthew McConaughey, Reese Witherspoon, Scarlett Johansson, Taron Egerton, Tori Kelly, Nick Kroll, Bobby Cannavale, Halsey, Pharrell Williams, Letitia Wright, Eric Andre, Chelsea Peretti, Bon</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61001/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}