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

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=714
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 32373,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=715",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=713"
    },
    "data": [
        {
            "id": "espoo_le:agi2bb2zyi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi2bb2zju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi2bb2znm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi2bb2zq4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi2bb2zuq/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-29T12:10:19.541672Z",
            "last_modified_time": "2024-08-29T12:10:19.541701Z",
            "date_published": null,
            "start_time": "2024-09-26T15:00:00Z",
            "end_time": "2024-12-19T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": {
                "fi": "the event is organised by a volunteer  ",
                "en": "the event is organised by a volunteer  "
            },
            "description": {
                "fi": "<p><strong>Hello and welcome to The Wordsmiths English book club!</strong></p><p><br></p><p>Once upon a time, Cicero said that \"A room without books is like a body without a soul\". The purpose of the club is to bring together people who like to read books and talk about them.</p><p><br></p><p>We will follow these rules:</p><p>•\teveryone has a chance to speak</p><p>•\twe stay on the topic</p><p>•\twe, politely, respect diverse viewpoints</p><p><br></p><p>During this year we will meet in Iso Omena public library, meeting room Meri.&nbsp;</p><p><br></p><p>These are the dates: 26.09, 24.10, 21.11 and 19.12.&nbsp;</p><p>The time slot is 18:00 – 19:30.</p><p><br></p>\nThe book for the first session is “Educated” by Tara Westover.<p><br></p><p>the event is organised by a volunteer&nbsp;&nbsp;</p><p><br></p>",
                "en": "<p>Hello and welcome to The Wordsmiths English book club!</p><p><br></p><p>Once upon a time, Cicero said that \"A room without books is like a body without a soul\". The purpose of the club is to bring together people who like to read books and talk about them.</p><p><br></p><p>We will follow these rules:</p><p>•\teveryone has a chance to speak</p><p>•\twe stay on the topic</p><p>•\twe, politely, respect diverse viewpoints</p><p><br></p><p>During this year we will meet in Iso Omena public library, meeting room Meri.&nbsp;</p><p><br></p><p>These are the dates: 26.09, 24.10, 21.11 and 19.12.&nbsp;</p><p>The time slot is 18:00 – 19:30.</p><p><br></p>\nThe book for the first session is “Educated” by Tara Westover.<p><br></p><p>the event is organised by a volunteer&nbsp;&nbsp;</p>"
            },
            "short_description": {
                "fi": " The purpose of the club is to bring together people who like to read books and talk about them.",
                "en": " The purpose of the club is to bring together people who like to read books and talk about them."
            },
            "location_extra_info": {
                "fi": "meetingroom Meri",
                "en": "meetingroom Meri"
            },
            "name": {
                "fi": "The Wordsmiths English book club! - englanninkielinen lukupiiri ",
                "en": "The Wordsmiths English book club!"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi2bb2zyi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64389",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152137,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-19T11:15:15.112954Z",
                    "last_modified_time": "2024-08-19T11:15:15.112972Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757087.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152137/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-08-19T11:15:15.063571Z",
            "last_modified_time": "2024-08-29T10:15:34.373367Z",
            "date_published": null,
            "start_time": "2024-09-07T08:00:00Z",
            "end_time": "2024-09-07T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3A4D21632FD985072D4687F9D2F84E6A/Annantalon_taidelauantai_Onnin_tyopaja",
                "en": "http://www.annantalo.fi/en/events/event/3A4D21632FD985072D4687F9D2F84E6A/Annantalo_Art_Saturday_Onni_s_Workshop"
            },
            "provider": null,
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.</p><p><b>Onnin työpaja</b></p><p>Klo 11 Satuhetki<br>varjokuvatyöpaja avautuu<br>klo 11.30-12 Sanna Pelliccioni taiteilee kävijöistä potrettaja Onni-tyyliin. <br>klo 13-13.30 Sanna Pelliccioni taiteilee kävijöistä potrettaja Onni-tyyliin.</p><p>Työpaja liittyy Sanna Pelliccionin Onni on olla -näyttelyyn, joka on nähtävissä Annantalolla la 7.9. – la 19.10.2024.</p><p>Osallistumiseen ei tarvita ennakkotaitoja eikä täydellistä suomen kielen taitoa. Annantalon taidelauantai on maksuton.<br>Erityistarpeisille lapsille on tarjolla kuulosuojaimia ja muita aistiapuvälineitä. Lisäksi käytössä on erillinen hiljainen tila.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "en": "<p>At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer.</p><p><b>Onni's workshop</b></p><p>Klo 11 a.m. Fairy tale reading<br>shadow picture workshop opens<br>at 11:30-12 a.m. Sanna Pelliccioni will paint portraits of visitors in the Onni style.<br>At 13:00-13:30 p.m. Sanna Pelliccioni will paint portraits of visitors in the Onni style.</p><p>The workshop is linked to Sanna Pelliccioni's exhibition \"Onni on olla\", which can be seen at Annantalo from Sat 7.9. to Sat 19.10.2024.</p><p>No advance skills or registration is required to participate. The Annantalo Art Saturday is free of charge.<br>The language of the workshops varies, Finnish language skills are not required to participate. Hearing protection and other aids are available for children with special needs. In addition, there is a separate quiet space.</p><p>A warm welcome to Annantalo on Saturday!</p>"
            },
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.",
                "en": "At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Annantalon taidelauantai: Onnin työpaja",
                "en": "Annantalo Art Saturday: Onni´s Workshop"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64389/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agivj5egtq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agivj5egxa/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 152115,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-15T06:47:28.191606Z",
                    "last_modified_time": "2024-08-15T06:47:28.191622Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/book-1283865_1920.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Avoin kirja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152115/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-15T06:47:43.227486Z",
            "last_modified_time": "2024-08-29T08:50:59.446537Z",
            "date_published": null,
            "start_time": "2024-09-25T14:30:00Z",
            "end_time": "2024-09-25T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu syyskaudella 2024 seuraavina keskiviikkoina klo 17:30-19:00.</p><p>28.8. Kalajärvi-Sali</p><p>(Brit Bennet – Mikä meidät erottaa, Jari Vainio – Viidakkotohtori.)</p><p>25.9. Apaja - Jamaica Kincaid: Annie John&nbsp;</p><p>23.10. Apaja - Maggie O´Farrell: Hamnet&nbsp;</p><p>20.11. Ahti-sali</p><p>18.12. Ahti-Sali</p><p>&nbsp;</p><p>Tulevien kokoontumisien kirjat valitaan elokuussa</p>",
                "sv": "<p>Kalajärvi biblioteks läsecirkel på finska</p>",
                "en": "<p>Kalajärvi Library Reading Circle in Finnish</p>"
            },
            "short_description": {
                "fi": "Kalajärven kirjaston lukupiiri",
                "sv": "Kalajärvi biblioteks läsecirkel",
                "en": "Kalajärvi Library Reading Circle"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kalajärven kirjaston lukupiiri",
                "sv": "Kalajärvi biblioteks läsecirkel",
                "en": "Kalajärvi Library Reading Circle"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agivj5egtq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64447",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152244,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-29T08:15:27.430149Z",
                    "last_modified_time": "2024-08-29T08:15:27.430169Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757256.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152244/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-29T08:15:27.385751Z",
            "last_modified_time": "2024-08-29T08:15:27.529469Z",
            "date_published": null,
            "start_time": "2024-09-02",
            "end_time": "2024-09-28",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7266914E2C06FC6AA7F56E8576DBDFDA/Eila_Karhu_Kalevalan_myyttisia_hahmoja_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Eila Karhun akryyli- ja öljymaalauksissa Kalevalan myyttisiä hahmoja -näyttely on täydennystä hänen sarjaansa Kalevala-aiheisia maalauksia.</p><p>”Innostuin maalaamaan Kalevalaa, kun Suomi täytti 100 vuotta. Mietin silloin, että olemmeko todella itsenäisiä. Meillä ei ollut enää edes omaa valuuttaa, markkaa”, sanoo <b>Eila Karhu.</b></p><p>”Haluaisin korostaa suomalaisuutta kulttuurin keinoin, jotta emme katoa isojen EU-maiden varjoon. Omaperäistä suomalaisuutta on esimerkiksi Kalevala ja vanha perinteinen runonlaulanta, joka on innoittanut monia taiteilijoita eri taidelajeissa.”</p><p>Eila Karhu on pitänyt vuosien mittaan useita Kalevala-aiheisia maalausnäyttelyitä Helsingissä ja Kymenlaakson kaupungeissa. Hänen Kalevala-maalauksissaan on vaikutteita symbolismista ja art deco -tyylistä.</p><p>Tässä näyttelystä on esillä Karhun uusimmat Kalevala-työt. Hän on aiemmin maalannut aiemmin Kalevalan päähenkilöt sekä useimmat muinaisjumala- ja haltiahahmot. Ne täydentyvät nyt hopeoitaan jakavalla Päivättärellä ja siltaa kutovalla Kuuttarella.</p><p>Eila Karhun voi tavata Kanneltalon kahvilassa 27.9. klo 18–18.30.</p>"
            },
            "short_description": {
                "fi": "Eila Karhun akryyli- ja öljymaalauksissa Kalevalan myyttisiä hahmoja -näyttely on täydennystä hänen sarjaansa Kalevala-aiheisia maalauksia."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Eila Karhu: Kalevalan myyttisiä hahmoja – Haagan Taideseura"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64447/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63831",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151170,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-17T12:12:55.986116Z",
                    "last_modified_time": "2024-05-17T12:12:55.986138Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745430.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151170/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-17T12:12:55.948556Z",
            "last_modified_time": "2024-08-29T08:15:26.239361Z",
            "date_published": null,
            "start_time": "2024-08-31T07:00:00Z",
            "end_time": "2024-08-31T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/EDDDC004FA0705FC44F069C6722C4B8B/Kantsun_kylajuhlat_3_0_Venetsialaiset",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/EDDDC004FA0705FC44F069C6722C4B8B/Kantsun_kylajuhla_3_0_Venetiansk_afton",
                "en": "http://www.kanneltalo.fi/en/events/event/EDDDC004FA0705FC44F069C6722C4B8B/Kannelmaki_Block_Party_3_0_Fete_Venete"
            },
            "provider": null,
            "description": {
                "fi": "<p>Lauantaina 31.8.2024 Kannelmäki muuttuu juhlatilaksi klo 10–20! Sitratorilla, Kanneltalossa ja kirkonpuistossa on tarjolla maksutonta ohjelmaa kaikille kiinnostuneille.</p><p>Tapahtuma järjestetään jo kolmannen kerran. Kyseessä on maksuton matalan kynnyksen kaupunginosafestivaali, johon jokainen asukas pääsee halutessaan vaikuttamaan ja osallistumaan.</p><p>Tavoitteena on tarjota näkemistä ja kokemista kaikille aisteille, tuomalla keskeiselle sijainnille ja kaikkien saataville erilaisia taiteen- ja kaupunkikulttuurin muotoja. Tapahtumalla halutaan lisätä kaupunginosan veto- ja elinvoimaa sekä saada alueen sisällä positiivista liikettä ja mahdollistaa spontaanit hyvänmielen kohtaamiset ihmisten välillä!</p><p>Kannelmäen kyläjuhlat on kannelmäkeläisten ideasta käyntiin lähtenyt tapahtuma, jota luotsaa alueen asukkaista koostuva kyläjuhlatyöryhmä yhdessä alueen toimijoiden kanssa.</p><p><b>OHJELMA:</b></p><p>SITRATORIN LAVA<br>13 avajaispuhe<br>13.10–13.40 Väinö Honkanen ja Valtio<br>14.00–14.30 Kytät<br>15.00–15.30 Päistikka<br>15.50–16.20 Mummin Kullat<br>16.50–17.20 Sirpa<br>17.50–18.20 Kantsun nuta presents: Joku Random Trio<br>18.40–19.10 No Moderation<br>19.30–20.15 Asa</p><p>SITRATORI<br>14–16 D-asema Kannelmäen Naamio-työpaja Sitratorin viherpysäkillä. Max. 4 osallistujaa kerrallaan.<br>Työpaja on osa Kannelmäen alueella syksyllä 2024 alkavaa Toivotut tulevaisuudet-yhteisötaidehanketta. Työpajan vetää nukke- ja naamioteatteritaitelija Milla Risku.</p><p>KANNELTALO & KAHVILAN STAGE<br>12–13 Kirjailijavieras Taina Latvalan haastattelu, haastattelijana Tuulikki Kuurne. Haastattelun aiheena on teos Venetsialaiset (2018) ja kirjailijan työ.<br>14.30–15 Jousikvartetti Meliora</p><p>KIRJASTO<br>Kirjaston Nallen satutuokiot klo 13–13.30 ja 14-14.30 monitoimitila Tempossa. Mitä Nalle tekee syksyllä, tule kuuntelemaan!</p><p>Leena Sainion Kiko! -lastenkirjaesittelyt klo 13.30 ja 14.30 monitoimitila Tempossa.</p><p>Kirjojen Kannelmäki -kirjakävely klo 14–16, lähtö klo 14 Kanneltalon portailta. Miten Kantsua on kuvattu kirjallisuudessa? Tule parin tunnin kävelylle joenrantaan ja Kantsun hoodeille. Mukana on myös yllätyskirjailijoita.</p><p>Kunnon kaveri -kehonhuolto klo 15.15–15.45 monitoimitila Tempossa. <br>Vetäjä Anne Luhtala. Sopii erityisesti senioreille ja istumatyöläisille. Keskitytään erityisesti hartiaseutuun ja alaselkään. Harjoitteet tehdään seisten ja tuolia apuna käyttäen, erityisiä varusteita ei tarvita.</p><p>KANNELTALON GALLERIA <br>Dario Cabello: Metamorphosis – Assemblaaseja<br>Näyttelyn teokset on koottu toisten hylkäämistä esineistä, joissa Dario näkee rujoa kauneutta ja antaa näin uuden elämän vanhalle roinalle. Lämpimästi tervetuloa Kanneltalon galleriaan seuraamaan Darion näytöstyöpajaa näyttelyn viimeisenä aukiolopäivänä lauantaina 31.8. klo 14–16. Näytöspajan kielet: suomi, englanti, espanja.</p><p>KANNELMÄEN NUORISOTALO<br>13–19<br>Nuorisotalo toivottaa huoltajat tervetulleiksi tutustumaan nuorisotalon toimintaan! Luvassa myös tutustumista harrastusvalikoimaan.</p><p>KIRKONPUISTO<br>10–14 <br>Vilttikirppis. HUOM! Vain rajatulla alueella, odota ohjeistusta minne saat jäädä kirppistelemään. Ohjeistukset omassa facebook- tapahtumassa.<br>10–12<br>- MLL Kannelmäen paikallisyhdistyksen kahvio ja heppa-ajelua<br>- Kannelmäen seurakunta jakaa kasviskeittoa klo 11–12<br>- Partiolippukunta Susiveikot<br>- Kannelmäen voimistelijoiden temppurata</p><p>Vapaa pääsy</p><p>Paikat: Sitratori, Kanneltalon aula, Kannelmäen kirjasto, Kannelmäen nuorisotalo, Kirkonpuisto</p>",
                "sv": "<p>Lördag 31.8.2024 förvandlas Gamlas till en festlokal kl. 10–20! Avgiftsfritt program erbjuds för alla intresserade på Cittertorget, i Gamlasgården och i kyrkoparken.</p><p>Evenemanget ordnas redan för tredje gången. Det är fråga om en avgiftsfri stadsdelsfestival med låg tröskel som alla invånare kan påverka och delta i om de önskar.</p><p>Målet är att erbjuda något att se och uppleva för alla sinnen genom att hämta olika former av konst- och stadskultur till ett centralt läge och tillgängligt för alla. Genom evenemanget önskar man öka stadsdelens dragnings- och livskraft och få i stånd positiv rörelse inom området samt möjliggöra spontana och angenäma möten mellan människor!</p><p>Byfesten i Gamlas är ett evenemang som gamlasborna har kommit på, och som leds av en arbetsgrupp bestående av invånare i området i samarbete med aktörer i området.</p><p><b>PROGRAM:</b></p><p>CITTERTORGETS SCEN<br>13 öppningstal<br>13.10–13.40 Väinö Honkanen ja Valtio<br>14.00–14.30 Kytät<br>15.00–15.30 Päistikka<br>15.50–16.20 Mummin Kullat<br>16.50–17.20 Sirpa<br>17.50–18.20 Kantsun nuta presents: Joku Random Trio<br>18.40–19.10 No Moderation<br>19.30–20.15 Asa</p><p>GAMLASGÅRDEN & CAFÉSCENEN<br>12–13 Intervju med författargästen Taina Latvala, intervjuas av Tuulikki Kuurne. Tema för intervjun är boken Venetsialaiset (2018) och författarens arbete.</p><p>14.30–15 Stråkkvartetten Meliora</p><p>BIBLIOTEKET<br>Biblioteksnallens sagostunder kl. 13–13.30 och 14–14.30 i allaktivitetslokalen Tempo. Vad gör Nalle på hösten? Kom och lyssna!<br>Bokvandringen Böckernas Gamlas kl. 14–16, start kl. 14 på Gamlasgårdens trappa. Hur har Gamlas beskrivits i litteraturen? Kom med på en ett par timmar lång promenad längs åstranden och fram till Gamlas hoods. Överraskningsförfattare deltar också.</p><p>GAMLASGÅRDENS GALLERI <br>Dario Cabello: Metamorphosis – Assemblage<br>Verken i utställningen är sammansatta av föremål som andra har övergett. Dario ser en vanställd skönhet i dessa föremål och ger nytt liv åt gammalt skräp. Varmt välkommen till Gamlasgårdens galleri för att följa Darios utställningsverkstad på den sista utställningsdagen lördagen den 31 augusti kl. 14–16.</p><p>KYRKPARKEN<br>10–14 Filtloppis. OBS! Bara på ett begränsat område, vänta på anvisningar om var du kan loppa. Anvisningar finns i facebookevenemanget.</p><p>10–12 MLL Kannelmäen paikallisyhdistys ordnar kafé<br>Fritt inträde</p><p>Plats: Cittertorget, Gamlasgårdens entréhall, Kyrkparken</p>",
                "en": "<p>On Saturday, 31 August 2024, Kannelmäki transforms into a party space during 10 am – 8 pm! Sitratori, Kanneltalo and the church park all provide free-of-charge events for everyone who’s interested.</p><p>This is the third run of the event. This is a free-of-charge, easy-to-join block party, which every resident can join and has a say in, if they so desire.</p><p>Its goal is to provide things to see and experience all forms of art and city culture for all senses at a central location, available for everyone. This event is intended to improve the district's attractiveness and vitality, as well as create positive movements and enable spontaneous feel-good encounters between people!</p><p>The Kannelmäki Block Party is an event that was borne out of a local resident’s idea that is guided by the block party committee that consists of local residents and local businesses.</p><p><b>PROGRAMME:</b></p><p>SITRATORI STAGE<br>13 inaugural address<br>13.10–13.40 Väinö Honkanen ja Valtio<br>14:00–14:30 Kytät<br>15.00–15.30 Päistikka<br>15.50–16.20 Mummin Kullat<br>16.50–17.20 Sirpa<br>17.50–18.20 Kannelmäki Youth Centre presents: Joku Random Trio<br>18.40–19.10 No Moderation<br>19.30–20.15 Asa</p><p>KANNELTALO & CAFE STAGE<br>12–13 Interview with guest author Taina Latvala, interviewed by Tuulikki Kuurne. The subject of the interview is the book The Venetians (Venetians, 2018) and the author's work.<br>14.30–15 String Quartet Meliora</p><p>LIBRARY<br>The library’s Nalle mascot’s fairytale sessions will be held at 13–13.30 and 14–14:30 in the Tempo multi-purpose office. Come and listen to hear what Nalle is doing in the fall!</p><p>The Literary Kannelmäki bookwalk will be held at 14–16, departing at 14 from the steps of Kanneltalo. How has Kannelmäki been described in literature? Come for a few hours’ walk along the riverbank and to the Kannelmäki area. Authors will also be participating as surprise guests.</p><p>KANNELTALO GALLERY <br>Dario Cabello: Metamorphosis – Assemblages<br>The works in the exhibition have been created from objects that others have abandoned, in which Dario sees a bleak beauty, thus giving new life to old things. We warmly welcome you to the Kanneltalo gallery to follow Dario's exhibition workshop on the last opening day of the exhibition on Saturday 31 August at 14–16.</p><p>CHURCH PARK<br>10–14 Flea market. PLEASE NOTE: Only in a limited area, wait for instructions on where to sit. Instructions in a separate Facebook event.</p><p>10–12 MLL Kannelmäki Local Association Café</p><p>Free of charge<br>Locations: Sitratori, Kanneltalo lobby, Kirkonpuisto Park</p>"
            },
            "short_description": {
                "fi": "Lauantaina 31.8.2024 Kannelmäki muuttuu juhlatilaksi klo 10–20! Sitratorilla, Kanneltalossa ja kirkonpuistossa on tarjolla maksutonta ohjelmaa kaikille kiinnostuneille.",
                "sv": "Lördag 31.8.2024 förvandlas Gamlas till en festlokal kl. 10–20! Avgiftsfritt program erbjuds för alla intresserade på Cittertorget, i Gamlasgården och i kyrkoparken.",
                "en": "On Saturday, 31 August 2024, Kannelmäki transforms into a party space during 10 am – 8 pm! Sitratori, Kanneltalo and the church park all provide free-of-charge events for everyone who’s interested."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kantsun kyläjuhlat 3.0 – Venetsialaiset – Esiintymässä mm. Asa, Päistikka ja kytät",
                "sv": "Kantsun kyläjuhla 3.0 – Venetiansk afton",
                "en": "Kannelmäki Block Party 3.0 – Fete Venete"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63831/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61958",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/18204046"
                    },
                    "price": {
                        "fi": "38,50 € earlybird 31.1. asti. 48,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7331,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-23T12:14:41.448879Z",
                    "last_modified_time": "2024-02-06T13:23:44.871308Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744165.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7331/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-23T12:14:41.412696Z",
            "last_modified_time": "2024-08-29T05:13:41.528670Z",
            "date_published": null,
            "start_time": "2024-11-20T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6D48D06F6C97B9649B746F4A9D58E37F/PERUTTU_Retrojengi_"
            },
            "provider": {
                "fi": "Central Line Entertainment Oy"
            },
            "description": {
                "fi": "<p>Konsertti on valitettavasti peruttu tapahtumanjärjestäjän päätöksellä. Ostetut liput voi palauttaa osoitteessa https://web.lippu.fi/palautus 15.12.2024 mennessä.</p><p>Katso lisätiedot: https://centralline.fi/</p><p>Retrojengi tien päälle! – Danny, Frederik & Erkki Liikanen keikkailevat nyt kimpassa!</p><p>Sana retro määritellään aiempien vuosikymmenten tyyliksi, muodiksi tai – kuten tässä tapauksessa musiikiksi, jota sovelletaan uudelleen nykyaikana. Kyse on siis tietynlaisesta nostalgiasta eli menneitten aikojen muistelusta, ikävöinnistä, kaihosta ja haikeudesta. <br> <br>Kun menetyksellinen ura suomalaisen pop- ja iskelmämusiikin ykkösjoukoissa on alkanut jo 1960-luvulla eli kuutisenkymmentä vuotta sitten kuten Dannyllä, Frederikillä ja Erkki Liikasella niin voidaan suurella kunnioituksella ja arvostuksella todeta nyt tien päälle yhdessä lähtevän trion olevan retrojengin eliittiä.<br> <br>Ja kaikkien suomalaisen pop- ja iskelmämusiikin ystävien iloksi Retrojengin keikoilla kuullaan tuttuja, lämpimiä muistoja herättäviä hittejä vuosien varrelta.<br> <br>Retrojengiä säestää pitkän linjan ammattimuusikoista koostuva sixties-bändi Goldies. Yhtyeen solisti ja komppikitaristi Curre Andersén aloitti soittohommat jo 1960-luvun alussa yhtyeessä The Nameless. Basisti Masa Saari on soittanut vuosien varrella useassa eri kokoonpanossa, joista nimekkäimpänä ehkä Pohjois-Suomen ylpeys Battaglia. Rumpali Hate Sjöblom ja kitaristi Kimi Engström muistetaan muun muassa The Ronski Gangistä. Sovittajan tonttia ja soittamista hoitaa Petri Kokko. Goldies on suosittujen Back To The Sixties -tapahtumien vakioesiintyjä.</p><p>Kesto n. 2,5 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>"
            },
            "short_description": {
                "fi": "Konsertti on valitettavasti peruttu tapahtumanjärjestäjän päätöksellä. Ostetut liput voi palauttaa osoitteessa https://web.lippu.fi/palautus 15.12.2024 mennessä."
            },
            "location_extra_info": null,
            "name": {
                "fi": "PERUTTU: Retrojengi – Danny, Frederik, Erkki Liikanen"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61958/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63316",
            "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:348/?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/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/gasthaus-orkesteri-malmitalo-18621894/",
                        "sv": "https://www.lippu.fi/event/gasthaus-orkesteri-malmitalo-18621894/",
                        "en": "https://www.lippu.fi/event/gasthaus-orkesteri-malmitalo-18621894/"
                    },
                    "price": {
                        "fi": "24,50 € / 19,50 €",
                        "sv": "24,50 € / 19,50 €",
                        "en": "24,50 € / 19,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151878,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T15:15:02.759347Z",
                    "last_modified_time": "2024-07-25T15:15:02.759366Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748962.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151878/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T15:15:02.717731Z",
            "last_modified_time": "2024-08-29T05:13:35.613882Z",
            "date_published": null,
            "start_time": "2024-10-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5220ADBEB85AC177799AFB99A908E73B/Gasthaus_Orkesteri",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5220ADBEB85AC177799AFB99A908E73B/Gasthaus_Orkester",
                "en": "http://www.malmitalo.fi/en/events/event/5220ADBEB85AC177799AFB99A908E73B/Gasthaus_Orchestra"
            },
            "provider": null,
            "description": {
                "fi": "<p>Samaan aikaan kaunista ja outoa – Gasthaus Orkesteri on täydellinen soundtrack valon ja pimeyden välillä kulkeville uneksijoille.</p><p>Kahdeksanhenkinen yhtye on tehnyt hurmioituneita keikkoja Twin Peaksin jalanjäljissä ja vakiinnuttanut asemansa Angelo Badalamentin selittämättömän musiikin tulkitsijana.</p><p>Nyt on aika rikkoa raiteet: Gasthaus Orkesteri tuo mukanaan uuden suunnan omaleimaiselle, elokuvalliselle tyylilleen, unohtamatta kuitenkaan juuriaan. Gasthaus Orkesteri sukeltaa yöhön ja salaisuuksiin, laulaa ja raastaa, repäisee riehuvat sydämet paikalleen. Luvassa on uusia omia kappaleita ja sopivasti vanhaa.</p>",
                "sv": "<p>Vackert och märkligt på samma gång – Gasthaus Orkesteri är det perfekta soundtracket för drömmare som vandrar mellan ljuset och mörkret.</p><p>Åttamannabandet har gjort extatiska spelningar i Twin Peaks fotspår, och etablerat sin ställning som tolkare av Angelo Badalamentis oförklarliga musik.</p><p>Nu är det dags att byta spår: Gasthaus Orkesteri för med sig en ny riktning i sin särpräglade, filmatiska stil, dock utan att glömma sina rötter. Gasthaus Orchestra dyker ner i natten och hemligheterna, sjunger och sliter, river vilda hjärtan på plats. Nya originallåtar och en lämplig mängd gamla låtar utlovas.</p>",
                "en": "<p>Beautiful and strange at the same time – Gasthaus Orchestra is the perfect soundtrack for dreamers wandering between light and darkness.</p><p>The eight-piece band has played enchanting gigs in the footsteps of Twin Peaks and established themselves as interpreters of Angelo Badalamenti's inexplicable music.</p><p>Now, it’s time for a new path: The Gasthaus Orchestra introduces a new direction to its distinctive, cinematic style, without forgetting its roots. The Gasthaus Orchestra dives headfirst into the night and the secrets, sings and tears, tears the raging hearts into place. Their set includes a nice mix of new and old material.</p>"
            },
            "short_description": {
                "fi": "Samaan aikaan kaunista ja outoa – Gasthaus Orkesteri on täydellinen soundtrack valon ja pimeyden välillä kulkeville uneksijoille.",
                "sv": "Vackert och märkligt på samma gång – Gasthaus Orkesteri är det perfekta soundtracket för drömmare som vandrar mellan ljuset och mörkret.",
                "en": "Beautiful and strange at the same time – Gasthaus Orchestra is the perfect soundtrack for dreamers wandering between light and darkness."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Gasthaus Orkesteri",
                "sv": "Gasthaus Orkester",
                "en": "Gasthaus Orchestra"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63316/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64441",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-115/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152203,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-23T12:13:30.066369Z",
                    "last_modified_time": "2024-08-23T12:13:30.066393Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757174.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152203/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-08-23T12:13:30.056812Z",
            "last_modified_time": "2024-08-29T05:13:35.508886Z",
            "date_published": null,
            "start_time": "2024-10-19T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/32C7FAC5427B745DC521A894C54E03E2/Lasten_inklusiivinen_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/32C7FAC5427B745DC521A894C54E03E2/Inkluderande_danslektion_for_barn",
                "en": "http://www.annantalo.fi/en/events/event/32C7FAC5427B745DC521A894C54E03E2/Children_s_Inclusive_Dance_Class_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen.</p><p>Ohjauskielet: suomi/englanti<br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Tila: Tanssiluokka</p><p>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi</p>",
                "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.  Fri entré, förhandsanmälning.</p><p>Antal deltagare: max 18 (barn och vuxna tillsammans)<br>Lokal: Dansklassrummet<br>Undervisningsspråk: Finska, engelska</p><p>Anmäl dig på förhand via e-post: info@kaaoscompany.fi</p>",
                "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability.</p><p>The lesson lasts one hour. <br>The space is accessible. <br>The lessons are free.</p><p>Languages: Finnish and English<br>Number of participants: max 18 (children and adults together)</p><p>Register in advance by email: info@kaaoscompany.fi</p>"
            },
            "short_description": {
                "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.",
                "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lasten inklusiivinen tanssitunti",
                "sv": "Inkluderande danslektion för barn",
                "en": "Children’s Inclusive Dance Class"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64441/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64315",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805296/",
                        "sv": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805296/",
                        "en": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805296/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151962,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T09:13:56.802408Z",
                    "last_modified_time": "2024-07-30T09:13:56.802421Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751577.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-30T09:13:56.787731Z",
            "last_modified_time": "2024-08-29T05:13:35.453217Z",
            "date_published": null,
            "start_time": "2024-10-19T10:00:00Z",
            "end_time": "2024-10-19T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/CDE9DBCF2EC1B05346795CF8D9FBED4C/Back_2_The_Future",
                "sv": "http://www.caisa.fi/sv/evenemang/event/CDE9DBCF2EC1B05346795CF8D9FBED4C/Back_2_The_Future",
                "en": "http://www.caisa.fi/en/events/event/CDE9DBCF2EC1B05346795CF8D9FBED4C/Back_2_The_Future"
            },
            "provider": null,
            "description": {
                "fi": "<p>Back 2 The Future -konsertti käy läpi samplepohjaisen musiikin historian soul- ja funk-musiikin kultakaudesta hip hopin ja housen kautta elektroniseen rytmimusiikkiin.</p><p>Back 2 The Future -konsertissa matka alkaa 70-luvun New Yorkista ja päättyy 80-luvun Chicagon ja vuosituhannen vaihteen Pariisin kautta tulevaisuuteen! Tässä musiikin, tanssin, laulun, tarinankerronnan, rapin ja improvisoinnin (eli freestylen) hulluttelussa yleisö pääsee osallistumaan konsertin ja hyppimään rytmin tahtiin.</p><p>Konsertissa esiintyy ryhmä palkittuja, monissa liemissä keitettyjä esiintyjiä, tanssin ja musiikin huippunimiä Suomessa sekä pitkän linjan hiphop-pedagogeja, joten yleisö on varmasti turvallisissa ja osaavissa käsissä.</p><p>Simeoni Juoperi – tanssi, rap <br>Elias Niskanen – tanssi, esitystaide<br>Linda Ilves – laulu, tanssi, looper<br>Joose Kyyrö – saksofoni <br>Arttu Rintakumpu – sampleri, levysoittimet, tanssi, rap</p><p>Kesto: 45 min<br>Ikä: kaiken ikäisille<br>Kieli: englanti, suomi</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa. Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p>",
                "sv": "<p>Konserten Back 2 The Future skildrar den samplingsbaserade musikens historia från soul- och funkmusikens guldålder via hiphop och house till elektronisk rytmmusik.</p><p>Resan börjar i New York på 70-talet och går via 80-talets Chicago och millennieskiftets Paris och slutar i framtiden!</p><p>I denna galna blandning av musik, dans, sång, historieberättande, rap och improvisation (det vill säga freestyle) får publiken delta i konserten och hoppa i takt till rytmen.</p><p>På konserten framträder en grupp prisbelönta och mycket erfarna artister, toppnamn inom den finländska dansen och musiken och erfarna hiphop-pedagoger. Därmed är publiken är i trygga och skickliga händer.</p><p>Simeoni Juoperi – dans, rap <br>Elias Niskanen – dans, scenkonst<br>Linda Ilves – sång, dans, looper<br>Joose Kyyrö – saxofon <br>Arttu Rintakumpu – sampler, skivspelare, dans, rap</p><p>Längd: 45 min.<br>Ålder: alla åldrar<br>Språk: engelska, finska</p><p>Global Club Nights har producerats genom samarbete mellan Sibelius-Akademins avdelning för global musik och kulturcentret Caisa. Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans. Klubbarna strävar efter att skapa en trygg, inkluderande och kreativ miljö. Genom livemusik, radioprogram, seminarier och workshoppar har evenemangen som mål att bygga broar mellan alla musikälskare och deras gemenskaper.</p>",
                "en": "<p>The concert goes through the history of sample-based music from the golden age of soul and funk music through hip hop and house to electronic rhythm music.</p><p>The journey starts in New York of the 70s and ends in the future through Chicago of the 80s and Paris at the turn of the millennium!</p><p>In this madhouse of live music, dancing, singing, storytelling, rapping and improvisation (i.e. freestyle), the audience gets to participate in the course of the concert and jump to the beat.</p><p>The group consists of award-winning performers cooked in many broths, top names in dance and music in Finland and long-time hip-hop pedagogues, so the audience is certainly in safe and competent hands.</p><p>Simeoni Juoperi – dance, rap <br>Elias Niskanen – dance, performance art<br>Linda Ilves – song, dance, looper<br>Joose Kyyrö – saxophone <br>Arttu Rintakumpu – sampler, turntables, dance, rap</p><p>Duration: 45 min<br>Age: For all ages<br>Language: English, Finnish</p>"
            },
            "short_description": {
                "fi": "Back 2 The Future -konsertti käy läpi samplepohjaisen musiikin historian soul- ja funk-musiikin kultakaudesta hip hopin ja housen kautta elektroniseen rytmimusiikkiin.",
                "sv": "Konserten Back 2 The Future skildrar den samplingsbaserade musikens historia från soul- och funkmusikens guldålder via hiphop och house till elektronisk rytmmusik.",
                "en": "The concert goes through the history of sample-based music from the golden age of soul and funk music through hip hop and house to electronic rhythm music."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Back 2 The Future – Global Club lapsille",
                "sv": "Back 2 The Future – Global Club för barn",
                "en": "Back 2 The Future – Global Club for kids – Family Concert"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64315/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64375",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152078,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-12T13:14:43.128498Z",
                    "last_modified_time": "2024-08-12T13:14:43.128517Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756002.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152078/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-08-12T13:14:43.105728Z",
            "last_modified_time": "2024-08-29T05:13:35.253138Z",
            "date_published": null,
            "start_time": "2024-10-18T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/86044483E0E2393847198555165DEA27/Kipina_x_Stoa"
            },
            "provider": null,
            "description": {
                "fi": "<p>Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa syksyllä 2024!</p><p>Lavalle nousevat mm. Helsinki Unity Musicin artistit ja muut Kipinän toimijat. Kipinä x Stoa -tapahtumien sisällöt ja aikataulut tarkentuvat myöhemmin.</p><p>Tsekkaa ajankohtaisin tieto Nuorten toimintatalo Kipinän Instagramissa @kipina_official sekä nettisivuilta https://nuorten.hel.fi/nuorisotalot/nuorten-toimintatalo-kipina-itakeskus/</p>"
            },
            "short_description": {
                "fi": "Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa syksyllä 2024!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kipinä x Stoa"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64375/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64331",
            "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: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/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151996,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T16:15:56.223911Z",
                    "last_modified_time": "2024-07-30T16:15:56.223932Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751771.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151996/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-30T16:15:56.196369Z",
            "last_modified_time": "2024-08-29T05:13:35.145057Z",
            "date_published": null,
            "start_time": "2024-10-18T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5BE8C127A68FFB88C13C205CE32EF6D7/Satukino_Kaunotar_ja_Kulkuri_S_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/5BE8C127A68FFB88C13C205CE32EF6D7/Satukino_Lady_och_Lufsen_S_",
                "en": "http://www.annantalo.fi/en/events/event/5BE8C127A68FFB88C13C205CE32EF6D7/Fairy_tale_theatre_Satukino_Beauty_and_the_Tramp_S_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Klassikkoelokuvia kahvilatilassa! Syyslomaviikon elokuvateatteri Satukino siirtyy loppuviikosta Annantalon kahvilatilaan, jossa katsotaan perjantaina elokuva Kaunotar ja Kulkuri (1955).</p><p>Kaunotar ja Kulkuri on Disney-animaatioelokuva, joka kertoo rakastetun tarinan ylhäisestä Belle-koirasta ja Kulkurista, hurmaavasta, vapaasta kulkukoirasta. Eräänä päivänä itsensä ulkopuoliseksi tunteva Belle tapaa Kulkurin, joka auttaa häntä pakenemaan kaupungin kurjuutta ja tylsyyttä.</p><p>Kaunotar ja Kulkuri on klassikkoelokuva, joka on lumonnut katsojiaan vuosikymmenten ajan tarinallaan rakkaudesta, seikkailuista ja elämän pienistä iloista. Elokuvassa korostetaan ennakkoluulojen voittamista ja erilaisten maailmojen yhdistämistä. Se jättää katsojan miettimään, miten pienet hetket voivat muuttaa elämän suunnan.</p><p>Hahmot puhuvat suomea. Tekstitys englanniksi. Kaikenikäisille</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Tulethan kuitenkin hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuvaan mahtuu noin 50 katsojaa.</p><p>Elokuvan kesto: 76 min<br>Ikäsuositus: S<br>Kieli: Suomi, englanti</p>",
                "sv": "<p>Filmklassiker i caféutrymmet! I slutet av höstlovsveckan flyttar Satukino till Annegårdens caféutrymme, där filmen Lady och Lufsen (1955) visas på fredag.</p><p>Lady och Lufsen är en animerad Disney-film som berättar den älskade historien om den ädla hunden Lady och den charmiga herrelösa hunden Lufsen. Lady, som ofta känner sig utanför, träffar en dag Lufsen som hjälper henne att fly stadens elände och tristess.</p><p>Lady och Lufsen är en filmklassiker som har fängslat publiken i årtionden med sin berättelse om kärlek, äventyr och livets små nöjen. Filmen betonar vikten av att övervinna fördomar och föra samman olika världar. Åskådarna får begrunda hur livets riktning kan förändras av små ögonblick.</p><p>Karaktärerna talar finska. Textning på engelska. För alla åldrar</p><p>Fritt inträde, ingen förhandsanmälan. Kom på plats i god tid, vi tar in publiken i ankomstordning. Det finns plats för cirka 70 personer att se filmerna.</p><p>Filmens längd: 76 minuter<br>Åldersrekommendation: S<br>Språk: Finska, engelska</p>",
                "en": "<p>Classic movies at the café! Later in during the autumn holiday week, Satukino will move to the café area at Annantalo, where the Disney film Beauty and the Tramp (1955) will be screened on Friday.</p><p>Beauty and the Tramp is a Disney animated film that tells the beloved story of the noble dog, Belle, and the Tramp, a charming, free-spirited stray. One day, feeling like an outsider, Belle meets Tramp, who helps her escape the misery and boredom of the city.</p><p>Beauty and the Tramp is a classic film that has enchanted its viewers for decades with its story about love, adventure and the little joys of life. The film focuses on overcoming prejudices and connecting different worlds. It leaves the viewer wondering how small moments can change the direction your life.</p><p>The characters speak Finnish. English subtitles. For all ages</p><p>Free admission, no advance registration. Please arrive on time as entry is on a first-come, first-served basis. The cinema can accommodate 70 spectators.</p><p>Movie duration: 76min<br>Age recommendation: All ages<br>Language: Finnish, English</p>"
            },
            "short_description": {
                "fi": "Klassikkoelokuvia kahvilatilassa! Syyslomaviikon elokuvateatteri Satukino siirtyy loppuviikosta Annantalon kahvilatilaan, jossa katsotaan perjantaina elokuva Kaunotar ja Kulkuri (1955).",
                "sv": "Filmklassiker i caféutrymmet! I slutet av höstlovsveckan flyttar Satukino till Annegårdens caféutrymme, där filmen Lady och Lufsen (1955) visas på fredag.",
                "en": "Classic movies at the café! Later in during the autumn holiday week, Satukino will move to the café area at Annantalo, where the Disney film Beauty and the Tramp (1955) will be screened on Friday."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Satukino | Kaunotar ja Kulkuri (S) – Satumainen syysloma",
                "sv": "Satukino | Lady och Lufsen (S) – Ett sagolikt höstlov",
                "en": "Fairy tale theatre Satukino | Beauty and the Tramp (S) – Fabulous autumn holiday"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64331/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64252",
            "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: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: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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubi-ilta-the-mystery-wires-markku-veijalainen-vuotalo-18901386/",
                        "sv": "https://www.lippu.fi/event/klubi-ilta-the-mystery-wires-markku-veijalainen-vuotalo-18901386/",
                        "en": "https://www.lippu.fi/event/klubi-ilta-the-mystery-wires-markku-veijalainen-vuotalo-18901386/"
                    },
                    "price": {
                        "fi": "28,90 €",
                        "sv": "28,90 €",
                        "en": "28,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151821,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T14:14:55.810653Z",
                    "last_modified_time": "2024-07-24T14:14:55.810667Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749380.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151821/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-24T14:14:55.784114Z",
            "last_modified_time": "2024-08-29T05:13:34.918906Z",
            "date_published": null,
            "start_time": "2024-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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9B2C4620289C189FF001019915EC4BC2/Mystery_Wires_-konsertti",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/9B2C4620289C189FF001019915EC4BC2/Mystery_Wires-konsert",
                "en": "http://www.vuotalo.fi/en/events/event/9B2C4620289C189FF001019915EC4BC2/Mystery_Wires_Concert"
            },
            "provider": null,
            "description": {
                "fi": "<p>Illan juontaja Mape vie yleisön 1960-luvun nuorisomusiikin tunnelmiin yhdessä Back To The Sixties -legendojen kanssa.</p><p>Luvassa rautalankaklassikoita ja nuorisoelokuvamusiikkia Cliff & The Shadows -tyyliin.</p><p>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. <br>Alle 18 v. aikuisen seurassa.<br>Sali avautuu klo 17.30.<br>Kesto: 2 t</p>",
                "sv": "<p>Kvällens konferencier Mape tar med publiken till 1960-talets ungdomsmusikscen tillsammans med Back To The Sixties-legender.</p><p>Ståltrådsklassiker och musik från ungdomsfilmer i Cliff & The Shadows-stil utlovas.</p><p>Klubbkväll: Café Pokkari svarar för serveringen, A-rättigheter. <br>Under 18-åringar i sällskap av en vuxen.<br>Salen öppnar kl. 17.30.<br>Längd: 2 h</p>",
                "en": "<p>Mape, the host of the evening, takes audiences into the mood of 1960s youth music along with Back To The Sixties legends.</p><p>Rautalanka classics and youth movie music in the style of Cliff & The Shadows.</p><p>Club night: Café Pokkari with full alcohol service. <br>Minors must be accompanied by an adult.<br>The hall opens at 5:30 pm.<br>Duration: 2 hours</p>"
            },
            "short_description": {
                "fi": "Illan juontaja Mape vie yleisön 1960-luvun nuorisomusiikin tunnelmiin yhdessä Back To The Sixties -legendojen kanssa.",
                "sv": "Kvällens konferencier Mape tar med publiken till 1960-talets ungdomsmusikscen tillsammans med Back To The Sixties-legender.",
                "en": "Mape, the host of the evening, takes audiences into the mood of 1960s youth music along with Back To The Sixties legends."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Mystery Wires -konsertti",
                "sv": "Mystery Wires-konsert",
                "en": "Mystery Wires Concert"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64252/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64330",
            "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: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/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151995,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T16:15:55.679342Z",
                    "last_modified_time": "2024-07-30T16:15:55.679361Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751769.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151995/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-30T16:15:55.651565Z",
            "last_modified_time": "2024-08-29T05:13:34.789979Z",
            "date_published": null,
            "start_time": "2024-10-17T10:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/63D1455C84F568DB3061E96DC3951D3F/Satukino_Robin_Hood_S_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/63D1455C84F568DB3061E96DC3951D3F/Satukino_Robin_Hood_S_",
                "en": "http://www.annantalo.fi/en/events/event/63D1455C84F568DB3061E96DC3951D3F/Fairy_tale_theatre_Satukino_Robin_Hood_S_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Klassikkoelokuvia kahvilatilassa! Syyslomaviikon elokuvateatteri Satukino siirtyy loppuviikosta Annantalon kahvilatilaan, jossa katsotaan torstaina Disney-elokuva Robin Hood (1973).</p><p>Robin Hood on oikeudenmukaisuuden puolestapuhuja ja kansan sankari, joka ottaa rikkailta ja antaa köyhille. Tässä rakastetussa klassikossa Robin Hoodin legendaariset seikkailut heräävät henkiin, kun Robin, Pikku-John ja Munkki Tuck aiheuttavat päänvaivaa ahneelle prinssi Juhanalle ja Nottinghamin sheriffille. Kyseessä on riemastuttava ja jännittävä koko perheen elokuvaelämys!</p><p>Hahmot puhuvat suomea. Tekstitys englanniksi. Kaikenikäisille.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Tulethan kuitenkin hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuvaan mahtuu noin 50 katsojaa.</p><p>Elokuvan kesto: 79 min<br>Ikäsuositus: S<br>Kieli: Suomi, englanti</p>",
                "sv": "<p>Filmklassiker i caféutrymmet! I slutet av höstlovsveckan flyttar Satukino till Annegårdens caféutrymme, där Disney-filmen Robin Hood (1973) visas på torsdag.</p><p>Robin Hood är en rättvisans förkämpe och folkhjälte som tar från de rika och ger till de fattiga. I denna älskade klassiker vaknar Robin Hoods legendariska äventyr till liv när Robin, Lille John och Broder Tuck orsakar den girige prins John och sheriffen av Nottingham huvudbry. Det är en sprittande rolig och spännande filmupplevelse för hela familjen!</p><p>Karaktärerna talar finska. Textning på engelska. För alla åldrar.</p><p>Fritt inträde, ingen förhandsanmälan. Kom på plats i god tid, vi tar in publiken i ankomstordning. Det finns plats för cirka 70 personer att se filmerna.</p><p>Filmens längd: 79 minuter<br>Åldersrekommendation: S<br>Språk: Finska, engelska</p>",
                "en": "<p>Classic movies at the café! Later in during the autumn holiday week, Satukino will move to the café area at Annantalo, where the Disney film Robin Hood (1973) will be screened on Thursday.</p><p>Robin Hood is an advocate of justice and a hero of the people, who takes from the rich and gives to the poor. In this beloved classic, Robin Hood's legendary adventures come to life as Robin, Little John and Friar Tuck inflict headaches on the greedy Prince John and the Sheriff of Nottingham. It's an exhilarating and exciting movie experience for the whole family!</p><p>The characters speak Finnish. English subtitles. For all ages.</p><p>Free admission, no advance registration. Please arrive on time as entry is on a first-come, first-served basis. The cinema can accommodate 70 spectators.</p><p>Movie duration: 79min<br>Age recommendation: All ages<br>Language: Finnish, English</p>"
            },
            "short_description": {
                "fi": "Klassikkoelokuvia kahvilatilassa! Syyslomaviikon elokuvateatteri Satukino siirtyy loppuviikosta Annantalon kahvilatilaan, jossa katsotaan torstaina Disney-elokuva Robin Hood (1973).",
                "sv": "Filmklassiker i caféutrymmet! I slutet av höstlovsveckan flyttar Satukino till Annegårdens caféutrymme, där Disney-filmen Robin Hood (1973) visas på torsdag.",
                "en": "Classic movies at the café! Later in during the autumn holiday week, Satukino will move to the café area at Annantalo, where the Disney film Robin Hood (1973) will be screened on Thursday."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Satukino | Robin Hood (S) – Satumainen syysloma",
                "sv": "Satukino | Robin Hood (S) – Ett sagolikt höstlov",
                "en": "Fairy tale theatre Satukino | Robin Hood (S) – Fabulous autumn holiday"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64330/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64290",
            "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:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?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:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151874,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T15:15:01.690653Z",
                    "last_modified_time": "2024-07-25T15:15:01.690668Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751041.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151874/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-25T15:15:01.661484Z",
            "last_modified_time": "2024-08-29T05:13:34.629813Z",
            "date_published": null,
            "start_time": "2024-10-17T08:00:00Z",
            "end_time": "2024-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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C37DB1768A1FCAC19E90D9B44497EA30/Sienia_sateella_-tyopaja_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C37DB1768A1FCAC19E90D9B44497EA30/Workshop_svampar_i_regn_",
                "en": "http://www.malmitalo.fi/en/events/event/C37DB1768A1FCAC19E90D9B44497EA30/Mushrooms_in_the_Rain_workshop_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Plop plop plop - putkahtelee kuin sieniä sateella! Askartele työpajassa oma pieni sieni.</p><p>Värikkäässä sienimetsässä kasvavat mielikuvitukselliset hattupäät ja ihan tavalliset tatit. Asuuko sienessä joku? Mahdatko tunnistaa kaikki mielikuvitukselliset sienilajit? Askartelu sopii kaiken ikäisille, mutta alle kouluikäiset taiteilijat tarvitsevat aikuisen mukaan.<br> <br>Työpajan suunnittelu ja toteutus Runoropinoita/Ulla-Maija Vanhala<br>Malmitalon aula, vapaa pääsy!</p>",
                "sv": "<p>Plopp plopp plopp – de ploppar upp som svampar i regn! Pyssla en egen liten svamp i workshoppen.</p><p>I den färgglada svampskogen växer fantasifulla hatthuvuden och helt vanliga soppar. Bor det någon i svampen? Känner du igen alla de fantasifulla svamparterna? Pysslet passar för alla åldrar, men barn under skolåldern ska ha sällskap av en vuxen.<br> <br>Workshoppens planering och genomförande: Runoropinoita/Ulla-Maija Vanhala<br>Foajén i Malms kulturhus, fritt inträde</p>",
                "en": "<p>Plop plop plop - pops up like mushrooms in the rain! Craft your own small shroom in the workshop.</p><p>Imaginary hat heads and simple boletes grow in a colourful mushroom forest. Does anyone live in the mushroom? Can you identify all the imaginative mushrooms? Crafting is suitable for all ages, but artists under school age need to be accompanied by an adult.<br> <br>Design and implementation of the workshop by Runoropinoita/Ulla-Maija<br>Malmitalo lobby, free of charge!</p>"
            },
            "short_description": {
                "fi": "Plop plop plop - putkahtelee kuin sieniä sateella! Askartele työpajassa oma pieni sieni.",
                "sv": "Plopp plopp plopp – de ploppar upp som svampar i regn! Pyssla en egen liten svamp i workshoppen.",
                "en": "Plop plop plop - pops up like mushrooms in the rain! Craft your own small shroom in the workshop."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sieniä sateella -työpaja – Nonstop",
                "sv": "Workshop – svampar i regn – Nonstop",
                "en": "Mushrooms in the Rain workshop – Nonstop"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64290/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64251",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151819,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T14:14:55.500961Z",
                    "last_modified_time": "2024-07-24T14:14:55.500981Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755070.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151819/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-24T14:14:55.474135Z",
            "last_modified_time": "2024-08-29T05:13:34.521129Z",
            "date_published": null,
            "start_time": "2024-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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CD3E52AB66F4A9172317EEC9B72D33B5/Poika_ja_Haikara_12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/CD3E52AB66F4A9172317EEC9B72D33B5/Pojken_och_hagern_12_",
                "en": "http://www.vuotalo.fi/en/events/event/CD3E52AB66F4A9172317EEC9B72D33B5/The_Boy_and_the_Heron_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Nuori Mahito-poika kaipaa äitiään ja päätyy etsimään tätä elävien sekä kuolleiden jakamasta rajamaailmasta.</p><p>Siellä kuolema päättyy ja uusi elämä voi alkaa. Poika ja haikara on Hayao Miyazakin osin omaelämäkerrallinen fantasia elämästä ja kuolemasta, tarina luomisesta sekä ystävyyden merkityksestä. Elokuva on myös Miyazakin ensimmäinen pitkä elokuva kymmeneen vuoteen. Sen on tuottanut Studio Ghiblin alkuperäinen perustajajäsen Toshio Suzuki. Käsin piirretyn elokuvan musiikin on luonut Miyazakin pitkäaikainen vakiosäveltäjä Joe Hisaishi. Tunnusmelodian esittää J-Pop -supertähti Kenshi Yonezu.</p><p>Kesto: 124 min<br>Ikäraja: 12<br>Kieli: japani, tekstitys suomeksi<br>Hayao Miyazaki, 2023</p><p>Vapaa sisäänpääsy!</p>",
                "sv": "<p>En ung Mahito-pojke saknar sin mamma och ger sig av för att leta efter henne i en gränsvärld mellan levande och döda.</p><p>Där tar döden slut och ett nytt liv kan börja. Pojken och hägern är Hayao Miyazakis delvis självbiografiska fantasi om liv och död, en berättelse om skapande och betydelsen av vänskap. Filmen är också Miyazakis första långfilm på tio år. Den har producerats av Toshio Suzuki, en av Studio Ghiblis ursprungliga grundande medlemmar. Musiken till den handritade filmen har komponerats av Miyazakis långvariga kompositör, Joe Hisaishi. Signaturmelodin framförs av J-Pop-superstjärnan Kenshi Yonezu.</p>",
                "en": "<p>Mahito, a young boy misses his mother and ends up looking for her in a world between the living and the dead.</p><p>That is where death ends and a new life can begin. The Boy and the Heron is Hayao Miyazaki's autobiographical fantasy about life and death, a story about creation and the meaning of friendship. The film is also Miyazaki's first feature film in ten years. It was produced by Toshio Suzuki, one of the founding members of Studio Ghibli. The music for the hand-drawn film was created by longtime Miyazaki composer Joe Hisaishi. The theme song is performed by J-Pop superstar Kenshi Yonezu.</p>"
            },
            "short_description": {
                "fi": "Nuori Mahito-poika kaipaa äitiään ja päätyy etsimään tätä elävien sekä kuolleiden jakamasta rajamaailmasta.",
                "sv": "En ung Mahito-pojke saknar sin mamma och ger sig av för att leta efter henne i en gränsvärld mellan levande och döda.",
                "en": "Mahito, a young boy misses his mother and ends up looking for her in a world between the living and the dead."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Poika ja Haikara (12) – Syysloman Miyazaki-elokuvia",
                "sv": "Pojken och hägern (12) – Miyazaki-filmer på höstlovet",
                "en": "The Boy and the Heron (12) – Miyazaki movies for the autumn holiday"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64251/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64250",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151817,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T14:14:55.155472Z",
                    "last_modified_time": "2024-07-24T14:14:55.155496Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751195.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151817/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-24T14:14:55.125673Z",
            "last_modified_time": "2024-08-29T05:13:34.443384Z",
            "date_published": null,
            "start_time": "2024-10-16T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EEC679F9A9BE04D2E6C963E538CC7F78/Liikkuva_linna_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/EEC679F9A9BE04D2E6C963E538CC7F78/Det_levande_slottet_7_",
                "en": "http://www.vuotalo.fi/en/events/event/EEC679F9A9BE04D2E6C963E538CC7F78/Howl_s_Moving_Castle_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Hattukaupan tyttö kohtaa sattumalta kaunottaria viettelevän turhamaisen velhon nimeltä Hauru. Nuori neito joutuu kateellisen Turhamaisuuden noidan loihtimana kokemaan, millaista on elää 90-vuotiaana.</p><p>Sophie jättää entisen elämänsä ja päätyy taloudenhoitajaksi Haurun Liikkuvaan linnaan. Sophie salaa oikean henkilöllisyytensä Haurulta ja ystävystyy linnan muiden asukkaiden kanssa. Tunteiden noustessa pintaan Sophien todellinen ikä kurkistaa esiin vaikka kesken lauseen.</p><p>Hayao Miyazakin maailmassa päähenkilön ikä voi muuttua jopa saman kohtauksen aikana. Tämä upea elokuva viettää jo 20-vuotisjuhlaansa!</p><p>Kesto: 119 min<br>Ikäraja: 7<br>Kieli: japani, tekstitys suomeksi<br>Hayao Miyazaki, 2004</p><p>Vapaa sisäänpääsy</p>",
                "sv": "<p>Av en slump träffar hattaffärens flicka en fåfäng trollkarl vid namn Hauru, som förför skönheter. Förtrollad av den svartsjuka Ödeshäxan tvingas den unga kvinnan uppleva hur det är att leva som 90-åring.</p><p>Sophie lämnar sitt gamla liv och blir hushållerska i Haurus Levande slott. Sophie döljer sin verkliga identitet för Hauru och blir vän med de övriga invånarna i slottet. När känslorna svallar avslöjas stundvis Sophies verkliga ålder, till och med mitt under en mening.</p><p>I Hayao Miyazakis värld kan huvudpersonens ålder till och med ändras under en och samma scen. Denna fantastiska film firar redan sitt 20-årsjubileum!</p><p>Fri inträde!</p>",
                "en": "<p>A hat shop girl accidentally encounters a vain wizard named Howl, who seduces beautiful women. A young lady, enchanted by the envious Witch of Vanity, is forced to experience what it is like to live to the age of 90.</p><p>Sophie leaves her old life and ends up as a housekeeper in Howl’s Moving Castle. Sophie conceals her true identity from Howl and befriends the castle's other residents. As emotions rise, Sophie's real age starts to come out, even in the middle of a sentence.</p><p>In Hayao Miyazaki's world, the protagonist's age can change, even within a scene. This fantastic film is already celebrating its 20th anniversary!</p><p>Free entrance!</p>"
            },
            "short_description": {
                "fi": "Hattukaupan tyttö kohtaa sattumalta kaunottaria viettelevän turhamaisen velhon nimeltä Hauru. Nuori neito joutuu kateellisen Turhamaisuuden noidan loihtimana kokemaan, millaista on elää 90-vuotiaana.",
                "sv": "Av en slump träffar hattaffärens flicka en fåfäng trollkarl vid namn Hauru, som förför skönheter. Förtrollad av den svartsjuka Ödeshäxan tvingas den unga kvinnan uppleva hur det är att leva som 90-åring.",
                "en": "A hat shop girl accidentally encounters a vain wizard named Howl, who seduces beautiful women. A young lady, enchanted by the envious Witch of Vanity, is forced to experience what it is like to live to the age of 90."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Liikkuva linna (7) – Syysloman Miyazaki-elokuvia",
                "sv": "Det levande slottet (7) – Miyazaki-filmer på höstlovet",
                "en": "Howl’s Moving Castle (7) – Miyazaki movies for the autumn holiday"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64250/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64165",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151644,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-03T14:13:21.276352Z",
                    "last_modified_time": "2024-07-03T14:13:21.276367Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751992.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151644/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-03T14:13:21.260186Z",
            "last_modified_time": "2024-08-29T05:13:34.328202Z",
            "date_published": null,
            "start_time": "2024-10-16T10:30:00Z",
            "end_time": "2024-10-16T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FD6172A3349049C6DA7C24CE12631432/Hyvan_tuulen_hetket",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FD6172A3349049C6DA7C24CE12631432/Stunder_med_god_stamning",
                "en": "http://www.kanneltalo.fi/en/events/event/FD6172A3349049C6DA7C24CE12631432/Moments_of_happiness"
            },
            "provider": null,
            "description": {
                "fi": "<p>Muusikko Mari Kätkä laulattaa ja kuvittaja Sari Airola kuvittaa rakastetuimpia yhteislauluja tarinallisiksi kuviksi.</p><p>Rakkaimpien yhteislaulujen soidessa kaikki saavat laulamisen lomassa piirtää omia kuviaan tai kirjoittaa vaikka omia musiikkimuistojaan. Kokonaisuudesta syntyy monitaiteellinen elämys, johon saa osallistua laulaen, piirtäen, kuunnellen ja katsellen. Hetket rakennetaan joka kerta eri teeman ympärille lauluvalikoiman ja piirrosten aiheiden avulla.</p><p>Esitystä voi seurata maksutta kulttuuripalvelu Lämpiön kanavalla https://lampio.fi/</p><p>Tallenne esityksestä on katsottavissa kaksi viikkoa esityksen jälkeen.</p><p><b>Syyskauden lauluteemat:</b></p><p>18.9. Kerro se kukkasin!<br>16.10. Se hetki!<br>13.11. Juhlatunnelmaa<br>11.12. Meidän joulu</p><p>Kesto n. 30 min</p><p>Vapaa pääsy</p>",
                "sv": "<p>Musikern Mari Kätkä lockar till sång medan illustratören Sari Airola gör bildberättelser av våra mest älskade allsångslåtar.</p><p>Medan de mest älskade allsångslåtarna spelas kan även deltagarna rita sina egna bilder eller kanske skriva ner sina egna musikminnen. Av helheten uppstår en mångkonstnärlig upplevelse som man kan delta i genom att sjunga, rita eller lyssna och titta. Med hjälp av sångurvalet och bilderna byggs stunderna varje gång upp runt ett visst tema.</p><p>Du kan följa uppträdandet kostnadsfritt via kulturtjänsten Lämpiös kanal https://lampio.fi/ och en inspelning av uppträdandet finns att se i två veckor därefter.</p>",
                "en": "<p>Musician Mari Kätkä leads the most beloved sing-along songs while illustrator Sari Airola illustrates them into narrative images.</p><p>While the most beloved sing-along songs are playing, even the singers can draw or write down their own pictures and musical memories. The performance creates a multi-artistic experience which you can take part in by singing, drawing, or listening and watching. Each moment is built around a different theme with the help of a selection of songs and drawing themes.</p><p>The performance can be followed free of charge on cultural service Lämpiö’s channel at https://lampio.fi/, and a recording of the performance will be available two weeks after the performance.</p>"
            },
            "short_description": {
                "fi": "Muusikko Mari Kätkä laulattaa ja kuvittaja Sari Airola kuvittaa rakastetuimpia yhteislauluja tarinallisiksi kuviksi.",
                "sv": "Musikern Mari Kätkä lockar till sång medan illustratören Sari Airola gör bildberättelser av våra mest älskade allsångslåtar.",
                "en": "Musician Mari Kätkä leads the most beloved sing-along songs while illustrator Sari Airola illustrates them into narrative images."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Hyvän tuulen hetket – iltapäiväohjelmaa ikäihmisille",
                "sv": "Stunder med god stämning",
                "en": "Moments of happiness"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64165/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64288",
            "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:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?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:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151872,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T15:15:01.089511Z",
                    "last_modified_time": "2024-07-25T15:15:01.089539Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751040.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151872/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-25T15:15:01.054039Z",
            "last_modified_time": "2024-08-29T05:13:34.144060Z",
            "date_published": null,
            "start_time": "2024-10-16T08:00:00Z",
            "end_time": "2024-10-16T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78CE1F6FF7912B4BB7A3E72CF646D257/Ihme_planeetta_-tyopaja_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/78CE1F6FF7912B4BB7A3E72CF646D257/Workshop_en_forunderlig_planet_",
                "en": "http://www.malmitalo.fi/en/events/event/78CE1F6FF7912B4BB7A3E72CF646D257/Planet_of_Wonders_workshop_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ripaus tulipunaista, sipaus jäänsinistä, hiukkasen tähtien tuiketta. Millainen on sinun ikioma ihmeplaneettasi?</p><p>Työpajassa ihmetellään ja kuvitellaan planeettoja sekä askarrellaan mobileen yksi tai useampi ihmeellinen taivaankappale. Askartelu sopii kaiken ikäisille, mutta alle kouluikäiset taiteilijat tarvitsevat aikuisen mukaan.</p><p>Työpajan suunnittelu ja toteutus Runoropinoita/Ulla-Maija Vanhala<br>Malmitalon aula, vapaa pääsy!</p>",
                "sv": "<p>En gnutta scharlakansrött, lite isblått, en aning stjärnglimmer. Hur ser din egna förunderliga planet ut?</p><p>I workshoppen förundras vi över och fantiserar om planeter, och pysslar en eller flera förunderliga himlakroppar till en mobil. Pysslet passar för alla åldrar, men barn under skolåldern ska ha sällskap av en vuxen.</p><p>Workshoppens planering och genomförande: Runoropinoita/Ulla-Maija Vanhala<br>Foajén i Malms kulturhus, fritt inträde</p>",
                "en": "<p>A dash of scarlet, a splash of ice blue, a little star twinkle. What is your very own planet of wonders like?</p><p>In the workshop, think about and imagine planets, and create one or more wondrous body for a mobile. Crafting is suitable for all ages, but artists under school age need to be accompanied by an adult.</p><p>Design and implementation of the workshop by Runoropinoita/Ulla-Maija<br>Malmitalo lobby, free of charge!</p>"
            },
            "short_description": {
                "fi": "Ripaus tulipunaista, sipaus jäänsinistä, hiukkasen tähtien tuiketta. Millainen on sinun ikioma ihmeplaneettasi?",
                "sv": "En gnutta scharlakansrött, lite isblått, en aning stjärnglimmer. Hur ser din egna förunderliga planet ut?",
                "en": "A dash of scarlet, a splash of ice blue, a little star twinkle. What is your very own planet of wonders like?"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Ihme planeetta -työpaja",
                "sv": "Workshop – en förunderlig planet",
                "en": "Planet of Wonders workshop"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64288/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64327",
            "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/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151992,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T15:13:57.676644Z",
                    "last_modified_time": "2024-07-30T15:13:57.676660Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751765.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151992/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-30T15:13:57.663104Z",
            "last_modified_time": "2024-08-29T05:13:33.846511Z",
            "date_published": null,
            "start_time": "2024-10-15T10:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3DBA79CC6E0453D8AECAF43119373386/Satukino_Aladdin_Live_Action_7_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/3DBA79CC6E0453D8AECAF43119373386/Satukino_Aladdin_Live_Action_7_",
                "en": "http://www.annantalo.fi/en/events/event/3DBA79CC6E0453D8AECAF43119373386/Fairy_tale_theatre_Satukino_Aladdin_Live_Action_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Tiistai-iltapäivänä hypätään seikkailun pyörteisiin elokuvan Aladdin (2019) parissa.</p><p>Disneyn animaatioklassikko Aladdin on loihdittu uudelleen valkokankaalle energisenä ja jännittävänä live action -versiona, jonka pääosissa nähdään karismaattinen katurotta Aladdin, urhea ja määrätietoinen prinsessa Jasmine ja Henki, joka voi avata heille ovet tulevaisuuteen. Ohjauksesta vastaa Guy Ritchie, joka tuo elokuvilleen tyypillistä vauhdikasta toimintaa satumaisen Agraban satamakaupungin kujille.</p><p>Juhlasalin iltapäivän elokuvanäytöksissä hahmot puhuvat englantia. Tekstitys suomeksi.<br>Vapaa pääsy, ei ennakkoilmoittautumista. Tulethan kuitenkin hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuviin mahtuu 74 katsojaa.</p><p>Elokuvan kesto: 128min<br>Ikäsuositus 7+</p>",
                "sv": "<p>Under höstlovet tittar vi på filmer med sagotema på Satukino. På tisdag eftermiddag hoppar vi in i äventyrets virvelvind med Aladdin (2019).</p><p>Disneys animerade klassiker Aladdin har återskapats för den vita duken i en energisk och spännande live-action-version med den karismatiske gatpojken Aladdin, den modiga och beslutsamma prinsessan Jasmine och Anden som kan öppna dörrarna till deras framtid i huvudrollerna. Filmen är regisserad av Guy Ritchie, som hämtar sin kännspaka snabba action till den sagolika hamnstaden Agrabas gränder.</p><p>På eftermiddagens filmvisningar i festsalen talar rollfigurerna engelska. Textning på finska.<br>Fritt inträde, ingen förhandsanmälan. Kom på plats i god tid, vi tar in publiken i ankomstordning. Det finns plats för 74 personer att se filmerna.</p><p>Filmens längd: 128 minuter<br>Åldersrekommendation: 7+</p>",
                "en": "<p>During the autumn holiday, Satukino will feature fairytale-themed films. On Tuesday afternoon, we jump into the whirlwind of adventure with Aladdin (2019).</p><p>Disney's animated classic Aladdin has been remade on the big screen in an energetic and exciting live action version starring charismatic street rat Aladdin, brave and determined Princess Jasmine and the Genie, who can open the doors into the future for them. Directed by Guy Ritchie, introducing the typical action of his films to the alleys of the fairytale city of Agrabah.</p><p>At the afternoon screenings in the ballroom, the characters speak English. Subtitles in Finnish.<br>Free admission, no advance registration. Please arrive on time as entry is on a first-come, first-served basis. The cinema can accommodate 74 spectators.</p><p>Movie duration: 128min<br>Age recommendation: +7</p>"
            },
            "short_description": {
                "fi": "Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Tiistai-iltapäivänä hypätään seikkailun pyörteisiin elokuvan Aladdin (2019) parissa.",
                "sv": "Under höstlovet tittar vi på filmer med sagotema på Satukino. På tisdag eftermiddag hoppar vi in i äventyrets virvelvind med Aladdin (2019).",
                "en": "During the autumn holiday, Satukino will feature fairytale-themed films. On Tuesday afternoon, we jump into the whirlwind of adventure with Aladdin (2019)."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Satukino | Aladdin (Live Action) (7) – Satumainen syysloma",
                "sv": "Satukino | Aladdin (Live Action) (7) – Ett sagolikt höstlov",
                "en": "Fairy tale theatre Satukino | Aladdin (Live Action) (7) – Fabulous autumn holiday"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64327/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64286",
            "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:104/?format=api"
                },
                {
                    "@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:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?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:p5088/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=mama+events+dhorpatan",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=mama+events+dhorpatan",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=mama+events+dhorpatan"
                    },
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151870,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T14:14:07.465509Z",
                    "last_modified_time": "2024-07-25T14:14:07.465525Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751039.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151870/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-25T14:14:07.437605Z",
            "last_modified_time": "2024-08-29T05:13:33.679632Z",
            "date_published": null,
            "start_time": "2024-10-15T08:00:00Z",
            "end_time": "2024-10-15T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/99FD239CE75E0092FF8C5FE9A93A13A9/Koirankorvilla-tyopaja_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/99FD239CE75E0092FF8C5FE9A93A13A9/Hundoron-workshop_",
                "en": "http://www.malmitalo.fi/en/events/event/99FD239CE75E0092FF8C5FE9A93A13A9/Dog_Ear_Workshop_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Nyt on vauhti päällä ja hommat hoituvat! Tepsuttele askartelemaan syysloman hupsuin ja haukuttavin pääkoriste.</p><p>Luppakorva, pystykorva, jättikorva! Minkälaisilla korvilla kutsuhuudot kuuluvat parhaiten? Koirankorva-askartelu sopii kaiken ikäisille, mutta alle kouluikäiset taiteilijat tarvitsevat aikuisen mukaan.</p><p>Työpajan suunnittelu ja toteutus Runoropinoita/Ulla-Maija Vanhala<br>Malmitalon aula, vapaa pääsy!</p>",
                "sv": "<p>Nu är det fart och fläkt och vi får saker gjorda! Kom och pyssla höstlovets skojigaste och gläfsigaste huvudbonad.</p><p>Hängöron, upprättstående öron, jätteöron! Vilken typ av öron är bäst för att höra lockrop? Hundöronpysslet passar för alla åldrar, men konstnärer under skolåldern ska ha sällskap av en vuxen.</p><p>Workshoppens planering och genomförande: Runoropinoita/Ulla-Maija Vanhala</p><p>Foajén i Malms kulturhus, fritt inträde</p>",
                "en": "<p>The pace is high and things are getting done! Craft the funniest and most borky headpiece of the fall holiday.</p><p>Droopy ears, upright ears, giant ears! With which kind of ears hear the call best? The Dog Ear Workshop is suitable for all ages, but artists under school age need to be accompanied by an adult.</p><p>Design and implementation of the workshop by Runoropinoita/Ulla-Maija</p><p>Malmitalo lobby, free of charge!</p>"
            },
            "short_description": {
                "fi": "Nyt on vauhti päällä ja hommat hoituvat! Tepsuttele askartelemaan syysloman hupsuin ja haukuttavin pääkoriste.",
                "sv": "Nu är det fart och fläkt och vi får saker gjorda! Kom och pyssla höstlovets skojigaste och gläfsigaste huvudbonad.",
                "en": "The pace is high and things are getting done! Craft the funniest and most borky headpiece of the fall holiday."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Koirankorvilla-työpaja – Nonstop",
                "sv": "Hundöron-workshop – Nonstop",
                "en": "Dog Ear Workshop – Nonstop"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64286/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}