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/?format=api&page=240&publisher_ancestor=ahjo%3A00001
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 12800,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=241&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=239&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:64329",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151994,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T16:15:55.131345Z",
                    "last_modified_time": "2024-07-30T16:15:55.131364Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751751.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151994/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-30T16:15:55.097981Z",
            "last_modified_time": "2024-10-02T06:29:52.753936Z",
            "date_published": null,
            "start_time": "2024-10-16T10: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,
            "short_description": {
                "fi": "Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Viikko jatkuu Disneyn live-action seikkailulla DUMBO (2019)!",
                "sv": "Under höstlovet tittar vi på filmer med sagotema på Satukino. Veckan fortsätter med Disneys live-action-äventyr DUMBO (2019).",
                "en": "During the autumn holiday, Satukino will feature fairytale-themed films. The week continues with Disney's live-action adventure DUMBO (2019)."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Viikko jatkuu Disneyn live-action seikkailulla DUMBO (2019)!</p><p>Mielikuvituksen mestari Tim Burton tuo valkokankaille uuden Dumbon. Elokuva laajentaa rakastetun klassikkoelokuvan tarinaa juhlistaen erilaisuutta, vaalien perhettä ja antaen unelmille siivet. <br>Sirkuksen omistaja Max Medici antaa entiselle tähdelle Holt Ferrierille ja hänen lapsilleen, Millylle ja Joelle, tehtäväksi hoitaa vastasyntynyttä elefanttia, jonka valtavat korvat saavat sen kuitenkin pilkan kohteeksi. Sirkus kärsii taloushuolista, mutta kun selviää, että Dumbo osaa lentää, tekee sirkus häikäisevän paluun.</p><p>Juhlasalin iltapäivän elokuvanäytöksissä hahmot puhuvat englantia. Tekstitys suomeksi.</p><p>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: 112min<br>Ikäsuositus 7+</p>",
                "sv": "<p>Under höstlovet tittar vi på filmer med sagotema på Satukino. Veckan fortsätter med Disneys live-action-äventyr DUMBO (2019).</p><p>Fantasins mästare Tim Burton hämtar en ny version av Dumbo till den vita duken. Filmen bygger på den älskade filmklassikerns berättelse, som hyllar mångfald, värnar om familjen och ger drömmarna vingar. <br>Cirkusägaren Max Medici ger den tidigare stjärnan Holt Ferrier och hans barn Milly och Joe i uppdrag att ta hand om en nyfödd elefant, vars enorma öron gör den till föremål för åtlöje. Cirkusen kämpar med ekonomin, men när man upptäcker att Dumbo kan flyga gör cirkusen en fantastisk comeback.</p><p>Karaktärerna i eftermiddagsfilmvisningarna i festsalen talar engelska. Textning på finska.</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 74 personer att se filmerna.</p><p>Filmens längd: 112 min.<br>Åldersrekommendation: 7+<br>Språk: Finska, engelska</p>",
                "en": "<p>During the autumn holiday, Satukino will feature fairytale-themed films. The week continues with Disney's live-action adventure DUMBO (2019).</p><p>The master of imagination, Tim Burton, has re-imagined Dumbo for the big screen. The film expands on the story of the beloved classic film, celebrating diversity, nurturing family and giving dreams wings. <br>Circus ringleader Max Medici entrusts former star Holt Ferrier and his children, Milly and Joe, with the task of caring for a newborn elephant whose huge ears, however, make it a laughing stock. The circus suffers financially, but when it turns out that Dumbo can fly, the circus makes a dazzling return.</p><p>The characters in the afternoon movie screenings in the ballroom speak English. Subtitles are in Finnish.</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 74 spectators.</p><p>Movie duration: 112min<br>Age recommendation: +7<br>Language: Finnish, English</p>"
            },
            "provider": null,
            "name": {
                "fi": "Satukino | Dumbo (Live Action) (7) – Satumainen syysloma",
                "sv": "Satukino | Dumbo (Live Action) (7) – Ett sagolikt höstlov",
                "en": "Satukino | Dumbo (Live Action) (7) – Fabulous autumn holiday"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/599A267798A768D5F6A39AE430DE38E3/Satukino_Dumbo_Live_Action_7_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/599A267798A768D5F6A39AE430DE38E3/Satukino_Dumbo_Live_Action_7_",
                "en": "http://www.annantalo.fi/en/events/event/599A267798A768D5F6A39AE430DE38E3/Satukino_Dumbo_Live_Action_7_"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64329/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:ce5bc0b1-599b-4f4f-89bf-76cc782acc97",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/4b57da54-af12-ef11-9f89-000d3ab0fc3c?readableEventId=MKtest_01102024_T4A_luontisanoma_SYYSLOMA3921971505"
                    },
                    "description": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152673,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-10-01T12:49:34.663695Z",
                    "last_modified_time": "2024-10-01T12:49:34.663713Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e377da3e-2609-ef11-9f8a-000d3ab363c5",
                    "name": "Sama kuva kuvateksti",
                    "cropping": "",
                    "photographer_name": "Lars Linssi",
                    "alt_text": "Sama kuva alta",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152673/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-10-01T12:44:03.324688Z",
            "last_modified_time": "2024-10-01T12:49:35.274004Z",
            "date_published": "2024-10-01T12:40:32Z",
            "start_time": "2024-10-12T05:00:00Z",
            "end_time": "2024-10-20T20:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 4,
            "minimum_attendee_capacity": 2,
            "enrolment_start_time": "2024-09-30T08:00:00+03:00",
            "enrolment_end_time": "2024-10-11T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "asdf short"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<div><p>asdf long</p></div>"
            },
            "provider": {
                "fi": "Business Business ja kolmas kerta Business_asdf ja sama vielä yhden kerran Business Business ja kolm"
            },
            "name": {
                "fi": "MKtest 01102024 T4A -päivitys X- KESKEYTETTY JA JULKAISTU UUDELLEEN"
            },
            "info_url": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:ce5bc0b1-599b-4f4f-89bf-76cc782acc97/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:d2efe0b7-7158-45fa-83d8-96eaef218774",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=MKtest_01102024_T3A_luonti2480893779"
                    },
                    "description": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                }
            ],
            "created_time": "2024-10-01T11:59:13.033523Z",
            "last_modified_time": "2024-10-01T11:59:14.542046Z",
            "date_published": "2024-10-01T11:57:31Z",
            "start_time": "2024-10-14T22:00:00Z",
            "end_time": "2024-10-14T22:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 2,
            "minimum_attendee_capacity": 1,
            "enrolment_start_time": "2024-10-02T08:00:00+03:00",
            "enrolment_end_time": "2024-10-02T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "short"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<div><p>long</p></div>"
            },
            "provider": {
                "fi": "Business fi"
            },
            "name": {
                "fi": "MKtest 01102024 T3A &lt;päivitys 1&gt;"
            },
            "info_url": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:d2efe0b7-7158-45fa-83d8-96eaef218774/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:a16849ac-6508-4c68-befe-6b0c448737b0",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/71c4439b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_01102024_T2_muutos2788966039"
                    },
                    "description": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152655,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-01T11:41:04.993914Z",
                    "last_modified_time": "2024-10-01T11:41:04.993929Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e377da3e-2609-ef11-9f8a-000d3ab363c5",
                    "name": "asdf",
                    "cropping": "",
                    "photographer_name": "asdf",
                    "alt_text": "asdf",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152655/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-10-01T11:41:05.649011Z",
            "last_modified_time": "2024-10-01T11:41:05.649030Z",
            "date_published": "2024-10-01T11:40:21Z",
            "start_time": "2024-10-02T10:00:00Z",
            "end_time": "2024-10-02T10:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 2,
            "minimum_attendee_capacity": 1,
            "enrolment_start_time": "2024-09-30T08:00:00+03:00",
            "enrolment_end_time": "2024-10-01T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "asdf lyhyt"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<div><p>asdf long</p></div>"
            },
            "provider": {
                "fi": "Test business"
            },
            "name": {
                "fi": "MKtest 01102024 T2B &lt;luonti&gt;"
            },
            "info_url": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:a16849ac-6508-4c68-befe-6b0c448737b0/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:aa8f13fa-e539-4731-9716-2051517f813e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/71c4439b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_01102024_T23323769395"
                    },
                    "description": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152652,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-01T11:38:21.810210Z",
                    "last_modified_time": "2024-10-01T11:38:21.810226Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e377da3e-2609-ef11-9f8a-000d3ab363c5",
                    "name": "asdf",
                    "cropping": "",
                    "photographer_name": "asdf",
                    "alt_text": "asdf",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152652/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-10-01T11:19:59.150493Z",
            "last_modified_time": "2024-10-01T11:38:23.068563Z",
            "date_published": "2024-10-01T11:16:55Z",
            "start_time": "2024-10-02T10:00:00Z",
            "end_time": "2024-10-02T10:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 2,
            "minimum_attendee_capacity": 1,
            "enrolment_start_time": "2024-09-30T08:00:00+03:00",
            "enrolment_end_time": "2024-10-01T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "asdf lyhyt"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<div><p>asdf long</p></div>"
            },
            "provider": {
                "fi": "Test business"
            },
            "name": {
                "fi": "MKtest 01102024 T2 &lt;muutos&gt;"
            },
            "info_url": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aa8f13fa-e539-4731-9716-2051517f813e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:f3c92f9c-f0c1-4611-b54b-4065446e0a86",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/71c4439b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_27092024_user_story_556task_624_uusi_custom_kentt_fi3015018330"
                    },
                    "description": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152645,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-01T11:13:02.850189Z",
                    "last_modified_time": "2024-10-01T11:13:02.850205Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/15cb8ee9-057c-ef11-ac20-0022489ae80c",
                    "name": "asdf kuvateksti",
                    "cropping": "",
                    "photographer_name": "asdf Linssi",
                    "alt_text": "asdf alt",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152645/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-10-01T11:05:35.263010Z",
            "last_modified_time": "2024-10-01T11:13:03.726230Z",
            "date_published": "2024-10-01T10:47:17Z",
            "start_time": "2024-10-05T10:00:00Z",
            "end_time": "2024-10-05T10:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 4,
            "minimum_attendee_capacity": 2,
            "enrolment_start_time": "2024-09-02T08:00:00+03:00",
            "enrolment_end_time": "2024-10-03T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lyhyt kuvaus tulee tähän kenttään"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<div><p>Pitkä kuvaus tulee tähän kenttään&nbsp;<br><br>PS &nbsp;Vähimmäisosallistujamäärä tässä le-tapahtumassa 2 ja enimmäis 4 JA alaikäraja nolla ja yläikäraja nolla.</p></div>"
            },
            "provider": {
                "fi": "This was arranged by The Business Helsinki"
            },
            "name": {
                "fi": "MKtest 01102024 (user story 556/task 624) uusi custom kenttä EN_muutos"
            },
            "info_url": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:f3c92f9c-f0c1-4611-b54b-4065446e0a86/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64639",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "9 € / 8 €",
                        "en": "9 € / 8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/mama-events-the-casteless-collective-prologue-3740578/",
                        "en": "https://www.lippu.fi/artist/malmitalo/mama-events-the-casteless-collective-prologue-3740578/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152641,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-01T10:16:55.884297Z",
                    "last_modified_time": "2024-10-01T10:16:55.884309Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758803.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152641/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-01T10:16:55.873611Z",
            "last_modified_time": "2024-10-01T10:16:55.913263Z",
            "date_published": null,
            "start_time": "2024-10-15T16: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,
            "short_description": {
                "fi": "Dokumentti kertoo Intian vallankumouksellisimmasta poliittisesta musiikkijulkaisusta The Casteless Collectivesta sen perustamisesta debyyttialbuminsa ”Magizhchi” (Joy) julkaisuun vuonna 2019.",
                "en": "The documentary chronicles the story of India’s most revolutionary political musical outfit The Casteless Collective from its inception through the release of its debut album “Magizhchi” (Joy) in 2019."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Dokumentti kertoo Intian vallankumouksellisimmasta poliittisesta musiikkijulkaisusta The Casteless Collectivesta sen perustamisesta debyyttialbuminsa ”Magizhchi” (Joy) julkaisuun vuonna 2019.</p><p>Elokuvantekijä Pa.Ranjithin kokoaman kastittoman kollektiivin musiikki sisältää Gaanaa, joka on  työväenluokan kansanmuoto, joka sai alkunsa hautajaisista. Ne ovat lauluja, joita lauletaan kuolleiden ihmisten vapauttamiseksi sorretusta elämästä.</p><p>Elokuvan alkuperä: Intia<br>Kieli: tamili <br>Tekstitys: Englanti<br>Kesto 1 tunti, 30min</p>",
                "en": "<p>The documentary chronicles the story of India’s most revolutionary political musical outfit The Casteless Collective from its inception through the release of its debut album “Magizhchi” (Joy) in 2019.</p><p>Brought together by filmmaker Pa.Ranjith, the music of the casteless collective features Gaana, a working class folk form which originated at funerals, with songs sung to liberate deceased people from a life of oppression.</p><p>This movie is brought to by Mama Events Oy in collaboration with Culture Reels and Film South Asia.</p><p>Country: India<br>Language: Tamil<br>Subtitle: English<br>Duration: 1h30min</p>"
            },
            "provider": null,
            "name": {
                "fi": "The Casteless Collective - Prologue (7) – Mama Events -elokuvanäytös",
                "en": "The Casteless Collective - Prologue (7) – Mama Events presents"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78FC48E769B73E47F0AB5A8D7D794D47/The_Casteless_Collective_-_Prologue_7_",
                "en": "http://www.malmitalo.fi/en/events/event/78FC48E769B73E47F0AB5A8D7D794D47/The_Casteless_Collective_-_Prologue_7_"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64639/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64637",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "9 € / 8 €",
                        "en": "9 € / 8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/mama-events-face-cover-3740573/",
                        "en": "https://www.lippu.fi/artist/malmitalo/mama-events-face-cover-3740573/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152640,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-01T10:16:55.746335Z",
                    "last_modified_time": "2024-10-01T10:16:55.746348Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758802.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152640/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-01T10:16:55.725872Z",
            "last_modified_time": "2024-10-01T10:16:55.775373Z",
            "date_published": null,
            "start_time": "2024-10-15T14:50: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,
            "short_description": {
                "fi": "Elokuvan lähtöasetelmana on Sri Lankassa huhtikuussa 2019 tapahtuneet tuhoisat ISISin inspiroimat pääsiäissunnuntain pommi-iskut kirkkoihin ja hotelleihin.",
                "en": "Taking the cataclysmic Easter Sunday Bombings of churches and hotels in April 2019 by ISIS inspired Islamists in Sri Lanka as the point of departure, the film follows the life of Ashifa in Kattankudy, in Eastern Sri Lanka, as she navigates the complex social forces shaping her and other women’s stories."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Elokuvan lähtöasetelmana on Sri Lankassa huhtikuussa 2019 tapahtuneet tuhoisat ISISin inspiroimat pääsiäissunnuntain pommi-iskut kirkkoihin ja hotelleihin.</p><p>Elokuva seuraa Ashifan elämää Kattankudyssa, Itä-Sri Lankassa, kun hän navigoi häntä muokkaavissa monimutkaisissa sosiaalisissa voimissa. Elokuva kertoo kaupungin tarinan naisen tarinan näkökulmasta.</p><p>Tämän elokuvan on tuonut Suomeen Mama Events Oy yhteistyössä Culture Reelsin ja Film South Asian kanssa.</p><p>Elokuvan alkuperä: Sri Lanka <br>Kieli: tamili <br>Tekstitys: Englanti<br>Ikäraja: 7<br>Kesto 1h 10min</p>",
                "en": "<p>Taking the cataclysmic Easter Sunday Bombings of churches and hotels in April 2019 by ISIS inspired Islamists in Sri Lanka as the point of departure, the film follows the life of Ashifa in Kattankudy, in Eastern Sri Lanka, as she navigates the complex social forces shaping her and other women’s stories.</p><p>The film tells the story of the town as a woman’s tale.</p><p>This movie is brought to by Mama Events Oy in collaboration with Culture Reels and Film South Asia.</p><p>Origin of the movie: Sri Lanka<br>Language: Tamil<br>Subtitles: English<br>Duration: 1h 10min</p>"
            },
            "provider": null,
            "name": {
                "fi": "Face Cover (7) – Mama events -elokuvanäytös",
                "en": "Face Cover (7) – Mama events presents"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4488DDB8352FB8FFE810FB0FA1E3266F/Face_Cover_7_",
                "en": "http://www.malmitalo.fi/en/events/event/4488DDB8352FB8FFE810FB0FA1E3266F/Face_Cover_7_"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64637/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64287",
            "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: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: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: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/kulke:755/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151871,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T14:14:07.637205Z",
                    "last_modified_time": "2024-07-25T14:14:07.637220Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751033.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151871/?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.610226Z",
            "last_modified_time": "2024-10-01T10:16:55.615371Z",
            "date_published": null,
            "start_time": "2024-10-15T10:00:00Z",
            "end_time": "2024-10-15T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kun maaginen meteoriitti iskeytyy Jännälään, se antaa Ryhmä Haun pennuille supervoimat, jotka muuttavat ne MAHTIPENNUIKSI!",
                "sv": "När en magisk meteorit kraschlandar i Äventyrsstaden, får Paw Patrol-valparna superkrafter och förvandlas till mäktiga valpar.",
                "en": "When a magical meteor crash lands in Adventure City, it gives the PAW Patrol pups superpowers, transforming them into The MIGHTY PUPS!"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Kun maaginen meteoriitti iskeytyy Jännälään, se antaa Ryhmä Haun pennuille supervoimat, jotka muuttavat ne MAHTIPENNUIKSI!</p><p>Ryhmän pienimmälle jäsenelle, Kajalle, uudet voimat ovat toteen käynyt unelma. Asiat ottavat kuitenkin ikävän käänteen, kun pentujen arkkivihollinen, Hanttinen, vapautuu vankilasta ja lyöttäytyy yhteen hullun tiedemiehen kanssa. Kaksikon aikeena on varastaa supervoimat itselleen. Jännälän kohtalon ollessa vaakalaudalla Mahtipentujen on pysäytettävä viholliskaksikko ennen kuin on liian myöhäistä. Ja Kajan on opittava, että kaikkein pieninkin pentu voi saada aikaan suuria.</p><p>Ennen elokuvan alkua esitetään Dora ja ihmeelliset olennot -lyhytelokuva, jonka kesto on noin 5 minuuttia.</p><p>Ikäraja 7<br>Kesto 93 min<br>Puhuttu suomeksi<br>Malmisali, vapaa pääsy!</p>",
                "sv": "<p>När en magisk meteorit kraschlandar i Äventyrsstaden, får Paw Patrol-valparna superkrafter och förvandlas till mäktiga valpar.</p><p>För Skye, den minsta medlemmen i gruppen, är hennes nya krafter en dröm som har blivit sann. Men allt förändras när valparnas ärkefiende, borgmästare Överdängare, rymmer från fängelset och slår sig ihop med en galen vetenskapsman för att stjäla superkrafterna. Äventyrsstadens öde står på spel. De mäktiga valparna måste stoppa superskurkarna innan det är för sent, och Skye kommer att få lära sig att även en liten valp kan göra stor skillnad.</p>",
                "en": "<p>When a magical meteor crash lands in Adventure City, it gives the PAW Patrol pups superpowers, transforming them into The MIGHTY PUPS!</p><p>For Skye, the smallest member of the team, her new powers are a dream come true. But things take a turn for the worse when the pups' archrival Humdinger breaks out of jail and teams up with a mad scientist to steal the superpowers for the two villains. With the fate of Adventure City hanging in the balance, the Mighty Pups have to stop the supervillains before it's too late, and Skye will need to learn that even the smallest pup can make the biggest difference.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Ryhmä Hau: Mahtielokuva (7) – Syyslomaleffa",
                "sv": "Paw Patrol: Storfilmen – Höstlovsfilm",
                "en": "PAW Patrol: The Mighty Movie (7) – Autumn holiday movie"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1DBF717385D55ECFE0C66EA4F25C7FA1/Ryhma_Hau_Mahtielokuva_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1DBF717385D55ECFE0C66EA4F25C7FA1/Paw_Patrol_Storfilmen_",
                "en": "http://www.malmitalo.fi/en/events/event/1DBF717385D55ECFE0C66EA4F25C7FA1/PAW_Patrol_The_Mighty_Movie_7_"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64287/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64638",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "9 € / 8 €",
                        "en": "9 € / 8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/mama-events-the-casteless-collective-prologue-3740578/",
                        "en": "https://www.lippu.fi/artist/malmitalo/mama-events-the-casteless-collective-prologue-3740578/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152639,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-01T10:16:54.869003Z",
                    "last_modified_time": "2024-10-01T10:16:54.869015Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758799.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152639/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-01T10:16:54.855981Z",
            "last_modified_time": "2024-10-01T10:16:54.897035Z",
            "date_published": null,
            "start_time": "2024-10-10T16: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,
            "short_description": {
                "fi": "Dokumentti kertoo Intian vallankumouksellisimmasta poliittisesta musiikkijulkaisusta The Casteless Collectivesta sen perustamisesta debyyttialbuminsa ”Magizhchi” (Joy) julkaisuun vuonna 2019.",
                "en": "The documentary chronicles the story of India’s most revolutionary political musical outfit The Casteless Collective from its inception through the release of its debut album “Magizhchi” (Joy) in 2019."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Dokumentti kertoo Intian vallankumouksellisimmasta poliittisesta musiikkijulkaisusta The Casteless Collectivesta sen perustamisesta debyyttialbuminsa ”Magizhchi” (Joy) julkaisuun vuonna 2019.</p><p>Elokuvantekijä Pa.Ranjithin kokoaman kastittoman kollektiivin musiikki sisältää Gaanaa, joka on  työväenluokan kansanmuoto, joka sai alkunsa hautajaisista. Ne ovat lauluja, joita lauletaan kuolleiden ihmisten vapauttamiseksi sorretusta elämästä.</p><p>Elokuvan alkuperä: Intia<br>Kieli: tamili <br>Tekstitys: Englanti<br>Kesto 1 tunti, 30min</p>",
                "en": "<p>The documentary chronicles the story of India’s most revolutionary political musical outfit The Casteless Collective from its inception through the release of its debut album “Magizhchi” (Joy) in 2019.</p><p>Brought together by filmmaker Pa.Ranjith, the music of the casteless collective features Gaana, a working class folk form which originated at funerals, with songs sung to liberate deceased people from a life of oppression.</p><p>This movie is brought to by Mama Events Oy in collaboration with Culture Reels and Film South Asia.</p><p>Country: India<br>Language: Tamil<br>Subtitle: English<br>Duration: 1h30min</p>"
            },
            "provider": null,
            "name": {
                "fi": "The Casteless Collective - Prologue (7) – Mama Events -elokuvanäytös",
                "en": "The Casteless Collective - Prologue (7) – Mama Events presents"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/32A3CDBF8D30B9262681386B1D58DE1A/The_Casteless_Collective_-_Prologue_7_",
                "en": "http://www.malmitalo.fi/en/events/event/32A3CDBF8D30B9262681386B1D58DE1A/The_Casteless_Collective_-_Prologue_7_"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64638/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64636",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "9 € / 8 €",
                        "en": "9 € / 8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/mama-events-face-cover-3740573/",
                        "en": "https://www.lippu.fi/artist/malmitalo/mama-events-face-cover-3740573/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152638,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-01T10:16:54.633981Z",
                    "last_modified_time": "2024-10-01T10:16:54.633994Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758798.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152638/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-01T10:16:54.598938Z",
            "last_modified_time": "2024-10-01T10:16:54.690753Z",
            "date_published": null,
            "start_time": "2024-10-10T14:50: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,
            "short_description": {
                "fi": "Elokuvan lähtöasetelmana on Sri Lankassa huhtikuussa 2019 tapahtuneet tuhoisat ISISin inspiroimat pääsiäissunnuntain pommi-iskut kirkkoihin ja hotelleihin.",
                "en": "Taking the cataclysmic Easter Sunday Bombings of churches and hotels in April 2019 by ISIS inspired Islamists in Sri Lanka as the point of departure, the film follows the life of Ashifa in Kattankudy, in Eastern Sri Lanka, as she navigates the complex social forces shaping her and other women’s stories."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Elokuvan lähtöasetelmana on Sri Lankassa huhtikuussa 2019 tapahtuneet tuhoisat ISISin inspiroimat pääsiäissunnuntain pommi-iskut kirkkoihin ja hotelleihin.</p><p>Elokuva seuraa Ashifan elämää Kattankudyssa, Itä-Sri Lankassa, kun hän navigoi häntä muokkaavissa monimutkaisissa sosiaalisissa voimissa. Elokuva kertoo kaupungin tarinan naisen tarinan näkökulmasta.</p><p>Tämän elokuvan on tuonut Suomeen Mama Events Oy yhteistyössä Culture Reelsin ja Film South Asian kanssa.</p><p>Elokuvan alkuperä: Sri Lanka <br>Kieli: tamili <br>Tekstitys: Englanti<br>Ikäraja: 7<br>Kesto 1h 10min</p>",
                "en": "<p>Taking the cataclysmic Easter Sunday Bombings of churches and hotels in April 2019 by ISIS inspired Islamists in Sri Lanka as the point of departure, the film follows the life of Ashifa in Kattankudy, in Eastern Sri Lanka, as she navigates the complex social forces shaping her and other women’s stories.</p><p>The film tells the story of the town as a woman’s tale.</p><p>This movie is brought to by Mama Events Oy in collaboration with Culture Reels and Film South Asia.</p><p>Origin of the movie: Sri Lanka<br>Language: Tamil<br>Subtitles: English<br>Duration: 1h 10min</p>"
            },
            "provider": null,
            "name": {
                "fi": "Face Cover (7) – Mama events -elokuvanäytös",
                "en": "Face Cover (7) – Mama events presents"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6BC88A547543F6E6448744DEDC57C8F5/Face_Cover_7_",
                "en": "http://www.malmitalo.fi/en/events/event/6BC88A547543F6E6448744DEDC57C8F5/Face_Cover_7_"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64636/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63639",
            "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: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: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3668996",
                        "sv": "https://www.lippu.fi/eventseries/name-3668996",
                        "en": "https://www.lippu.fi/eventseries/name-3668996"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151943,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-29T13:13:42.802928Z",
                    "last_modified_time": "2024-07-29T13:13:42.802943Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751862.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151943/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-29T13:13:42.773331Z",
            "last_modified_time": "2024-10-01T08:14:51.806416Z",
            "date_published": null,
            "start_time": "2024-10-01T11: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,
            "short_description": {
                "fi": "Tarina pariisilaislähiössä kasvaneesta kahdesta sisaresta, jossa kulttuurien ja sukupolvien väliset traumat nousevat pintaan.",
                "sv": "Kulturell och generationsöverskridande trauma väller fram i den här berättelsen om två systrar i utkanten av Paris.",
                "en": "Cultural and intergenerational trauma erupt in this story about two sisters on the outskirts of Paris."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Tarina pariisilaislähiössä kasvaneesta kahdesta sisaresta, jossa kulttuurien ja sukupolvien väliset traumat nousevat pintaan.</p><p>Kun sisarukset ovat joutuneet erilleen, vanhempi sisar Hasna kipuilee identiteettiään etsien ja päätyy koko maailmaa järisyttävään ratkaisuun. Ohjaaja Dina Amer on tarttunut synkän ajankohtaiseen aiheeseen ja availee sitä tiivistunnelmaisessa tarinassa, jota teemoittavat perhe, rakkaus, sisaruus ja yhteenkuuluvuus.</p><p>You Resemble Me<br>Dina Amer | USA, Ranska, Egypti | 2022 | 91’ <br>Kielet: arabia, ranska <br>Tekstitys: englanti</p><p><b>Kino Caisa</b> on Caisan oma leffateatteri! Valkokankaallamme nähdään huolellisesti valikoituja elokuvia, jotka tarkastelevat ihmisyyden moninaisuutta eri näkökulmista.</p><p>Elokuvat kertovat tarinoita ihmisistä, joita ei tavallisesti nähdä valokeilassa – tai niiden tekijät kuuluvat itsekin johonkin vähemmistöön. Edustettuina ovat niin seksuaali- ja sukupuolivähemmistöt, vammaiset, neuroepätyypilliset ihmiset kuin etniset vähemmistötkin.</p><p>Inkluusion ja moninaisuuden ohella Kino Caisan leffoja yhdistää taiteellinen kunnianhimo ja korkeatasoisuus. Valkokankaan täyttävät tarinat tempaavat mukaansa, herättävät ajatuksia, koskettavat ja lisäävät empatiaa ja ymmärrystä kanssaihmisiä kohtaan.</p><p>Leffanäytöksiä järjestetään joka tiistai kaksi: kello 14 ja 18. Luvassa on myös elokuvatapahtumia, joista lisätietoja myöhemmin.</p><p>Elokuvien kieli on englanti, joko puhuttuna tai tekstimuodossa.<br>Ikäraja: K-18.</p>",
                "sv": "<p>Kulturell och generationsöverskridande trauma väller fram i den här berättelsen om två systrar i utkanten av Paris.</p><p>När syskonen splittras kämpar den äldre systern, Hasna, med att hitta sin identitet, vilket leder till ett val som chockerar världen. Regissören Dina Amer behandlar ett av de mörkaste temana i vår tid och dekonstruerar det i en intim berättelse om familjer, kärlek, systerskap och samhörighet.</p><p>You Resemble Me<br>Dina Amer | U.S., Frankrike, Egypten| 2022 | 91’ <br>Språk: arabiska, franska <br>Textning: engelska</p><p><b>Kino Caisa</b> är Caisas egen filmteater! Varje tisdag ser vi noggrant utvalda filmer på vår filmduk. Filmerna tillsammans med sina skapare och berättelser granskar och visar den mänskliga mångfalden på olika sätt.</p><p>Filmvisningar sker varje tisdag klockan 14 och 18. Det kommer även att ordnas filmevenemang, om vilka närmare information ges separat.</p><p>Filmerna är på engelska eller textade på engelska.</p><p>Filmerna har en åldersgräns på 18.</p>",
                "en": "<p>Cultural and intergenerational trauma erupt in this story about two sisters on the outskirts of Paris.</p><p>After the siblings are torn apart, the eldest, Hasna, struggles to find her identity, leading to a choice that shocks the world. Director Dina Amer takes on one of the darkest issues of our time and deconstructs it in an intimate story about family, love, sisterhood, and belonging.</p><p>You Resemble Me<br>Dina Amer | United States, France, Egypt | 2022 | 91’ <br>Languages: Arabic, French <br>Subtitles: English</p><p><b>Kino Caisa</b> organizes a series of carefully programmed screenings to impulse film as a significant instrument for cultural stimulation and social cohesion.</p><p>Kino Caisa promotes cinematic diversity with a varied program to activate Helsinki’s cultural practices and identity. Kino Caisa is a communal experience, a central player in social development, and a clear indicator of quality life for the community.</p><p>Movies are shown every Tuesday at 2 p.m. and 6 p.m. There will also be movie events, which will be announced in more detail separately.</p><p>The movies are either in English or subtitled in English. Age limit 18.</p>"
            },
            "provider": null,
            "name": {
                "fi": "You Resemble Me (K-18) – Kino Caisa",
                "sv": "You Resemble Me (F18) – Kino Caisa",
                "en": "You Resemble Me (18+) – Kino Caisa"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/664D56AF1856D69ED405004127A3952B/You_Resemble_Me_K-18_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/664D56AF1856D69ED405004127A3952B/You_Resemble_Me_F18_",
                "en": "http://www.caisa.fi/en/events/event/664D56AF1856D69ED405004127A3952B/You_Resemble_Me_18_"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63639/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63758",
            "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/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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "33,50 € / 31,50 €",
                        "sv": "33,50 € / 31,50 €",
                        "en": "33,50 € / 31,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/amadeus-lundberg-romanssi-malmitalo-18646991/#tab=",
                        "sv": "https://www.lippu.fi/event/amadeus-lundberg-romanssi-malmitalo-18646991/#tab=",
                        "en": "https://www.lippu.fi/event/amadeus-lundberg-romanssi-malmitalo-18646991/#tab="
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151862,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T13:13:24.377631Z",
                    "last_modified_time": "2024-07-25T13:13:24.377649Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752468.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151862/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T13:13:24.357410Z",
            "last_modified_time": "2024-10-01T07:34:12.605771Z",
            "date_published": null,
            "start_time": "2024-10-02T15: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,
            "short_description": {
                "fi": "Amadeus Lundberg, tangokuningas vuodelta 2009, on suomalaisen kevyen musiikin kestosuosikki.",
                "sv": "Tangokunden från år 2009 Amadeus Lundberg är en ständig favorit inom den finländska underhållningsmusiken.",
                "en": "Amadeus Lundberg, the tango king of 2009, is a lifelong favourite in Finnish light music."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Amadeus Lundberg, tangokuningas vuodelta 2009, on suomalaisen kevyen musiikin kestosuosikki.</p><p>Vuonna 2024 tulee kuluneeksi 15 vuotta siitä, kun Amadeus Lundberg kruunattiin tangokuninkaaksi Tangomarkkinoilla. Juhlavuoden kunniaksi järjestetään Romanssi-konserttikiertue, jossa Lundberg vie kuulijat herkkään tunnelmaan upeilla tulkinnoilla.</p><p>Amadeus Lundberg esittää kauneimpia rakkauslauluja sekä monia ikivihreitä suomalaisia ja kansainvälisiä sävelmiä, kuten Romanssi, Solamente una Vez ja Con Te Partirò.</p><p>”Romantiikka on lähellä sydäntäni ja haluan tarjota yleisölle kauniita hetkiä rakkauden äärellä. Konsertin päätyttyä huomaat, että vaikka laulu hetkeksi vaikenee, tunteet jäävät elämään”, Lundberg sanoo.</p><p>Amadeus Lundberg on julkaissut uransa aikana kaikkiaan viisi sooloalbumia. Lundbergin ohjelmistoon kuuluu erityisen paljon vanhojen suomalaisten mestarien lauluja.</p><p>Tässä tunnelmallisessa ja intiimissä konsertissa Amadeus Lundbergia säestävät viulisti Lotta Marien sekä harmonikkataiteilija ja kosketinsoittaja Samuli Jokinen.</p><p>Kesto: 2 t, sis. väliajan 20 min</p>",
                "sv": "<p>Tangokunden från år 2009 Amadeus Lundberg är en ständig favorit inom den finländska underhållningsmusiken.</p><p>År 2024 blir det 15 år sedan Amadeus Lundberg kröntes till tangokung på Tangomarknaden. För att fira jubileet anordnas konsertturnén Romanssi, där Lundberg sveper med sig publiken i en känslofylld stämning med sina lysnade tolkningar.</p><p>Amadeus Lundberg framför de vackraste kärlekssångerna och många finländska och internationella evergreens, såsom Romanssi, Solamente una Vez och Con Te Partirò.</p><p>“Romantik ligger mig varmt om hjärtat och jag vill erbjuda publiken vackra ögonblick av kärlek. Efter konserten inser man att även om sången tystnar för en stund, så lever känslorna kvar”, säger Lundberg.</p><p>Amadeus Lundberg har släppt totalt fem soloalbum under sin karriär. Lundbergs repertoar är särskilt rik på sånger av de gamla finländska mästarna.</p><p>I denna stämningsfulla och intima konsert ackompanjeras Amadeus Lundberg av violinisten Lotta Marien och dragspelskonstnären och keyboardisten Samuli Jokinen.</p>",
                "en": "<p>Amadeus Lundberg, the tango king of 2009, is a lifelong favourite in Finnish light music.</p><p>In 2024, it will be 15 years since Amadeus Lundberg was crowned tango king at the Tangomarkkinat festival. To celebrate the anniversary, he is holding a concert tour called Romanssi, in which Lundberg will lull the listeners into a sensitive atmosphere with his stunning interpretations.</p><p>Amadeus Lundberg performs the most beautiful love songs, as well as many evergreen Finnish and foreign songs, such as Romanssi, Solamente una Vez and Con Te Partirò.</p><p>“Romance is close to my heart and I want to offer the audience beautiful moments of love. At the end of the concert, you will notice that even if the song is quiet for a while, the emotions will live on,” Lundberg says.</p><p>During his career, Amadeus Lundberg has released five solo albums. Lundberg's repertoire includes an especially large amount of songs by old Finnish masters.</p><p>In this atmospheric and intimate concert, Amadeus Lundberg is accompanied by violinist Lotta Marie and accordionist and keyboardist Samuli Jokinen.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Amadeus Lundberg: Romanssi",
                "sv": "Amadeus Lundberg: Romanssi-konsert",
                "en": "Amadeus Lundberg: Romanssi concert"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A60B26B2853596B14B9AB2369B18190F/Amadeus_Lundberg_Romanssi",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A60B26B2853596B14B9AB2369B18190F/Amadeus_Lundberg_Romanssi-konsert",
                "en": "http://www.malmitalo.fi/en/events/event/A60B26B2853596B14B9AB2369B18190F/Amadeus_Lundberg_Romanssi_concert"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63758/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64077",
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p21812/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152140,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-19T12:14:52.824899Z",
                    "last_modified_time": "2024-08-19T12:14:52.824925Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755510.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152140/?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-19T12:14:52.776739Z",
            "last_modified_time": "2024-09-30T11:28:01.005118Z",
            "date_published": null,
            "start_time": "2024-09-30",
            "end_time": "2024-10-13",
            "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,
            "short_description": {
                "fi": "Kiasma-teatterin URB-festivaalin nuoret kuraattorit, Lucian Lóven, Aarni Pieski ja Gabriel Karhu, tuovat omat näyttelyprojektinsa esiin Kulttuurikeskus Stoaan!",
                "sv": "De unga kuratorerna för URB-festivalen framför en helhet av verk och evenemang i Stoas galleri i oktober.",
                "en": "The young curators of the URB festival will implement a series of works and events in the Stoa Gallery in October."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Kiasma-teatterin URB-festivaalin nuoret kuraattorit, Lucian Lóven, Aarni Pieski ja Gabriel Karhu, tuovat omat näyttelyprojektinsa esiin Kulttuurikeskus Stoaan!</p><p>Kolmen näyttelyn sarjassa nähdään pitkäkestoisia ääniteoksia, performansseja, valokuvia stadilaisesta näkökulmasta sekä räppiä ja kirjoja Trans Library Helsingistä.</p><p><b>30.9.–4.10.2024<br>Aimo Eräkorpi & Sophia Mitiku: sss</b><br><b>Lucian Lovénin</b> kuratoimassa kolmipäiväisessä äänitapahtumassa kuullaan Sophia Mitikun ja Aimo Eräkorven ainutlaatuinen ääni-installaatio, joka syventyy polyrytmisiin ja fonisiin äänimaisemiin.</p><p>Avajaiset Stoan galleriassa ma 30.9.2024 klo 16.  Ääniteos on kuultavissa galleriatilassa pe 4.10.2024 asti, minkä jälkeen osa teoksesta on kuultavissa Stoan pihalla 15.10.2024 saakka.</p><p><b>5.–9.10.2024<br>Aarni Pieski: Boahttevuođa vássánáigi</b><br>Boahttevuođa vássánáigi -näyttely tutkii, miten kääntää katse pois länsimaisista arkistoinnin tavoista ja laajentaa arkiston käsitettä? Millaisia tarinoita ja kokemuksia käyttövaatteen kangas on imenyt itseensä, mitä kaikkea joki on nähnyt?</p><p><b>Aarni Pieskin</b> kuratoimassa näyttelyssä nähdään teoksia Carmen Baltzarilta, Elina Waage Mikalsenilta ja Helmi Hagelinilta. Mukana on myös Trans Library Helsinki.</p><p>Avajaiset Stoan galleriassa la 5.10.2024 klo 17–19, esiintyjänä LA LEÓN.</p><p><b>10.–13.10.2024<br>Mila Milax: Soul of Helsinki</b><br><b>Gabriel Karhun</b> kuratoima Mila Milaxin kuvista koostuva Soul of Helsinki -valokuvanäyttely on intohimon, luovuuden ja mahdollisuuksien teemoja kantava kokonaisuus stadilaisesta näkökulmasta. Näyttelyn keskiössä on kaupungin sielu, kertoen tarinoita kaupunkilaisista, jotka elävät intohimonsa, yhteisöllisyyden ja tavoitteidensa kautta.</p><p>Avajaiset to 10.10.2024 klo 18–20, avajaisissa esiintyvät Räppihäkki, Meilinn sekä Wibe & Erde.</p>",
                "sv": "<p>De unga kuratorerna för URB-festivalen framför en helhet av verk och evenemang i Stoas galleri i oktober.</p><p><b>Aarni Pieski</b> är skribent, dramaturg och kurator. Han är intresserad av sambanden och dynamiken hos människor och andra levande entiteter; av kollektiva erfarenheter och trauman; av förlorade, dolda och bevarade historier ur queert perspektiv och urfolksperspektiv. Just nu söker han befrielse och drömmer om ett fritt Palestina.</p><p><b>Lucian Lovén</b> är en musiker, ljuddesigner och kurator från Helsingfors. I sin praktik studerar han intersektionell konst och olika sensoriska och känslomässiga upplevelser som konsten kan skapa. Han fokuserar sitt arbete på ljud, rymd och rörelse. Med sitt arbete vill han skapa rum där olika konstformer och konstupplevare möts och interagerar med varandra.</p><p><b>Gabriel Karhu</b> är en streetdansare, DJ och målare med lång erfarenhet. För tillfället är Gabriel en del av kollektiven FDC och EPIC fam, och tillsammans med dem deltar han aktivt i tävlingar på dansevenemang av alla storlekar. Sedan 2024 har Gabriel också varit en del av Finlands landslag i breaking. Hans rörliga och visuella uttryck har sitt ursprung i populärkultur, gemenskap och nöje. Det viktigaste för Gabriel är att skapa konst i stunden, oavsett hur lång den är.</p>",
                "en": "<p>The young curators of the URB festival will implement a series of works and events in the Stoa Gallery in October.</p><p><b>Aarni Pieski</b> is a writer, dramaturge and curator. He is interested in the connections and dynamics of people and other living entities; collective experiences and traumas; lost, hidden and preserved histories from the queer and indigenous perspectives. At the moment, he is seeking liberation and dreams of a free Palestine.</p><p><b>Lucian Lovén</b> is a Helsinki-based musician, sound designer and curator. In his praxis, he studies intersectional art and various sensory and emotional experiences with art. His work focuses on sound, space and movement. In his work, he wants to create spaces where different art forms and people experiencing art meet and interact with each other.</p><p><b>Gabriel Karhu</b> is an experienced street dancer, DJ and painter. Currently, Gabriel is part of the FDC and EPIC fam collectives, with which he actively competes at dance events of all sizes. Since 2024, Gabriel has also been part of the Finnish national breakdance team. His movement-based and visual expression is rooted in popular culture, a sense community and having fun. The most important thing for Gabriel is to create art in an instant moment, regardless of its duration.</p>"
            },
            "provider": null,
            "name": {
                "fi": "URB-festivaali & nuoret kuraattorit – Aarni Pieski, Lucian Lovén, Gabriel Karhu",
                "sv": "URB-festivalen och unga kuratorer – Aarni Pieski, Lucian Lovén, Gabriel Karhu",
                "en": "URB Festival & young curators – Aarni Pieski, Lucian Lovén, Gabriel Karhu"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D46A9610CA26704B208732348C6C2F44/URB-festivaali_nuoret_kuraattorit",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D46A9610CA26704B208732348C6C2F44/URB-festivalen_och_unga_kuratorer",
                "en": "http://www.stoa.fi/en/events/event/D46A9610CA26704B208732348C6C2F44/URB_Festival_young_curators"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64077/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64631",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152627,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-30T09:37:45.120934Z",
                    "last_modified_time": "2024-09-30T09:37:45.120956Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758274.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152627/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-30T09:37:45.105739Z",
            "last_modified_time": "2024-09-30T09:37:45.163544Z",
            "date_published": null,
            "start_time": "2024-11-01T15: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,
            "short_description": {
                "fi": "Näyttelykävelyn aikana pääset sekä tutustumaan taiteeseen että reippailemaan kauniissa Vuosaaressa."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Näyttelykävelyn aikana pääset sekä tutustumaan taiteeseen että reippailemaan kauniissa Vuosaaressa.</p><p>Tervetuloa tutustumaan näyttelyyn taiteilijan kanssa Vuotalon galleriaan, jonka jälkeen kävelemme yhdessä Villa Lil Kallvikin näyttelyyn. Ota vaikka mukaan ystävä, joka ei ennen ole käynyt Villassa! Taiteilijaoppaan avulla löydät varmasti perille taiteen äärelle.</p><p>Kävelyreitin pituus on noin 1 kilometri.</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Taiteilijatalo säteilee: Näyttelykävely – Vuotalosta Villaan -näyttelyn oheisohjelmaa"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A93A6BC96653262FC1B85456D778D241/Taiteilijatalo_sateilee_Nayttelykavely"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64631/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64630",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152626,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-30T09:37:43.986933Z",
                    "last_modified_time": "2024-09-30T09:37:43.986946Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758273.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152626/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-30T09:37:43.975824Z",
            "last_modified_time": "2024-09-30T09:37:44.022292Z",
            "date_published": null,
            "start_time": "2024-10-24T14: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,
            "short_description": {
                "fi": "Näyttelykävelyn aikana pääset sekä tutustumaan taiteeseen että reippailemaan kauniissa Vuosaaressa."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Näyttelykävelyn aikana pääset sekä tutustumaan taiteeseen että reippailemaan kauniissa Vuosaaressa.</p><p>Tervetuloa tutustumaan näyttelyyn taiteilijan kanssa Vuotalon galleriaan, jonka jälkeen kävelemme yhdessä Villa Lil Kallvikin näyttelyyn. Ota vaikka mukaan ystävä, joka ei ennen ole käynyt Villassa! Taiteilijaoppaan avulla löydät varmasti perille taiteen äärelle.</p><p>Kävelyreitin pituus on noin 1 kilometri.</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Taiteilijatalo säteilee: Näyttelykävely – Vuotalosta Villaan -näyttelyn oheisohjelmaa"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/81E6467404757C4934A3DCA1EFE485B9/Taiteilijatalo_sateilee_Nayttelykavely"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64630/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64629",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152625,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-30T09:37:43.064532Z",
                    "last_modified_time": "2024-09-30T09:37:43.064546Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758272.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-30T09:37:43.052967Z",
            "last_modified_time": "2024-09-30T09:37:43.101059Z",
            "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,
            "short_description": {
                "fi": "Näyttelykävelyn aikana pääset sekä tutustumaan taiteeseen että reippailemaan kauniissa Vuosaaressa."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Näyttelykävelyn aikana pääset sekä tutustumaan taiteeseen että reippailemaan kauniissa Vuosaaressa.</p><p>Tervetuloa tutustumaan näyttelyyn taiteilijan kanssa Vuotalon galleriaan, jonka jälkeen kävelemme yhdessä Villa Lil Kallvikin näyttelyyn. Ota vaikka mukaan ystävä, joka ei ennen ole käynyt Villassa! Taiteilijaoppaan avulla löydät varmasti perille taiteen äärelle.</p><p>Kävelyreitin pituus on noin 1 kilometri.</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Taiteilijatalo säteilee: Näyttelykävely – Vuotalosta Villaan -näyttelyn oheisohjelmaa"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3AC6C1E31CBE7D396471C2CB06A01C7C/Taiteilijatalo_sateilee_Nayttelykavely"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64629/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64628",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152624,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-30T09:37:41.100661Z",
                    "last_modified_time": "2024-09-30T09:37:41.100676Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758271.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152624/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-30T09:37:41.087052Z",
            "last_modified_time": "2024-09-30T09:37:41.161445Z",
            "date_published": null,
            "start_time": "2024-10-10T16: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,
            "short_description": {
                "fi": "Performanssi alkaa Vuotalosta klo 19 ja päättyy Villa Lill Kallvikiin."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Performanssi alkaa Vuotalosta klo 19 ja päättyy Villa Lill Kallvikiin.</p><p>Performanssin esiintyjät Abdissa ”Mamba” Assefa, Hepa Halme ja Willem Wilhelmus.<br> <br>Kävelyreitin pituus on noin 1 kilometri. <br>Esityksen kesto on noin 1 tunti.</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Taiteilijatalo säteilee: Performanssi – Vuotalosta villaan -näyttelyn oheisohjelmaa"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7B804556DF246A0FFABC17CB31335DD0/Taiteilijatalo_sateilee_Performanssi"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64628/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64627",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152623,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-29T01:32:04.024206Z",
                    "last_modified_time": "2024-09-29T01:32:04.024228Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758813.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152623/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-29T01:32:03.994328Z",
            "last_modified_time": "2024-09-29T01:32:04.098888Z",
            "date_published": null,
            "start_time": "2024-10-02T15: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,
            "short_description": {
                "fi": "Vuonna 1961 kylmän sodan aikaan Dag Hammarskjöldilla on vielä vuosi jäljellä tehtävässään YK:n pääsihteerinä. Tämän jälkeen hän aikoo muuttaa taloonsa Österleniin ja nauttia suuresti odotetusta vapaudesta.",
                "sv": "1961 har Dag Hammarskjöld ett år kvar på sin post som FN:s Generalsekreterare. Därefter ska han flytta till sitt hus på Österlen och den efterlängtade friheten.",
                "en": "New York City, 1961. At the peak of the Cold War, the charismatic diplomat and economist Dag Hammarskjöld has reached the pinnacle of his power, serving as Secretary-General of the United Nations in his seventh year."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Vuonna 1961 kylmän sodan aikaan Dag Hammarskjöldilla on vielä vuosi jäljellä tehtävässään YK:n pääsihteerinä. Tämän jälkeen hän aikoo muuttaa taloonsa Österleniin ja nauttia suuresti odotetusta vapaudesta.</p><p>Samanaikaisesti kylmä sota riehuu täydessä voimassaan keskipisteenään Kongon tilanne. Hammarskjöld ottaa tehtäväkseen välittää rauhaa ja yhtenäisyyttä maassa. Monien mielestä tämä on mahdoton tehtävä. Toisten mielestä itsemurhamissio.<br>Ohjaus: Per Fly<br>Käsikirjoitus: Per Fly, Ulf Ryberg<br>Näyttelijät: Mikael Persbrandt, Francis Chouler, Richard Brake, Sara Soulié, Hakeem Kae-Kazim, Sanna Sundqvist, Urs Rechn, Brian Caspe<br>Genre: Draama, trilleri<br>Kesto: 1h 54min<br>Tuotantomaa: Ruotsi<br>Tuotantovuosi: 2023<br>Kieli: Enimmäkseen englantia mutta myös ruotsia<br>Tekstitys: Sekä suomi että ruotsi<br>K16<br>Vapaa pääsy</p><p>Elokuva on saanut Nordisk Film & TV Fondin levitystukea sekä se on yhteisrahoitettu Euroopan unionin Luova Eurooppa -ohjelmassa.</p><p>Järj Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa<br>www.vuotalo.fi</p>",
                "sv": "<p>1961 har Dag Hammarskjöld ett år kvar på sin post som FN:s Generalsekreterare. Därefter ska han flytta till sitt hus på Österlen och den efterlängtade friheten.</p><p>Men samtidigt rasar det Kalla Kriget för fullt, och brännpunkten ligger i Kongo. Dag Hammarskjöld tar på sig uppdraget att mäkla fred och enighet i landet. Ett omöjligt uppdrag, enligt många. Ett självmordsuppdrag, enligt andra.<br>Regi: Per Fly<br>Manus: Per Fly, Ulf Ryberg<br>Skådespelare: Mikael Persbrandt, Francis Chouler, Richard Brake, Sara Soulié, Hakeem Kae-Kazim, Sanna Sundqvist, Urs Rechn, Brian Caspe<br>Genre: Drama, thriller<br>Speltid: 1h 54min<br>Land: Sverige<br>År: 2023<br>Tal: Mest engelska men också svenska<br>Text: Både svenska och finska<br>F16<br>Fri entré</p><p>Filmen har fått distributionsstöd av Nordisk Film & TV Fond och är samfinansierad av Europeiska Unionens Kreativa Europa-program.</p><p>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>",
                "en": "<p>New York City, 1961. At the peak of the Cold War, the charismatic diplomat and economist Dag Hammarskjöld has reached the pinnacle of his power, serving as Secretary-General of the United Nations in his seventh year.</p><p>After decolonization, he takes it upon himself to bring peace to the African countries, thwarting plans to further exploit resources of both powerful entrepreneurs and world leaders. His life is turned upside down when his old friend Peter shows up in New York. Dag realizes that he has missed out on an important part of life and starts questioning his unprecedented devotion and dedication to his job and vision. When UN peacekeepers are killed in open battle in the Congo, the Secretary-General sees no other way than to impose peace by new measures and leads the UN troops on their first war mission. Well aware that his enemies might gather to plot against him, he boards a plane in a final attempt to negotiate a cease-fire…</p><p>Director: Per Fly<br>Actors: Mikael Persbrandt, Francis Chouler, Richard Brake, Sara Soulié, Hakeem Kae-Kazim, Sanna Sundqvist, Urs Rechn, Brian Caspe<br>Genre: Drama, thriller<br>Durations: 1h 54min<br>Country: Sweden<br>Year: 2023<br>Sound: Mostly english but also swedish<br>Subtitles: Finnish and Swedish<br>Age limit: 16<br>Free entry</p><p>The film is distributed by the Nordic Film & TV Foundation and is co-financed by the European Unions Creative Europe-program.</p><p>Org. Finlandssvenskt filmcentrum in cooperation with Vuotalo.<br>www.vuotalo.fi</p>"
            },
            "provider": null,
            "name": {
                "fi": "Hammarskjöld – Onsdagsbio",
                "sv": "Hammarskjöld – Onsdagsbio",
                "en": "Hammarskjöld – Onsdagsbio"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/52F7CDC91A3F48EB1664AE14005E7141/Hammarskjold",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/52F7CDC91A3F48EB1664AE14005E7141/Hammarskjold",
                "en": "http://www.vuotalo.fi/en/events/event/52F7CDC91A3F48EB1664AE14005E7141/Hammarskjold"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64627/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63983",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151905,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-26T06:15:25.314442Z",
                    "last_modified_time": "2024-07-26T06:15:25.314461Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753860.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151905/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T06:15:25.286620Z",
            "last_modified_time": "2024-09-27T12:15:15.724439Z",
            "date_published": null,
            "start_time": "2024-10-04T15:00:00Z",
            "end_time": "2024-10-04T18:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä. Tänään lavalla Musase Quintet ja Skatterheads Ltd!",
                "sv": "Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö. I kväll hör vi Musase Quintet och Skatterheads Ltd!",
                "en": "Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment. Tonight we’ll meet Musase Quintet and Skatterheads Ltd!"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä. Tänään lavalla Musase Quintet ja Skatterheads Ltd!</p><p><b>Musase Quintet</b><br>”Haluamme tuoda valoa, toivoa ja iloa ihmisten elämään.” – Oletko valmis lähtemään rajat ylittävälle musiikilliselle matkalle? Musase Quintet on Suomessa vaikuttava sensaatio, joka määrittelee afrobeat-, funk- ja maailmanmusiikkikentän uudelleen.</p><p>Tansanian ja Suomen lumoavista maisemista lähtöisin oleva Musase Quintet kokoaa yhteen joukon poikkeuksellisen lahjakkaita muusikoita, joista kukin tuo oman ainutlaatuisen vivahteensa yhtyeen aivan omanlaiseen soundiin. Se hakee innoituksensa afrobeatin ja erityisesti tansanialaisen musiikin rikkaista perinteistä yhdistäen niitä funkin grooveen ja maailmanmusiikin moninaisiin elementteihin ja tarjoaa siis unohtumattoman musiikillisen elämyksen.</p><p><b>Skatterheads Ltd</b><br>SKATTERHEADS LTD. on elinvoimainen ensimmäisen aallon ska-yhtye, joka on omistautunut elvyttämään genren alkulähteiden energiset ja nopeatempoiset rytmit. Tuotantomme tavoitteena on tuoda skan ajaton soundi nykypäivän yleisöille sekoittamalla klassisia vaikutteita moderneihin vivahteisiin. Juhlistamme genren juuria, jotka ovat 1960-luvun Jamaikalla, ja yhdistämme musiikkiin erilaisia kulttuurielementtejä ja nykyvaikutteita.</p><p>Osallisuus ja monimuotoisuus ovat tuotantomme ytimessä. Bändimme jäsenet ovat kotoisin Mosambikista, Suomesta, Kreikasta, Brasiliasta, Yhdysvalloista, Nigeriasta ja Tansaniasta, mikä heijastaa erilaisten kulttuurivaikutteiden rikasta kirjoa. Tämä monimuotoisuus ei ainoastaan rikastuta musiikillista tyyliämme, vaan myös edistää yhteistyöhön perustuvaa ilmapiiriä, jossa erilaisia näkökulmia arvostetaan ja otetaan huomioon. Pyrimme aktiivisesti luomaan osallistavan tilan yleisöllemme ja yhteistyökumppaneillemme, jotta musiikki vastaisi monenlaisten kuulijoiden tarpeisiin ja edistäisi elinvoimaista, monikulttuurista musiikkimaisemaa.<br> <br>Kokoonpano<br>Omotola Adeshina - laulu + saksofoni<br>Genevieve Andreasen - laulu<br>Aarne Toivonen - rummut + laulu<br>Baraka Issabu - piano<br>Fabio DeOliveira - kitara<br>Devina Boughton - trumpetti<br>Jaakko Arola - saksofoni<br>Vasileios Katopodis - basso</p><p>Global Club Nights -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen ja siltojen rakentaminen kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja Kanneltalon kanssa.</p><p>Tapahtumilla pyritään rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Kulttuurikeskus Kanneltalo tuottaa Global Club Nights (GCN) -illat yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman kanssa. Marraskuun 15. päivänä järjestettävä Global Club Nights on osa Etnosoi! -festivaalia.</p>",
                "sv": "<p>Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö. I kväll hör vi Musase Quintet och Skatterheads Ltd!</p><p><b>Musase Quintet</b><br>\"Vi vill föra in ljus, hopp och glädje i människors liv.\" – Är du redo att ge dig ut på en gränsöverskridande musikalisk resa? Musase Quintet är en sensation i Finland. Gruppen omdefinierar afrobeat-, funk- och världsmusikscenen.</p><p>Musase Quintet har sitt ursprung i de förtrollande landskapen i Tanzania och i Finland och samlar ihop en grupp exceptionellt begåvade musiker, som var och en ger en unik twist till bandets personliga sound. De hämtar sin inspiration från de rika traditionerna av afrobeat och särskilt tanzanisk musik som de kombinerar med groove i funk och många element i världsmusiken, och bjuder alltså på en oförglömlig musikalisk upplevelse.</p><p><b>Skatterheads Ltd</b><br>SKATTERHEADS LTD. är ett livfullt första vågens skaband med målet att återuppliva de energiska och glättiga rytmerna från genrens ursprung. Med vår produktion vill vi ta det tidlösa soundet av ska till den samtida publiken och blanda klassiska influenser med moderna inslag. Vi hyllar genrens rötter i 1960-talets Jamaica samtidigt som vi låter vår musik genomsyras av olika kulturella element och samtida influenser.</p><p>Inkludering och mångfald är kärnan i vår produktion. Våra bandmedlemmar kommer från Moçambique, Finland, Grekland, Brasilien, USA, Nigeria och Tanzania, vilket skapar en rik väv av kulturella influenser. Mångfalden berikar inte bara vår musikaliska stil, utan främjar också en samarbetsmiljö där olika perspektiv värdesätts och integreras. Vi arbetar aktivt för att skapa ett inkluderande utrymme för vår publik och våra samarbetspartner för att säkerställa att vår musik får gehör hos ett brett utbud av lyssnare och bidrar till ett livfullt, mångkulturellt musikaliskt landskap.<br> <br>Ensemble<br>Omotola Adeshina – sång + saxofon<br>Genevieve Andreasen – sång<br>Aarne Toivonen – trummor + sång<br>Baraka Issabu – piano<br>Fabio DeOliveira – gitarr<br>Devina Boughton – trumpet<br>Jaakko Arola – saxofon<br>Vasileios Katopodis – bas</p><p>Syftet med klubbarna är att skapa en trygg, inkluderande och kreativ miljö och bygga broar mellan alla musikälskare och deras gemenskaper. Global Club Nights har producerats i samarbete med avdelningen för global musik vid Sibelius-Akademin och Gamlasgården.</p><p>Evenemangen syftar till att bygga broar mellan alla musikälskare och deras gemenskaper. Kulturcentret Gamlasgården producerar Global Club Nights (GCN)-kvällarna i samarbete med Sibelius-Akademins utbildningsprogram Global Music. Global Club Nights som ordnas den 15 november är en del av Etnosoi!-festivalen.</p>",
                "en": "<p>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment. Tonight we’ll meet Musase Quintet and Skatterheads Ltd!</p><p><b>Musase Quintet</b><br>“Giving light, hope and joy in life is our treasure.” – Are you ready to embark on a musical journey that transcends borders? Look no further than Musase Quintet, the Finland-based sensation that's redefining the Afrobeat, funk, and world music scene.</p><p>Hailing from the enchanting landscapes of Tanzania and Finland, Musase Quintet brings together a group of exceptionally talented musicians, each contributing their unique flair to create a sound that's truly one-of-a-kind. Inspired by the rich traditions of Afrobeat and particularly the Tanzanian music landscape, infused with the groove of funk, and sprinkled with diverse world music elements, Musase Quintet promises an unforgettable auditory experience.</p><p><b>Skatterheads Ltd</b><br>SKATTERHEADS LTD. is a vibrant first wave ska band dedicated to reviving the energetic and upbeat rhythms of the genre's origins. Our production aims to bring the timeless sounds of ska to contemporary audiences, blending classic influences with modern twists. We celebrate the genre's roots in 1960s Jamaica while infusing our music with diverse cultural elements and contemporary influences.</p><p>Inclusion and diversity are at the core of our production. Our band members hail from Mozambique, Finland, Greece, Brazil, USA, Nigeria, and Tanzania, reflecting a rich tapestry of cultural influences. This diversity not only enriches our musical style but also fosters a collaborative environment where different perspectives are valued and integrated. We actively seek to create an inclusive space for our audience and collaborators, ensuring our music resonates with a wide range of listeners and contributes to a vibrant, multicultural musical landscape.<br> <br><b>Ensemble</b><br>Omotola Adeshina - Vocals + Sax<br>Genevieve Andreasen - Vocals<br>Aarne Toivonen - Drums + Vocals<br>Baraka Issabu - Piano<br>Fabio DeOliveira - Guitar<br>Devina Boughton - Trumpet<br>Jaakko Arola -  Sax<br>Vasileios Katopodis - Bass</p><p>The aim of the clubs is to create a safe, inclusive and creative environment and build bridges between all music lovers and their communities. Global Club Nights has been produced in cooperation with the Sibelius Academy’s Global Music Department and Kanneltalo.</p><p>The events aim to build bridges between all music lovers and their communities. Kanneltalo cultural centre produces Global Club Nights (GCN) evenings in cooperation with the Sibelius Academy’s Global Music study programme. Global Club Nights arranged on 15 November is part of the Etnosoi! festival.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Musase Quintet | Skatterheads Ltd – Global Club Nights",
                "sv": "Musase Quintet | Skatterheads Ltd – Global Club Nights",
                "en": "Musase Quintet | Skatterheads Ltd – Global Club Nights"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D4F7478CF54206985964F79A3A22C35D/Musase_Quintet_Skatterheads_Ltd",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D4F7478CF54206985964F79A3A22C35D/Musase_Quintet_Skatterheads_Ltd",
                "en": "http://www.kanneltalo.fi/en/events/event/D4F7478CF54206985964F79A3A22C35D/Musase_Quintet_Skatterheads_Ltd"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63983/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}