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=1147&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": 26801,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1148&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1146&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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"
            },
            "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>"
            },
            "location_extra_info": null,
            "provider_contact_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"
            },
            "provider": null,
            "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!"
            },
            "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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)"
            },
            "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>"
            },
            "location_extra_info": null,
            "provider_contact_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_"
            },
            "provider": null,
            "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."
            },
            "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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"
            },
            "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>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/59C11561CAD7FB7F9404FE0942CB574F/Satupaiva_Annantalossa"
            },
            "provider": null,
            "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!"
            },
            "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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"
            },
            "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>"
            },
            "location_extra_info": null,
            "provider_contact_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"
            },
            "provider": null,
            "short_description": {
                "fi": "Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!",
                "en": "Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!"
            },
            "@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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "19 €",
                        "sv": "19 €",
                        "en": "19 €"
                    }
                }
            ],
            "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"
            },
            "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>"
            },
            "location_extra_info": null,
            "provider_contact_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"
            },
            "provider": {
                "fi": "Pathfinder Travels",
                "sv": "Pathfinder Travels",
                "en": "Pathfinder Travels"
            },
            "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."
            },
            "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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"
            },
            "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>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/49BC3E0042447616108C285E525A215E/Syyslomaleffa_Kupla"
            },
            "provider": null,
            "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."
            },
            "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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"
            },
            "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>"
            },
            "location_extra_info": null,
            "provider_contact_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"
            },
            "provider": null,
            "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!"
            },
            "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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)"
            },
            "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>"
            },
            "location_extra_info": null,
            "provider_contact_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_"
            },
            "provider": null,
            "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."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61001/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60524",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4424,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:41.831885Z",
                    "last_modified_time": "2023-09-07T14:24:41.831907Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731289.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4424/?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:40.854233Z",
            "last_modified_time": "2023-11-14T06:13:24.201209Z",
            "date_published": null,
            "start_time": "2023-10-17T10: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: Luca (7)",
                "sv": "Höstlovsfilm: Luca (7)",
                "en": "Autumn holiday film: Luca (7)"
            },
            "description": {
                "fi": "<p>Luca on nuoren pojan aikuistumistarina jäätelön, pastan ja skootteriajeluiden parissa erään unohtumattoman kesän aikana.</p><p>Italian Rivieralle kauniiseen merenrantakaupunkiin sijoittuvassa Disneyn ja Pixarin alkuperäiselokuvassa Luca-poika seikkailee yhdessä ystävänsä Alberton kanssa, mutta kaiken hauskan uhkana on syvä salaisuus: he ovat merihirviöitä toisesta, merenalaisesta maailmasta.</p><p>Lucan on ohjannut Oscar-ehdokas <b>Enrico Casarosa</b> (La Luna) ja tuottanut <b>Andrea Warren</b> (Lava, Autot 3).</p><p>Kesto: 95 min<br>Ikäraja: 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Luca är en uppväxtberättelse om en ung pojke som upplever en oförglömlig sommar full av glass, pasta och skoterturer.</p><p>Luca delar dessa äventyr med sin vän, Alberto, men allt roligt hotas av en dold hemlighet: de är sjömonster från en annan värld under vattenytan.</p><p>Längd: 95 min <br>Åldersgräns: 7<br>Språk: finska</p>",
                "en": "<p>‘Luca’ is a young boy’s coming-of-age story centred around ice cream, pasta and scooter rides during one unforgettable summer.</p><p>Luca goes on adventures with his friend Alberto, but underneath all the fun is a deep secret: they are sea monsters from another world, under the sea.</p><p>Duration: 95 min <br>Age limit: 7<br>Language: Finnish</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/35A078AC2B81BA2FD4CDDDCD6F3A1458/Syyslomaleffa_Luca_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/35A078AC2B81BA2FD4CDDDCD6F3A1458/Hostlovsfilm_Luca_7_",
                "en": "http://www.malmitalo.fi/en/events/event/35A078AC2B81BA2FD4CDDDCD6F3A1458/Autumn_holiday_film_Luca_7_"
            },
            "provider": null,
            "short_description": {
                "fi": "Luca on nuoren pojan aikuistumistarina jäätelön, pastan ja skootteriajeluiden parissa erään unohtumattoman kesän aikana.",
                "sv": "Luca är en uppväxtberättelse om en ung pojke som upplever en oförglömlig sommar full av glass, pasta och skoterturer.",
                "en": "‘Luca’ is a young boy’s coming-of-age story centred around ice cream, pasta and scooter rides during one unforgettable summer."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60524/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60757",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?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:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4423,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:39.927935Z",
                    "last_modified_time": "2023-09-07T14:24:39.927954Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735821.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4423/?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:39.251995Z",
            "last_modified_time": "2023-11-14T06:13:24.126967Z",
            "date_published": null,
            "start_time": "2023-10-17T09:00:00Z",
            "end_time": "2023-10-17T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Mitä kuuluu, Chile? – Chile50-näyttelyyn liittyvä taidetyöpaja 10–12-vuotiaille",
                "sv": "Hur är det, Chile? – Konstverkstad för barn i åldern 10–12 år i anslutning till utställningen Chile50",
                "en": "How Are You, Chile? – Art workshop related to the Chile50 exhibition for children aged 10–12"
            },
            "description": {
                "fi": "<p>Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?</p><p>Työpajan sisältö on saanut innoituksensa Club Gabriel Mistral para niños lastenkerhosta. Club Gabriel Mistral oli chileläispakolaisten perustama lastenkerho Suomessa. Sen toiminta sijoittui 70-luvun lopusta 2000-luvun alkuun. Kerhossa yhdessä tekeminen, leikki ja musiikki, toimivat kulttuurin ja espanjan kielen välittäjinä toisen polven chileläisille ja myöhemmin muillekin Latinalaisen Amerikan kulttuurista kiinnostuneille perheille.</p><p>Lasten taidetyöpajassa sukellamme suomalaischileläiseen historiaan ja Suomeen asti kantautuvaan chileläiseen kulttuuriin. Suomalaischileläisten taidekasvattajien johdolla rakennamme oman panhuilun tai run run -hyrrän. Musisoimme yhdessä ja tutustumme Caisassa olevaan Chile50-valokuvanäyttelyyn.</p><p>Ohjaaja: Aino Parada<br>Lisätietoja: teemu.savikurki@hel.fi<br>Kesto: 2,5 h<br>Ikäsuositus: 10–12-vuotiaille<br>Kieli: suomi, tarvittaessa espanja<br>Maksuton<br>Ryhmäkoko: maks. 10 osallistujaa/työpaja<br>Ilmoittautuminen:<br>Maanantai 16.10.2023 klo 12–14.30. Linkki: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tiistai 17.10.2023 klo 12–14.30. Linkki: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>",
                "sv": "<p>Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?</p><p>I konstverkstaden för barn dyker vi ner i den finsk-chilenska historian och den chilenska kulturen som når ända till Finland. Under ledning av finsk-chilenska konstpedagoger bygger vi vår egen panflöjt eller run run-snurra. Vi musicerar tillsammans och bekantar oss med fotoutställningen Chile50 som visas i Caisa.</p><p>Instruktör: Aino Parada<br>Mera info: teemu.savikurki@hel.fi<br>Längd: 2,5 t.<br>Åldersrekommendation: 10–12<br>Språk: finska<br>Kostnadsfri</p><p>Anmälan:<br>Mån. 16.10 kl. 12–14.30: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tis. 17.10 kl. 12–14.30: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>",
                "en": "<p>Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?</p><p>In this children’s art workshop, we will dive into the Finnish-Chilean history and the Chilean culture that reaches all the way to Finland. Under the guidance of Finnish-Chilean art educators, we will build our own panpipes or run run spinning tops. We will play music together and explore the Chile50 photo exhibition at Caisa.</p><p>Instructor: Aino Parada<br>More information: teemu.savikurki@hel.fi<br>Duration: 2.5 h<br>Age recommendation: 12 to 10<br>Language: Finnish</p><p>Registration:<br>Monday 16 October  12–14.30: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tuesday 17 October 12–14.30: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/D14775BC657BBE003BF3D658ECE6C45A/Mita_kuuluu_Chile_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/D14775BC657BBE003BF3D658ECE6C45A/Hur_ar_det_Chile_",
                "en": "http://www.caisa.fi/en/events/event/D14775BC657BBE003BF3D658ECE6C45A/How_Are_You_Chile_"
            },
            "provider": null,
            "short_description": {
                "fi": "Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?",
                "sv": "Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?",
                "en": "Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60757/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60523",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4422,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:38.849339Z",
                    "last_modified_time": "2023-09-07T14:24:38.849361Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731709.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4422/?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:38.705937Z",
            "last_modified_time": "2023-11-14T06:13:24.051379Z",
            "date_published": null,
            "start_time": "2023-10-17T08:00:00Z",
            "end_time": "2023-10-17T10: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: Metsäneläinten pyykkipäivä",
                "sv": "Höstlovsverkstad: Skogsdjurens tvättdag",
                "en": "Autumn holiday workshop Wild animals’ laundry day"
            },
            "description": {
                "fi": "<p>Metsäneläinten pyykkipäivänä tehdään pyykkipoikaeläimiä!</p><p>Askartele nallenmörrikkä, pieni pupunen, harmaankirjava hiirulainen tai joku muu mieleisesi eläinihanuus.</p><p>Suunnittelu ja toteutus: Runoropinoita</p><p>Työpaja on Malmitalon aulassa, vapaa pääsy!</p>",
                "sv": "<p>På skogsdjurens tvättdag skapar vi djur av klädnypor!</p><p>Pyssla en lurvig nalle, en liten kanin, en gråspräcklig liten mus eller något annat underbart djur som du gillar.</p>",
                "en": "<p>Let’s make animals from clothes pegs on wild animals’ laundry day!</p><p>Create a teddy bear, a little bunny, a grey mouse or any other animal you like.</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CDFF52037D25BCC0EE684537AF60D146/Syyslomatyopaja_Metsanelainten_pyykkipaiva",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CDFF52037D25BCC0EE684537AF60D146/Hostlovsverkstad_Skogsdjurens_tvattdag",
                "en": "http://www.malmitalo.fi/en/events/event/CDFF52037D25BCC0EE684537AF60D146/Autumn_holiday_workshop_Wild_animals_laundry_day"
            },
            "provider": null,
            "short_description": {
                "fi": "Metsäneläinten pyykkipäivänä tehdään pyykkipoikaeläimiä!",
                "sv": "På skogsdjurens tvättdag skapar vi djur av klädnypor!",
                "en": "Let’s make animals from clothes pegs on wild animals’ laundry day!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60523/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61000",
            "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/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5169,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:29.392171Z",
                    "last_modified_time": "2023-10-09T13:30:29.392191Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736355.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5169/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:29.148405Z",
            "last_modified_time": "2023-11-14T06:13:23.979974Z",
            "date_published": null,
            "start_time": "2023-10-17T08: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: Supermarsu 2"
            },
            "description": {
                "fi": "<p>Supermarsun on pelastettava mehiläiset, jotta se voi pelastaa maailman.</p><p>Pelastaakseen mehiläiset sen on pelastettava koulun pahin kiusaaja. Elokuva tarttuu tärkeisiin yhteiskunnallisiin ja ekologisiin aiheisiin helposti ymmärrettävällä ja humoristisella tavalla. Elokuva on jatkoa menestyselokuvalle Supermarsu, joka oli yksi vuoden 2018 katsotumpia elokuvia.</p><p>Kesto: 1 t 30 min  <br>Ohjaaja: Joona Tena<br>Pääosissa: Essi Hellén, Eero Ritala, Tommi Korpela, Kari Hietalahti</p><p>Vapaa pääsy <br>Ikäsuositus: kaikenikäisille</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/ABB04475D54666D8AF2459F5243023DA/Syyslomaleffa_Supermarsu_2"
            },
            "provider": null,
            "short_description": {
                "fi": "Supermarsun on pelastettava mehiläiset, jotta se voi pelastaa maailman."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61000/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60756",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?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:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4421,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:38.472477Z",
                    "last_modified_time": "2023-09-07T14:24:38.472507Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735823.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4421/?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:38.293748Z",
            "last_modified_time": "2023-11-14T06:13:23.906696Z",
            "date_published": null,
            "start_time": "2023-10-17T06:00:00Z",
            "end_time": "2023-10-17T08:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Mitä kuuluu, Chile? – Chile50-näyttelyyn liittyvä taidetyöpaja 7–9-vuotiaille",
                "sv": "Hur är det, Chile? – Konstverkstad för barn i åldern 7–9 år i anslutning till utställningen Chile50",
                "en": "How Are You, Chile? – Art workshop related to the Chile50 exhibition for children aged 7–9"
            },
            "description": {
                "fi": "<p>Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?</p><p>Työpajan sisältö on saanut innoituksensa Club Gabriel Mistral para niños lastenkerhosta. Club Gabriel Mistral oli chileläispakolaisten perustama lastenkerho Suomessa. Sen toiminta sijoittui 70-luvun lopusta 2000-luvun alkuun. Kerhossa yhdessä tekeminen, leikki ja musiikki, toimivat kulttuurin ja espanjan kielen välittäjinä toisen polven chileläisille ja myöhemmin muillekin Latinalaisen Amerikan kulttuurista kiinnostuneille perheille.</p><p>Lasten taidetyöpajassa sukellamme suomalaischileläiseen historiaan ja Suomeen asti kantautuvaan chileläiseen kulttuuriin. Suomalaischileläisten taidekasvattajien johdolla rakennamme oman panhuilun tai run run -hyrrän. Musisoimme yhdessä ja tutustumme Caisassa olevaan Chile50-valokuvanäyttelyyn.</p><p>Ohjaaja: Aino Parada<br>Lisätietoja: teemu.savikurki@hel.fi<br>Kesto: 2,5 h<br>Ikäsuositus: 7–9-vuotiaille<br>Kieli: suomi, tarvittaessa espanja<br>Maksuton<br>Ryhmäkoko: maks. 10 osallistujaa/työpaja<br>Ilmoittautuminen:<br>Maanantai 16.10.2023 klo 9–11.30. Linkki: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tiistai 17.10.2023 klo 9–11.30. Linkki: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>",
                "sv": "<p>Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?</p><p>I konstverkstaden för barn dyker vi ner i den finsk-chilenska historian och den chilenska kulturen som når ända till Finland. Under ledning av finsk-chilenska konstpedagoger bygger vi vår egen panflöjt eller run run-snurra. Vi musicerar tillsammans och bekantar oss med fotoutställningen Chile50 som visas i Caisa.</p><p>Instruktör: Aino Parada<br>Mera info: teemu.savikurki@hel.fi<br>Längd: 2,5 t.<br>Åldersrekommendation: 7–9<br>Språk: finska<br>Kostnadsfri</p><p>Anmälan:<br>Mån. 16.10 kl. 9–11.30: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tis. 17.10 kl. 9–11.30: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>",
                "en": "<p>Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?</p><p>In this children’s art workshop, we will dive into the Finnish-Chilean history and the Chilean culture that reaches all the way to Finland. Under the guidance of Finnish-Chilean art educators, we will build our own panpipes or run run spinning tops. We will play music together and explore the Chile50 photo exhibition at Caisa.</p><p>Instructor: Aino Parada<br>More information: teemu.savikurki@hel.fi<br>Duration: 2.5 h<br>Age recommendation: 7 to 9<br>Language: Finnish</p><p>Registration:<br>Monday 16 October  9–11.30: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tuesday 17 October 9–11.30: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/16AA2DD13358B0A426483645327C4928/Mita_kuuluu_Chile_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/16AA2DD13358B0A426483645327C4928/Hur_ar_det_Chile_",
                "en": "http://www.caisa.fi/en/events/event/16AA2DD13358B0A426483645327C4928/How_Are_You_Chile_"
            },
            "provider": null,
            "short_description": {
                "fi": "Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?",
                "sv": "Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?",
                "en": "Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60756/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60750",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://web.lippu.fi/palautus/"
                    },
                    "description": null,
                    "price": {
                        "fi": "42 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4420,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:38.071426Z",
                    "last_modified_time": "2023-09-07T14:24:38.071448Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736267.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4420/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:37.861627Z",
            "last_modified_time": "2023-11-14T06:13:23.831014Z",
            "date_published": null,
            "start_time": "2023-10-16T16: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": "Yona - Tähtii ei voi omistaa – KONSERTTI ON PERUTTU!"
            },
            "description": {
                "fi": "<p>Yonan lokakuinen konserttisalikiertue peruuntuu<br> <br>Joudumme valitettavasti ilmoittamaan, että kotimaisen taidepopin supertähden Yonan lokakuinen konserttisalikiertue peruuntuu. Syynä peruuntumiseen on huono ennakkomyynti. Konsertin oli määrä toteutua yhdeksällä paikkakunnalla, joista kaksi jo peruttiin aikaisemmin ja odotukset lipunmyynnille olivat suuret kiertuetta julkistettaessa<br>Nyt, kun kiertueen alkuun oli jäljellä aikaa enää viikko, oli lipunmyynti selvästi jäljellä tavoitteista ja kiertueen järjestämisestä olisi tullut kymmenien tuhansien eurojen tappiot.<br> <br>Toisin kuin jossain julkisuudessa on väitetty, kiertueen peruuttaminen ei johtunut sen järjestäjäyhtiöstä, eli Loud & Live Promotionsista. Yhtiö olisi ollut valmis neuvottelemaan artistin ja hänen edustajiensa kanssa kiertueen viemisestä läpi tappiollisena, kuitenkin niin että tappiollisuutta olisi voitu ennakkoon vähentää ennakoitua pienemmällä kulurakenteella. Artistin edustajat eivät kuitenkaan olleet valmiita minkäänlaisiin neuvotteluihin asiasta.</p><p>Ma 16.10.2023 Yona -konsertti Savoy-teatterissa on peruttu.</p><p>Jo maksetut liput tulee palauttaa torstaihin 9.11.2023 mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelu- tai toimitusmaksuja.<br>Jo maksetut liput voi myös vaihtaa Savoy-teatterin lahjakorttiin. Lahjakortti on voimassa kaksi (2) vuotta myöntöhetkestä, ja sillä voi ostaa lippuja Savoy-teatterin tapahtumiin Savoy-teatterin lipunmyynnistä ja Lippupisteen täyden palvelun lippukaupoista. Lahjakortti toimitetaan postitse asiakkaan ilmoittamaan osoitteeseen.</p><p>OHJE LIPPUJEN VAIHTAMISEKSI LAHJAKORTTIIN:</p><p>Ilmoita lipun viivakoodinumero, rivi- ja paikkanumero sekä osoite johon lahjakortti postitetaan osoitteeseen raisa.ailio@hel.fi. <br> <br>OHJE LIPPUJEN PALAUTUKSIIN:<br> <br>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/<br> <br>Liput voi myös palauttaa postitse. <br>Asiakkaat saavat lipun hinnan takaisin palauttamalla lipun yhteystietoineen ja tilinumeroineen postitse Lippupisteelle osoitteeseen:<br> <br>Lippupiste Oy / ”Tapahtuman nimi” palautus <br>Kansikatu 5, 33100 Tampere</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br> <br>Tapahtumajärjestäjä Loud'n Live Promotions Oy sekä Savoy-teatteri ja Lippupiste pahoittelevat peruuntumisesta aiheutuvaa harmia.</p><p>*****</p><p>Kotimaisen taidepopin supertähti Yonan - Tähtii ei voi omistaa -konserttisalikiertueen Helsingin konsertti Savoy-teatterissa.</p><p>Mittavan ja taiteellisesti kunnianhimoisen uran tehnyt Yona (oik. Johanna Rasmus) valmistelee parhaillaan yhdeksättä studioalbumiaan. Yona tunnetaan ennakkoluulottomasta tavastaan yhdistellä eri musiikkityylejä ja hänen kappaleilleen on ominaista vahva tunnelataus ja elokuvallisuus.</p><p>Yonan ilmaisuvoimaisessa yhtyeessä soittavat Juhani Grönroos (kitara), Juho Kanervo (sello), Antti Kujanpää (koskettimet), Tuomas Timonen (rummut), Antti Kivimäki (basso), Paavo Malmberg (ääni) sekä Jaakko Peltonen (valot).</p><p>Kriitikoiden ylistämä, Tapiola Sinfoniettan kanssa tehty, viimeisin albumijulkaisu Uni johon herään palkittiin viime vuonna sekä Kriitikoiden valinta -Emmalla että Teosto-palkinnolla. Albumi oli lisäksi ehdolla arvostetun Pohjoismaiden neuvoston musiikkipalkinnon saajaksi ja esitettiin kokonaisuudessaan loppuunmyydyissä konserteissa ympäri Suomen. Viime vuonna Yona ihastutti myös uusimmalla Vain elämää -kaudella.</p><p>Kesto n. 90 min, ei väliaikaa</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/09E60169110E1401A9AA607271275715/Yona_-_Tahtii_ei_voi_omistaa"
            },
            "provider": {
                "fi": "Loud'n Live Promotions Oy"
            },
            "short_description": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60750/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60433",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4419,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:36.835048Z",
                    "last_modified_time": "2023-09-07T14:24:36.835070Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730315.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4419/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:35.951344Z",
            "last_modified_time": "2023-11-14T06:13:23.760206Z",
            "date_published": null,
            "start_time": "2023-10-16T15: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": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "description": {
                "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii Mari Kätkä.</p><p>Kesto: 1 t</p><p>Maksuttomat maanantait on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä.</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/77681E6C37D22CB33AC2DE374B2A767B/Nyt_lauletaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/77681E6C37D22CB33AC2DE374B2A767B/Nu_sjunger_vi_",
                "en": "http://www.kanneltalo.fi/en/events/event/77681E6C37D22CB33AC2DE374B2A767B/Let_us_sing_"
            },
            "provider": null,
            "short_description": {
                "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!",
                "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!",
                "en": "Nothing is more fun than singing – except for singing together!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60433/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60755",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?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:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4418,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:35.143843Z",
                    "last_modified_time": "2023-09-07T14:24:35.143874Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735820.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4418/?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:34.791046Z",
            "last_modified_time": "2023-11-14T06:13:23.687304Z",
            "date_published": null,
            "start_time": "2023-10-16T09:00:00Z",
            "end_time": "2023-10-16T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Mitä kuuluu, Chile? – Chile50-näyttelyyn liittyvä taidetyöpaja 10–12-vuotiaille",
                "sv": "Hur är det, Chile? – Konstverkstad för barn i åldern 10–12 år i anslutning till utställningen Chile50",
                "en": "How Are You, Chile? – Art workshop related to the Chile50 exhibition for children aged 10–12"
            },
            "description": {
                "fi": "<p>Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?</p><p>Työpajan sisältö on saanut innoituksensa Club Gabriel Mistral para niños lastenkerhosta. Club Gabriel Mistral oli chileläispakolaisten perustama lastenkerho Suomessa. Sen toiminta sijoittui 70-luvun lopusta 2000-luvun alkuun. Kerhossa yhdessä tekeminen, leikki ja musiikki, toimivat kulttuurin ja espanjan kielen välittäjinä toisen polven chileläisille ja myöhemmin muillekin Latinalaisen Amerikan kulttuurista kiinnostuneille perheille.</p><p>Lasten taidetyöpajassa sukellamme suomalaischileläiseen historiaan ja Suomeen asti kantautuvaan chileläiseen kulttuuriin. Suomalaischileläisten taidekasvattajien johdolla rakennamme oman panhuilun tai run run -hyrrän. Musisoimme yhdessä ja tutustumme Caisassa olevaan Chile50-valokuvanäyttelyyn.</p><p>Ohjaaja: Aino Parada<br>Lisätietoja: teemu.savikurki@hel.fi<br>Kesto: 2,5 h<br>Ikäsuositus: 10–12-vuotiaille<br>Kieli: suomi, tarvittaessa espanja<br>Maksuton<br>Ryhmäkoko: maks. 10 osallistujaa/työpaja<br>Ilmoittautuminen:<br>Maanantai 16.10.2023 klo 12–14.30. Linkki: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tiistai 17.10.2023 klo 12–14.30. Linkki: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>",
                "sv": "<p>Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?</p><p>I konstverkstaden för barn dyker vi ner i den finsk-chilenska historian och den chilenska kulturen som når ända till Finland. Under ledning av finsk-chilenska konstpedagoger bygger vi vår egen panflöjt eller run run-snurra. Vi musicerar tillsammans och bekantar oss med fotoutställningen Chile50 som visas i Caisa.</p><p>Instruktör: Aino Parada<br>Mera info: teemu.savikurki@hel.fi<br>Längd: 2,5 t.<br>Åldersrekommendation: 10–12<br>Språk: finska<br>Kostnadsfri</p><p>Anmälan:<br>Mån. 16.10 kl. 12–14.30: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tis. 17.10 kl. 12–14.30: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>",
                "en": "<p>Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?</p><p>In this children’s art workshop, we will dive into the Finnish-Chilean history and the Chilean culture that reaches all the way to Finland. Under the guidance of Finnish-Chilean art educators, we will build our own panpipes or run run spinning tops. We will play music together and explore the Chile50 photo exhibition at Caisa.</p><p>Instructor: Aino Parada<br>More information: teemu.savikurki@hel.fi<br>Duration: 2.5 h<br>Age recommendation: 12 to 10<br>Language: Finnish</p><p>Registration:<br>Monday 16 October  12–14.30: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tuesday 17 October 12–14.30: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/C555146495B9D3D9767092B49327A0B6/Mita_kuuluu_Chile_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/C555146495B9D3D9767092B49327A0B6/Hur_ar_det_Chile_",
                "en": "http://www.caisa.fi/en/events/event/C555146495B9D3D9767092B49327A0B6/How_Are_You_Chile_"
            },
            "provider": null,
            "short_description": {
                "fi": "Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?",
                "sv": "Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?",
                "en": "Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60755/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60297",
            "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:288/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p25966/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4417,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:34.541485Z",
                    "last_modified_time": "2023-09-07T14:24:34.541520Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734731.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4417/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:24:34.374044Z",
            "last_modified_time": "2023-11-14T06:13:23.603608Z",
            "date_published": null,
            "start_time": "2023-10-16",
            "end_time": "2023-10-19",
            "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": "REDESIGN-kurssi | TÄYNNÄ – Syysloma",
                "sv": "Höstlovskursen REDESIGN | FULLBOKAT",
                "en": "REDESIGN Autumn holiday course | FULLY BOOKED"
            },
            "description": {
                "fi": "<p>Kurssin aikana lapset pääsevät tutustumaan suunnittelijan työhön. Kurssilla piirretään, suunnitellaan, muovataan ja rakennetaan.</p><p>Suunnitteluprosessi etenee inspiraatiosta, ideoinnin kautta toteutukseen. Kurssilla opitaan visuaalisesta viestinnästä tekemällä oma symbolikartasto ja logo.</p><p>Kurssin aikana saadaan kaksi tehtävänantoa eli briefiä. Ensimmäisessä briefissä suunnitellaan mehiläisten inspiroima kahvilakonsepti ja toisessa briefissä muotoillaan oman tuotteen prototyyppi ja tehdään tuotteelle visuaalinen käyttöohje.</p><p>Kurssin aikana tehdään erilaisia tehtäviä ja hauskoja harjoituksia. Kurssille suunnitellut monistepohjat tukevat oppimista. Lasten on mahdollista osallistua leikkimielisiin kisoihin, joissa pisteet jaetaan makeisten muodossa. Kurssilla tehdään flow-harjoituksia, joiden tarkoitus on auttaa löytämään omat supervoimat ja auttaa rauhoittumisessa ja keskittymisessä.</p><p>REDESIGN toteutetaan englanninkielisenä. Opetusta on kurssipäivinä klo 10–14.</p><p>Ilmoita koululainen kurssille: salla.fornaro@hel.fi tai 09 310 26154, 040 537 1520</p><p>Kohderyhmä: 3.–6.-luokkalaiset<br>Hinta: 0 €<br>Kieli: englanti (suomi)<br>Ohjaaja: Milla Koivisto / Manual Productions</p>",
                "sv": "<p>Under kursen får barnen bekanta sig med designerns arbete. På kursen får deltagarna teckna, designa, forma och bygga.</p><p>Designprocessen går från inspiration via idéarbete till utförande. På kursen lär sig deltagarna visuell kommunikation genom att skapa en egen symbolkarta och logotyp. Under kursen ges deltagarna två uppgiftsbeskrivningar, så kallade brief. I den första ska de designa ett cafékonsept inspirerat av bin och i den andra designar de en prototyp av sin produkt och skapar en visuell bruksanvisning för produkten.</p><p>Under kursen görs olika uppgifter och roliga övningar. Som stöd för lärandet finns stenciler som satts samman för kursen. Barnen kan delta i lekfulla tävlingar där poängen ges i form av godis. Under kursen görs flowövningar som syftar till att hitta de egna superkrafterna och hjälpa barnen att hitta lugnet och koncentrationen. Språket på Redesign är engelska.</p><p>För 3:e-6:e klassare<br>Pris: 0 €<br>Språk: engelska (finska) <br>Kursinstruktör: Milla Koivisto / Manual Productions</p><p>Anmäl studenten till kursen: salla.fornaro@hel.fi eller 09 310 26154, 040 537 1520</p>",
                "en": "<p>During the course, children will be introduced to the work of a designer. The course will involve drawing, designing, shaping and building.</p><p>The design process will go from inspiration, through ideation, to realisation. The course will teach the participants about visual communication by creating their own symbol map and logo. During the course, the participants will receive two briefs. The first brief is to design a café concept inspired by bees and the second brief is to design a prototype of a product and create a visual user manual for the product.</p><p>The course will include a variety of exercises and amusing activities. The multiple handouts designed for the course will support learning. The children will have the opportunity to participate in playful competitions where points will be awarded in the form of sweets. The course will feature flow exercises to help the participants discover their own superpowers as well as to calm down and focus. The REDESIGN course is taught in English.</p><p>For children in 3th–6th grade<br>Price: 0 €<br>Language: English (Finnish) <br>Instructor: Milla Koivisto / Manual Productions</p><p>Register the student for the course: salla.fornaro@hel.fi or 09 310 26154, 040 537 1520</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F52A30F47C3C7BF9FD16EF8DBBE2D543/REDESIGN-kurssi_TAYNNA",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/F52A30F47C3C7BF9FD16EF8DBBE2D543/Hostlovskursen_REDESIGN_FULLBOKAT",
                "en": "http://www.vuotalo.fi/en/events/event/F52A30F47C3C7BF9FD16EF8DBBE2D543/REDESIGN_Autumn_holiday_course_FULLY_BOOKED"
            },
            "provider": null,
            "short_description": {
                "fi": "Kurssin aikana lapset pääsevät tutustumaan suunnittelijan työhön. Kurssilla piirretään, suunnitellaan, muovataan ja rakennetaan.",
                "sv": "Under kursen får barnen bekanta sig med designerns arbete. På kursen får deltagarna teckna, designa, forma och bygga.",
                "en": "During the course, children will be introduced to the work of a designer. The course will involve drawing, designing, shaping and building."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60297/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60765",
            "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:301/?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:602/?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:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4416,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:34.136776Z",
                    "last_modified_time": "2023-09-07T14:24:34.136797Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736373.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4416/?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:33.985800Z",
            "last_modified_time": "2023-11-14T06:13:23.532817Z",
            "date_published": null,
            "start_time": "2023-10-16T07: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": "Arkkitehtuurikurssi: Unelmien taloja ja huonetiloja | TÄYNNÄ – Syyslomakurssi"
            },
            "description": {
                "fi": "<p>16.–20.10.2023 ma–pe klo 10–13</p><p>Syyslomakurssilla pääset suunnittelemaan ja rakentamaan omia unelmien huoneita ja mielikuvituksellisia taloja käyttäen erilaisia materiaaleja. Samalla tutustut suunnittelun ja arkkitehtuurin peruskäsitteisiin.</p><p>Opettajana TaM, kuvataideopettaja Katja Koponen<br>Hinta: 0 €<br>Ikäsuositus: alakoululaisille<br>Ilmoittaudu mukaan 1.9. alkaen: salla.fornaro@hel.fi tai soita 040 5371520.</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/311EA310FAA2F23BEA716E1A02CB12D6/Arkkitehtuurikurssi_Unelmien_taloja_ja_huonetiloja_TAYNNA"
            },
            "provider": null,
            "short_description": {
                "fi": "16.–20.10.2023 ma–pe klo 10–13"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60765/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60754",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?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:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4415,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:33.730136Z",
                    "last_modified_time": "2023-09-07T14:24:33.730163Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735822.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4415/?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:32.857996Z",
            "last_modified_time": "2023-11-14T06:13:23.453706Z",
            "date_published": null,
            "start_time": "2023-10-16T06:00:00Z",
            "end_time": "2023-10-16T08:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Mitä kuuluu, Chile? – Chile50-näyttelyyn liittyvä taidetyöpaja 7–9-vuotiaille",
                "sv": "Hur är det, Chile? – Konstverkstad för barn i åldern 7–9 år i anslutning till utställningen Chile50",
                "en": "How Are You, Chile? – Art workshop related to the Chile50 exhibition for children aged 7–9"
            },
            "description": {
                "fi": "<p>Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?</p><p>Työpajan sisältö on saanut innoituksensa Club Gabriel Mistral para niños lastenkerhosta. Club Gabriel Mistral oli chileläispakolaisten perustama lastenkerho Suomessa. Sen toiminta sijoittui 70-luvun lopusta 2000-luvun alkuun. Kerhossa yhdessä tekeminen, leikki ja musiikki, toimivat kulttuurin ja espanjan kielen välittäjinä toisen polven chileläisille ja myöhemmin muillekin Latinalaisen Amerikan kulttuurista kiinnostuneille perheille.</p><p>Lasten taidetyöpajassa sukellamme suomalaischileläiseen historiaan ja Suomeen asti kantautuvaan chileläiseen kulttuuriin. Suomalaischileläisten taidekasvattajien johdolla rakennamme oman panhuilun tai run run -hyrrän. Musisoimme yhdessä ja tutustumme Caisassa olevaan Chile50-valokuvanäyttelyyn.</p><p>Ohjaaja: Aino Parada<br>Lisätietoja: teemu.savikurki@hel.fi<br>Kesto: 2,5 h<br>Ikäsuositus: 7–9-vuotiaille<br>Kieli: suomi, tarvittaessa espanja<br>Maksuton<br>Ryhmäkoko: maks. 10 osallistujaa/työpaja<br>Ilmoittautuminen:<br>Maanantai 16.10.2023 klo 9–11.30. Linkki: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tiistai 17.10.2023 klo 9–11.30. Linkki: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>",
                "sv": "<p>Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?</p><p>I konstverkstaden för barn dyker vi ner i den finsk-chilenska historian och den chilenska kulturen som når ända till Finland. Under ledning av finsk-chilenska konstpedagoger bygger vi vår egen panflöjt eller run run-snurra. Vi musicerar tillsammans och bekantar oss med fotoutställningen Chile50 som visas i Caisa.</p><p>Instruktör: Aino Parada<br>Mera info: teemu.savikurki@hel.fi<br>Längd: 2,5 t.<br>Åldersrekommendation: 7–9<br>Språk: finska<br>Kostnadsfri</p><p>Anmälan:<br>Mån. 16.10 kl. 9–11.30: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tis. 17.10 kl. 9–11.30: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>",
                "en": "<p>Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?</p><p>In this children’s art workshop, we will dive into the Finnish-Chilean history and the Chilean culture that reaches all the way to Finland. Under the guidance of Finnish-Chilean art educators, we will build our own panpipes or run run spinning tops. We will play music together and explore the Chile50 photo exhibition at Caisa.</p><p>Instructor: Aino Parada<br>More information: teemu.savikurki@hel.fi<br>Duration: 2.5 h<br>Age recommendation: 7 to 9<br>Language: Finnish</p><p>Registration:<br>Monday 16 October  9–11.30: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tuesday 17 October 9–11.30: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/F6B3C772211B9A79E2E0758A301FE7E0/Mita_kuuluu_Chile_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/F6B3C772211B9A79E2E0758A301FE7E0/Hur_ar_det_Chile_",
                "en": "http://www.caisa.fi/en/events/event/F6B3C772211B9A79E2E0758A301FE7E0/How_Are_You_Chile_"
            },
            "provider": null,
            "short_description": {
                "fi": "Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?",
                "sv": "Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?",
                "en": "Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60754/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60920",
            "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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5168,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:25.588762Z",
                    "last_modified_time": "2023-10-09T13:30:25.588783Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737039.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5168/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:25.410362Z",
            "last_modified_time": "2023-11-14T06:13:23.381958Z",
            "date_published": null,
            "start_time": "2023-10-16",
            "end_time": "2023-10-21",
            "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": "BYGGAA STADII – Syysloma | Toiminnallinen näyttely",
                "sv": "BYGG STADEN! – Höstloven | Aktiverande utställning",
                "en": "BUILD THE CITY! – Autumn holiday | Functional exhibition"
            },
            "description": {
                "fi": "<p>Rakenna oma korttelisi Aallon puista*!</p><p>Leikillinen installaatio, jossa pääset täyttämään tilaa palikoilla.</p><p>Näyttely on osa Käden käänteessä tapahtumaa ja se on avoinna syyslomaviikon.</p><p>Käden käänteessä-tapahtuman järjestävät yhdessä Annantalo ja vapaaehtoisten Äly vapaa -yhteisö.</p><p>Tila: 2. kerroksen eteläisessä lasigalleria<br>Ikäsuositus: kaikenikäisille, lapset alle 8 v. aikuisen kanssa.</p><p>* = Puutavara on saatu lahjoituksena Aalto yliopiston puustudiolta.</p>",
                "sv": "<p>Bygg ditt eget kvarter av träblock donerade av Aalto-universitet!</p><p>En lekfull installation där du kan fylla utrymmet med block.</p><p>Utställningen är en del av evenemanget Käden käänteessä och är öppen under höstlovsveckan.</p><p>Evenemanget Käden käänteessä ordnas gemensamt av Annegården och frivilliggruppen Äly vapaa.</p><p>Åldersrekommendation: för alla äldrar, barn under 8 år med vuxen</p>",
                "en": "<p>Build your own city block from Aalto’s wood!</p><p>This is a playful installation where you can fill space with blocks.</p><p>The exhibition is part of the Käden käänteessä event and is open during the autumn break week.</p><p>The Käden käänteessä event is jointly organised by Annantalo and the Äly vapaa volunteer association.</p><p>Age recommendation: for all ages, children under 8 yo with an adult</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C66EA8B5FC7EA9BF0E73C68CF8D9127A/BYGGAA_STADII",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/C66EA8B5FC7EA9BF0E73C68CF8D9127A/BYGG_STADEN_",
                "en": "http://www.annantalo.fi/en/events/event/C66EA8B5FC7EA9BF0E73C68CF8D9127A/BUILD_THE_CITY_"
            },
            "provider": null,
            "short_description": {
                "fi": "Rakenna oma korttelisi Aallon puista*!",
                "sv": "Bygg ditt eget kvarter av träblock donerade av Aalto-universitet!",
                "en": "Build your own city block from Aalto’s wood!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60920/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}