Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 19239,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=168",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=166"
    },
    "data": [
        {
            "id": "kulke:64506",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 €",
                        "sv": "15 €",
                        "en": "15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/benny-ja-muumit/#calendar-start=2024-10",
                        "sv": "https://www.lippu.fi/artist/benny-ja-muumit/#calendar-start=2024-10",
                        "en": "https://www.lippu.fi/artist/benny-ja-muumit/#calendar-start=2024-10"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152284,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-04T10:14:58.896102Z",
                    "last_modified_time": "2024-09-04T10:14:58.896123Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756299.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152284/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-09-04T10:14:58.870094Z",
            "last_modified_time": "2024-09-04T10:14:58.974060Z",
            "date_published": null,
            "start_time": "2024-10-15T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Saduilla on yleensä onnellinen loppu. Niin myös Muumikonserteilla!</p><p>Benny Törnroos ja Muumiperhe ovat loppusuoralla, ja esiintyvät enää vain muutaman kerran. Tunnelma onkin siksi katossa – muistot elävät, ja yhdessä lauletaan, tömistellään ja tanssitaan niin kuin ennen. Muumipeikon tähtihetki koittaa yhdessä Mamman, Papan, Nipsun ja Pikku Myyn seurassa – ja tietysti sinun kanssasi. Tervetuloa!</p><p>Kesto: n. 60 min<br>Kaksikielinen: suomi ja ruotsi</p><p>Liput: à 15 € Lippu.fi tai lippuautomaatilta ovella.</p>",
                "sv": "<p>Alla sagor har ett lyckligt slut. Så är det också med Muminkonserterna!</p><p>Benny Törnroos och Mumintrollen är på slutrakan och endast några konserter återstår. Kom med och fira finalen tillsammans med Mamman, Pappan, Sniff och Lilla My i konserten Mumintrollet och stjärnan. Vi dansar, skuttar och stampar så att hela huset darrar när vi sjunger Papapaaa... Mamamaaa. Välkommen. Vi ses!</p><p>Längd: ca 60 min<br>Tvåspråkig svenska-finska.</p><p>Bilj. à 15 € från Lippu.fi eller från biljettautomaten vid dörren.</p>",
                "en": "<p>Fairy tales usually have a happy ending. So too, do Moomin concerts!</p><p>Benny Törnroos and the Moomin family are almost done, and will only perform a few more times. The atmosphere is therefore through the roof – memories live on, and together we sing, stomp and dance as we used to. Moomintroll's star moment comes together with Mama, Papa, Sniff and Little My – and of course with you. Welcome!</p><p>Duration: approx. 60 min<br>Bilingual: Finnish and Swedish</p><p>Tickets: 15 € from Lippu.fi or from the ticket machine at the door</p>"
            },
            "short_description": {
                "fi": "Saduilla on yleensä onnellinen loppu. Niin myös Muumikonserteilla!",
                "sv": "Alla sagor har ett lyckligt slut. Så är det också med Muminkonserterna!",
                "en": "Fairy tales usually have a happy ending. So too, do Moomin concerts!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Benny Törnroos & Muumipeikon tähtihetki",
                "sv": "Benny Törnroos & Mumintrollet och stjärnan",
                "en": "Benny Törnroos & the Moomintroll´s star moment"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/23AC912729A4E5245EF9CF05BB8A9AEF/Benny_Tornroos_Muumipeikon_tahtihetki",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/23AC912729A4E5245EF9CF05BB8A9AEF/Benny_Tornroos_Mumintrollet_och_stjarnan",
                "en": "http://www.vuotalo.fi/en/events/event/23AC912729A4E5245EF9CF05BB8A9AEF/Benny_Tornroos_the_Moomintroll_s_star_moment"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64506/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3zgpqmu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-04T09:47:27.227481Z",
            "last_modified_time": "2024-09-04T09:47:27.227504Z",
            "date_published": null,
            "start_time": "2024-09-22T10:00:00Z",
            "end_time": "2024-09-22T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>POC-lukupiirin lukuhetki&nbsp;</p><p>lapsiperheille su 22.9. klo 13-14.30&nbsp;</p><p>POC = People of Color =&nbsp;mustat ja ruskeat ihmiset&nbsp;</p><p>POC-lukupiirin lukuhetki lapsiperheille on ihan kaikille avoin tapahtuma, johon ei tarvitse&nbsp;ilmoittautua etukäteen. Tapahtumassa on tarjolla myös pientä evästä!&nbsp;</p><p>POC-lukupiirin Aracelis ja Téri saapuvat Sellon kirjastoon jakamaan&nbsp;</p><p>perheille kirjavinkkejä POC-kirjailijoilta ja lukemaan ääneen lastenkirjoja.&nbsp;</p><p>Tapahtumassa pääsee tutustumaan ja lainaamaan kotiin POCkirjailijoiden&nbsp;</p><p>lastenkirjoja, joissa seikkailee mustia ja ruskeita hahmoja!&nbsp;</p><p>Tervetuloa koko perheen voimin Sellon kirjastoon tutustumaan&nbsp;</p><p>moninaista representaatiota sisältävään lastenkirjallisuuteen!&nbsp;</p><p>POC-lukupiiri pyrkii nostamaan POC-kirjailijoiden teoksia esiin ja&nbsp;</p><p>vaikuttamaan siihen, että saisimme nauttia monimuotoisemmasta&nbsp;</p><p>representaatiosta kirjallisuudessa.</p>",
                "sv": "<p>POC läsecirkel lästimme&nbsp;</p><p><br></p><p>för barnfamiljer sön 22.9. kl. 13-14.30&nbsp;</p><p><br></p><p>POC = People of Color = svarta och bruna människor&nbsp;</p><p><br></p><p>POC:s läsecirkelläsningstimme för barnfamiljer är ett evenemang som är öppet för alla, så du behöver inte anmäla dig i förväg. Det kommer också att finnas snacks tillgängliga!&nbsp;</p><p><br></p><p>Aracelis och Téri från POC Reading Circle kommer till Sellos bibliotek för att dela med sig av sina berättelser.&nbsp;</p><p><br></p><p>Evenemanget är en möjlighet att upptäcka och låna böcker från POC-författare och ta med dem hem.&nbsp;</p><p><br></p><p>POC Reading Circle har som mål att lyfta fram POC-författarnas verk och göra dem kända för allmänheten.&nbsp;</p>",
                "en": "<p>POC reading circle reading time&nbsp;</p><p>for families with children on Sun 22.9. at 13-14.30&nbsp;</p><p>POC = People of Color =&nbsp; black and brown people&nbsp;</p><p><br></p><p>The POC Reading Circle Reading Hour for families with children is an event open to all, so you don't have to&nbsp; register in advance. There will also be snacks available!&nbsp;</p><p><br></p><p>Aracelis and Téri from the POC Reading Circle will come to the Sello library to share their stories.&nbsp;</p><p><br></p><p>The event is an opportunity to discover and borrow books from POC authors and take them home.&nbsp;</p><p><br></p><p>The POC Reading Circle aims to highlight the works of POC authors and to bring them to the attention of the public.&nbsp;</p><p><br></p><p><br></p><p><br></p>"
            },
            "short_description": {
                "fi": "POC-lukupiirin lukuhetki  lapsiperheille",
                "sv": "POC läsecirkel lästid  för familjer med barn",
                "en": "POC reading circle reading time  for families with children"
            },
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "name": {
                "fi": "POC-lukupiirin lukuhetki  lapsiperheille",
                "sv": "POC läsecirkel lästid  för familjer med barn",
                "en": "POC reading circle reading time  for families with children"
            },
            "provider": {
                "fi": "POC-lukupiiri",
                "sv": "POC läsecirkel ",
                "en": "POC reading circle"
            },
            "provider_contact_info": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3zgpqmu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64176",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kulttuurikeskus-caisa-club-kiihko-10-syytae-valita-karhu-kulttuurikeskus-caisa-18891761/",
                        "sv": "https://www.lippu.fi/event/kulttuurikeskus-caisa-club-kiihko-10-syytae-valita-karhu-kulttuurikeskus-caisa-18891761/",
                        "en": "https://www.lippu.fi/event/kulttuurikeskus-caisa-club-kiihko-10-syytae-valita-karhu-kulttuurikeskus-caisa-18891761/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151664,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-04T13:13:14.905704Z",
                    "last_modified_time": "2024-07-04T13:13:14.905718Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753870.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151664/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-04T13:13:14.891454Z",
            "last_modified_time": "2024-09-04T08:13:56.540462Z",
            "date_published": null,
            "start_time": "2024-09-28T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Fiktiivinen myöhäisillan keskusteluohjelma, jossa on vieraina esiintyviä taiteilijoita. Tule mukaan yleisöön kokemaan kanssamme stand uppia, dragia, burleskia, huumoriviihdettä ja mahdollisesti osallistumaan mukaan peleihin.</p><p>10 Hyvää syytä valita Karhu ammentaa myyttien ja fiktion karhuista sekä \"man vs. bear\" -sosiaalisen median ilmiöstä. Klubi ottaa taiteen ja huumorin keinoin osaa yhteiskunnalliseen keskusteluun sukupuolittuneesta väkivallasta, jossa naisista puhutaan väkivallan kohteina, mutta ei miehistä väkivallan tekijöinä.<br> <br>Esiintyjät: <br>Hedda Liukkala<br>Helena Haaparanta<br>Katri Kainulainen & Maximilian Latva <br>Mildred Prude<br>Raisa Omaheimo<br>Vamp Master Brown</p><p>Club Kiihko on leikkimielinen, villi ja provosoiva queer-feministinen taideklubi, joka tuo räävittömästi yhteen erilaisia esittäviä taiteita - pitämättä niitä omissa poteroissaan.</p><p>Kiihko-kollektiivi on vuonna 2022 syntynyt esitystaiteen ryhmä, jonka muodostavat ohjaaja, esitystaiteilija ja teatteritaiteen maisteri <b>Vili von Nissinen</b>, antropologi, tuottaja, burleski- ja drag-taiteilija </b>Milla Heikkinen</b> sekä taiteilija </b>Tia Carolina Ihalainen</b>.</p><p>Esityksessä on teatterisavua, kovia ääniä ja vilkkuvia valoja.</p><p>Kesto: 1,5 h<br>Ikäsuositus: K-18</p><p>Liput: 15 € / 6 € osoitteesta Lippu.fi<br>Avustaja tai tulkki ilmaiseksi.</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi.<u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">Lue lisää kulttuurikavereista täältä</u></a></p><p>Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Club Kiihko är en lekfull, vild och provocerande queer-feministisk konstklubb som skamlöst sammanför olika former av scenkonst – utan att hålla dem i sina egna fack.</p><p>Kiihko-kollektiivi är en scenkonstgrupp som uppstod år 2022 och som består av regisssör, scenkonstnär och magister i teaterkonst Vili von Nissinen, antropolog, producent, burlesk- och dragkonstnär Milla Heikkinen och konstnär Tia Carolina Ihalainen.</p><p>Observera att innehållet omfattar teaterrök, höga ljud och blinkande ljus.</p>",
                "en": "<p>Club Kiihko is a playful, wild and provocative queer-feminist art club that presents an obscene blend of different performing arts – all mixed in together.</p><p>Kiihko Collective is a performing arts group that was founded in 2022, whose members are director, performance artists and Master of Theatre Vili von Nissinen; anthropologist, producer, burlesque and drag performer Milla Heikkinen; and artist Tia Carolina Ihalainen.</p><p>Notice that performance includes: theatre smoke, loud sounds and blinking lights.</p>"
            },
            "short_description": {
                "fi": "Fiktiivinen myöhäisillan keskusteluohjelma, jossa on vieraina esiintyviä taiteilijoita. Tule mukaan yleisöön kokemaan kanssamme stand uppia, dragia, burleskia, huumoriviihdettä ja mahdollisesti osallistumaan mukaan peleihin.",
                "sv": "Club Kiihko är en lekfull, vild och provocerande queer-feministisk konstklubb som skamlöst sammanför olika former av scenkonst – utan att hålla dem i sina egna fack.",
                "en": "Club Kiihko is a playful, wild and provocative queer-feminist art club that presents an obscene blend of different performing arts – all mixed in together."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Club Kiihko: 10 hyvää syytä valita karhu",
                "sv": "Club Kiihko: 10 hyvää syytä valita karhu",
                "en": "Club Kiihko: 10 hyvää syytä valita karhu"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1BFBBA09132D54C80A11776908A6C6AC/Club_Kiihko_10_hyvaa_syyta_valita_karhu",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1BFBBA09132D54C80A11776908A6C6AC/Club_Kiihko_10_hyvaa_syyta_valita_karhu",
                "en": "http://www.caisa.fi/en/events/event/1BFBBA09132D54C80A11776908A6C6AC/Club_Kiihko_10_hyvaa_syyta_valita_karhu"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64176/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64407",
            "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: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:733/?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:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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: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": 152211,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-23T14:15:46.370079Z",
                    "last_modified_time": "2024-08-23T14:15:46.370097Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757131.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152211/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-23T14:15:46.323480Z",
            "last_modified_time": "2024-09-04T08:13:55.131830Z",
            "date_published": null,
            "start_time": "2024-09-21T12:00:00Z",
            "end_time": "2024-09-21T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Sunflower Film Festival on monikielinen elokuvafestivaali, joka on rakennettu rauhan teeman ympärille.</p><p>Ohjelmassa on elokuvia, jotka tarjoavat näkökulman Lähi-idässä asuvien tai sieltä lähtevien ihmisten arkeen ja kulttuurimaisemaan. Elokuvat kertovat elämästä sotien ulkopuolella.</p><p>Tapahtumassa on myös paneelikeskustelu, jossa pohditaan taiteen roolia rauhankasvatuksessa.</p><p><b>Ohjelma</b></p><p><b>klo 15 Tervetuloa</b></p><p><b>klo 15.10–15.20 Lyhytelokuvia</b></p><p>Elokuvissa on englanninkielinen tekstitys.</p><p><b>Rakkauden tanssi (Dance of Love)</b><br>Dokumentti Rakkauden tanssi kertoo vanhan miehen ja naisen elämästä. Nainen on kärsinyt diabeteksesta ja Alzheimerin taudista 16 vuotta. Hän ei ole käynyt ulkona seitsemään vuoteen, ja hänen miehensä pitää hänestä huolta. Rakkaus vaimoa kohtaan on saanut miehen maalaamaan kaikki takapihan seinät.<br>Ohjaaja ja tuottaja: Mohammad Farajzadeh<br>Kesto: 7 min</p><p><b>Viimeinen halaus (The Last Embrace)</b><br>Lyhytelokuva siitä, miten internetiin uppoutuminen voi saada perheen jättämään ympärillä tapahtuvat mullistavat asiat huomiotta.<br>Ohjaaja: Saman Hosseinpuor<br>Kesto: 4 min</p><p><b>klo 15.20 Paneelikeskustelu</b> <br>Mikä on taiteen rooli rauhankasvatuksessa? <br>Miten kulttuuri ja taide voi edistää toivoa, aktivismia ja rauhaa?<br>Keskustelemassa FM, tutkija, YAMK kulttuurituottaja Salla Raunio, säveltäjä Marouf Majidi sekä näyttelijä-ohjaaja ja käsikirjoittaja Ali Al-Saffu. Suomenkielisen keskustelun juontaa toimittaja Zuzan Rasulzade.</p><p><b>klo 16.20 Tauko</b></p><p><b>klo 16.30 Lyhytelokuvia</b><br>Elokuvissa on englanninkielinen tekstitys.</p><p><b>Elämä on poissa (Life is gone)</b><br>Elämä on poissa -elokuva kertoo iäkkäästä naisesta, joka muistaa kaikki lapsuutensa katkerat muistot, kun hän näkee leijan putoavan talonsa pihalla olevaan puuhun ja tekee sen seurauksena suuren päätöksen....<br>Ohjaaja ja tuottaja: Siavash Saedpanah<br>Kesto: 7 min.</p><p><b>Musta & valkoinen (Black & White)</b><br>Tarina nuoresta naisesta, joka ei pidä isänsä työstä, mutta joka joutuu kuitenkin jatkamaan ammattia isän kuoleman jälkeen. Miten hän pärjää?<br>Ohjaaja ja tuottaja: Jalal Saedpanah<br>Kesto: 19 min</p><p><b>Viides narsissi (Fifth Narcissus)</b><br>Katukauppiaana työskentelevä lapsi myy narsisseja tienvarressa. Joka kerta, kun hän myy kukan, tapahtuu samanlainen kokemus.<br>Ohjaaja ja tuottaja: Sarkawt Nikdel<br>Kesto: 5 min</p><p><b>Zagrosin seitsemän sinfoniaa (7 Symphonies of the Zagros)</b><br>Seitsemän on pyhä luku monissa uskonnoissa. Dokumentti kertoo vanhimman puhallinsoittimen shamshalin seitsemän musiikillisen maqamin filosofiasta.<br>Ohjaaja: Parviz Rostami<br>Tuottajat: Parviz Rostami & Parviz Rostami & Iranian Youth Cinema Society – Kurdistanin toimisto<br>Kesto: 23 min</p><p><b>Covid 69</b> <br>Terveiden sukupuolten välisten suhteiden puutteesta joutuu maksamaan koko yhteiskunta.<br>Ohjaaja ja tuottaja: Kareemok Ghafour<br>14 min</p><p><b>Suolan myyjät (Salt Sellers)</b><br>Raskaana oleva nainen, joka asuu ja myy miehensä kanssa suolaa Urmia-järven rannalla, on vaarassa saada keskenmenon ilmastonmuutoksen ja inhimillisten tekijöiden aiheuttamien suolamyrskyjen vaikutuksesta.<br>Ohjaaja: Maryam Samadi<br>Tuottajat: Inna Tedžoeva Zina Broyan<br>Kesto: 15 min</p><p><b>Yhtäkkiä tuuli (Suddenly the Wind)</b> <br>Isä lähtee poikansa kanssa metsästämään, mutta poika ei halua tappaa lintuja. Sen sijaan hän yrittää suojella heitä leijallaan.<br>Ohjaaja ja tuottaja: Edris Samani<br>Kesto: 8 min<br> <br>Ohjelman tuotanto ja suunnittelu: Rasoul Khorram</p>",
                "sv": "<p>Sunflower Film Festival är en flerspråkig filmfestival som är uppbyggd kring temat fred.</p><p>På programmet står filmer som erbjuder ett perspektiv på det vardagliga och kulturella landskapet för människorna som bor i eller lämnar Mellanöstern. Filmer handlar om livet utanför krig. Under evenemanget hålls också en paneldiskussion om konstens roll i fredsutbildningen.</p><p><b>Program</b></p><p>kl 15 Välkommen</p><p>kl 15.10–15.20 Kortfilmer<br>Filmerna har engelska undertexter.</p><p>Dance of Love (Kärlekens dans) <br>Dokumentären Dance of Love handlar om ett gammalt par och deras liv. Kvinnan har lidit av diabetes och Alzheimers i 16 år, och har inte lämnat hemmet på sju år. Hennes man tar hand om henne. Hans kärlek till sin fru har fått honom att måla alla väggarna på bakgården för henne.<br>Regissör & producent: Mohammad Farajzadeh</p><p>The Last Embrace (Den sista omfamningen)<br>En kort film om hur enbart fokus på saker online kan få en familj att inte lägga märke till livsförändrande händelser omkring dem.<br>Regissör: Saman Hosseinpuor</p><p>kl 15.20 Paneldiskussion<br>Vilken roll spelar konsten i fredsutbildningen? <br>Hur kan kultur och konst främja hopp, aktivism och fred?<br>I diskussionen deltar Salla Raunio, fil. mag., forskare, högre YH kulturproducent, Marouf Majidi, kompositör, och Ali Al-Saffu, skådespelare, regissör och manusförfattare. Den finskspråkiga diskussionen leds av journalisten Zuzan Rasulzade.</p><p>kl 16.20 Paus</p><p>kl 16.30 Kortfilmer<br>Filmerna har engelska undertexter.</p><p>Life is gone (Livet är borta)<br>Filmen Life gone with the wind (Livet borta med vinden) handlar om en äldre kvinna som minns alla de bittra minnena från sin barndom när hon ser en drake falla på trädet vid hennes hus, vilket får henne att fatta ett avgörande beslut att…<br>Regissör & producent: Siavash Saedpanah<br>7 min.</p><p>Black & White (Svartvitt)<br>En berättelse om en ung kvinna som inte gillar sin pappas jobb, men som måste ta sig an yrket efter hans död. Hur ska hon klara det?<br>Regissör & producent: Jalal Saedpanah<br>19 min.</p><p>Fifth Narcissus (Femte narcissen)<br>Ett barn som jobbar som gatuförsäljare säljer narcisser vid vägkanten. Varje gång han säljer en blomma uppstår en liknande upplevelse.<br>Regissör & producent: Sarkawt Nikdel<br>5 min.</p><p>7 Symphonies of the Zagros (Zagros sju symfonier)<br>Sju är ett heligt tal i många religioner. Den här dokumentären berättar om filosofin kring det äldsta blåsinstrumentet shamshals sju musikaliska maqamer.<br>Regissör: Parviz Rostami<br>Producenter: Parviz Rostami & Parviz Rostami & Iranian Youth Cinema Society – Kurdistan Office<br>23 min.</p><p>Covid 69 <br>I brist på sunda könsförhållanden betalar hela samhället priset.<br>Regissör & producent: Kareemok Ghafour<br>14 min. <br> <br>Salt Sellers (Saltförsäljare)<br>En gravid kvinna som bor och säljer salt tillsammans med sin man vid Urmiasjön riskerar få missfall på grund av effekterna av saltstormar orsakade av klimatförändringen och mänskliga faktorer.<br>Regissör: Maryam Samadi<br>Producenter: Inna Tedzhoeva Zina Broyan<br>15 min.<br> <br>Suddenly the Wind (Plötsligt vinden) <br>En pappa går på jakt med sin son, men pojken vill inte döda fåglarna. Istället försöker han skydda dem med sin drake.<br>Regissör & producent: Edris Samani<br>8 min.</p>",
                "en": "<p>Sunflower Film and Photo Festival is a multilingual film festival built around the theme of peace.</p><p>The programme features films that offer a perspective on the everyday lives and cultural and natural landscape of people living in or leaving the Middle East. The films tell the story of life outside the wars.</p><p>The films are subtitled in English.</p><p><b>Schedule</b></p><p>15:00 Welcome</p><p>15:10-15:20 Short films</p><p>Dance of Love <br>The documentary Dance of Love is about the life of an old man and woman. The woman has been suffering from diabetes and Alzheimer's for 16 years. And she hasn't come out in seven years. Her husband takes care of her. His love for his wife has led him to paint all the walls of his backyard for her.<br>Director & Producer: Mohammad Farajzadeh<br>7 min</p><p>The Last Embrace<br>A short film about how focusing only on things online can make a family not notice life-changing events around them.<br>Director: Saman Hosseinpuor <br>Producer: Saman Hosseinpuor & The Artistic Center of<br>4 min</p><p>15:20 Panel Discussion<br>How can culture and art promote hope, activism and peace?</p><p>16:20 Break</p><p>16:30 Short films<br> <br>Life is Gone <br>The film Life is Gone about an elderly woman who remembers all the bitter memories of her childhood when she sees a kite falling on the tree of her house and as a result makes a big decision to…<br>Director & Producer: Siavash Saedpanah<br>7 min</p><p>Black & White<br>A story of a young woman who doesn’t like her father’s job, but has to pick up the profession after his death. How will she manage? <br>Director & Producer: Jalal Saedpanah<br>19 min</p><p>Fifth Narcissus<br>A child who works as a street vendor sells Narcissus by the roadside. Each time he sells a flower a similar experience unfolds.<br>Director & Producer: Sarkawt Nikdel<br>5 min</p><p>7 Symphonies of the Zagros<br>Seven is a sacred number in many religions. This documentary narrates the philosophy of 7 musical Maqams of the oldest wind instrument Shamshal.<br>Director: Parviz Rostami <br>Producers: Parviz Rostami & Parviz Rostami & Iranian Youth Cinema Society – Kurdistan Office<br>23 min</p><p>Covid 69 <br>In the absence of healthy gender relations, society as a whole pays the price.<br>Director & Producer: Kareemok Ghafour<br>14 min <br> <br>Salt Sellers<br>A pregnant woman who lives and sells salt with her husband by Lake Urmia; is facing the risk of miscarriage because of the impact of salt storms caused by climate change and human factors.<br>Director: Maryam Samadi<br>Producers: Inna Tedzhoeva Zina Broyan<br>15 min<br> <br>Suddenly the Wind <br>A father goes hunting with his son, but the boy does not want to kill the birds. Instead, he tries to protect them with his kite.<br>Director & Producer: Edris Samani<br>8 min</p><p>The Sunflower festival is produced by journalist-documentarian Rasoul Khorram.</p>"
            },
            "short_description": {
                "fi": "Sunflower Film Festival on monikielinen elokuvafestivaali, joka on rakennettu rauhan teeman ympärille.",
                "sv": "Sunflower Film Festival är en flerspråkig filmfestival som är uppbyggd kring temat fred.",
                "en": "Sunflower Film and Photo Festival is a multilingual film festival built around the theme of peace."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sunflower Film Festival & paneelikeskustelu",
                "sv": "Sunflower Film Festival & Paneldiskussion",
                "en": "Sunflower Film Festival & Panel Discussion"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/6109103F98D0347F6FAF92685E7149B3/Sunflower_Film_Festival_paneelikeskustelu",
                "sv": "http://www.stoa.fi/sv/evenemang/event/6109103F98D0347F6FAF92685E7149B3/Sunflower_Film_Festival_Paneldiskussion",
                "en": "http://www.stoa.fi/en/events/event/6109103F98D0347F6FAF92685E7149B3/Sunflower_Film_Festival_Panel_Discussion"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64407/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64242",
            "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:33/?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: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/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?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": 151808,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T12:15:45.580000Z",
                    "last_modified_time": "2024-07-24T12:15:45.580050Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756157.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-24T12:15:45.547955Z",
            "last_modified_time": "2024-09-03T12:13:37.615130Z",
            "date_published": null,
            "start_time": "2024-09-14T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.</p><p>Äiti tahtoo toimia, isoäiti toppuuttelee ja koulukuraattori on omituisen vaitelias. Osapuolia yhdistää halu ymmärtää, mitä itse asiassa on tapahtunut – ja ennen kaikkea, kenen on syy?</p><p>M – merkintöjä yhden malmilaisen tapauksesta pureutuu kaupunginosayhteisöä kohdanneen katoamistapauksen kautta sukupolvien välisen ymmärtämättömyyden, vallankäytön ja yhteiskunnallisen vastakkainasettelun teemoihin. Eri puolilla Malmin kaupunkitilaa tapahtuva esitys kysyy, kenellä on valta päättää, mihin kenenkin tulisi oma elämänsä käyttää – kuka päättää, miten täällä ollaan?</p><p>Esitys on osa Helsingin Kaupunginteatterin ja Q-teatterin Malmilla toteuttamaa, asukkaita osallistavaa yhteisöteatteritoimintaa. Teemoja, aihealueita ja tekstimateriaalia käsikirjoitukseen on poimittu muun muassa erilaisista Malmilla järjestetyistä teatterityöpajoista ja muista taidetoiminnoista. Teoksessa esiintyy kahdeksan näyttelijää Q-teatterin yhteisöteatterista sekä suuri joukko eri-ikäisiä osallistujia Malmilta ja lähialueelta.</p><p>Esitys tapahtuu eri puolilla Malmia, ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esiintyjät: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Käsikirjoitus ja ohjaus: Janne Puustinen ja Tuomo Rämö<br>Yhteisöteatteriohjaaja: Meiju Pax<br>Äänisuunnittelu ja sävellys: Aleksi Kinnunen<br>Pukusuunnittelu: Fiona Timantti<br>Graafinen suunnittelu: Malmi Vice<br>Tuotanto: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Malmin Novan liiketilan lavastussuunnittelu: Anna Pietilä ja Lasten ja nuorten arkkitehtuurikoulu Arkki</p><p>Yhteistyössä: Kaupunkiolohuone Kohtaus, partiolippukunta Sinivuoren Soihdut, Kauppakeskus Malmin Nova, Kulttuurikeskus Malmitalo, Ravintola Teeritupa, Fallkullan kotieläintila sekä PopUp Kesäkahvila Raparperitaivas.</p><p>Kiitämme työpajatoimintaan osallistuneita tahoja: Kaupunkiolohuone Kohtaus, Stadin ammatti- ja aikuisopisto Vilppulantie, A-kilta, Malmin poluilla -kävelyoppaat, Päiväkoti Suvi-Vilppula, Hietakummun ala-asteen koulu, Senioritytöt, Leikkiväki Malmi</p><p>Kesto: 2,5 t<br>Suosittelemme esitystä yli 13-vuotiaille<br>Kieli: suomi</p><p><b>Vapaa pääsy, ennakkoilmoittautuminen!</b><br>Ilmoittaudu mukaan tämän linkin kautta: https://www.lyyti.fi/reg/M-esitys</p><p>Esitys tapahtuu eri puolilla Malmia ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esitys on Helsingin Kaupunginteatterin alueellisen Pääroolissa Malmi -taidehankkeen sekä Q-teatterin yhteisöteatterin yhteistuotanto. Toiminta on osa Helsingin kaupungin osallistavan kulttuurityön mallia, Helsingin mallia.</p><p><b>Lisätiedot:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>",
                "sv": "<p>En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.</p><p>Mamman vill agera, mormodern vill hålla tillbaka och skolkuratorn är märkligt tystlåten. Parterna förenas av en önskan att förstå vad som egentligen har hänt – och framför allt: vems fel det är!</p><p>M – merkintöjä yhden malmilaisen tapauksesta utforskar teman såsom missförstånd mellan generationer, maktutövning och samhälleliga motsättningar via ett fall av en försvunnen person i stadsdelen. Föreställningen äger rum i olika delar av Malms stadsrum, och ställer frågan om vem som har makten att bestämma vad man ska använda sitt liv till – vem bestämmer hur man ska vara här?</p><p>Föreställningen är en del av Helsingin Kaupunginteatteris och Q-teatteris gemenskapsteaterverksamhet i Malm, som delaktiggör invånarna. Temana, ämnesområdena och textmaterialet för manuset har inhämtats bland annat från olika teaterworkshoppar och andra konstaktiviteter som anordnats i Malm. I föreställningen medverkar åtta skådespelare från Q-teatteris gemenskapsteater och ett stort antal deltagare i olika åldrar från Malm och närområdet.</p><p>Föreställningen äger rum i olika delar av Malm, och publiken går omkring med skådespelarna. Föreställningen är inte tillgänglighetsanpassad, under föreställningen promenerar vi och använder trappor.</p><p>Artister: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Manus och regi: Janne Puustinen och Tuomo Rämö<br>Gemenskapsteaterregissör: Meiju Pax<br>Ljuddesign och komposition: Aleksi Kinnunen<br>Kostymdesign: Fiona Timantti<br>Grafisk design: Malmi Vice<br>Produktion: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Scenografi för Malmin Novas affärsutrymme: Anna Pietilä och arkitekturskolan Arkki för barn och unga</p><p>I samarbete: Stadsvardagsrummet Kohtaus, scoutkåren Sinivuoren Soihdut, köpcentret Malmin Nova, Malms kulturhus, restaurang Teeritupa, hemdjursgården Fallkulla och PopUp-sommarcaféet Raparperitaivas.</p><p>Vi vill tacka alla som deltog i workshopparna: Stadsvardagsrummet Kohtaus, yrkesinstitutet Stadin ammatti- ja aikuisopisto Filpusvägen, A-Guild, Malmin poluilla-vandringsguiderna, daghemmet Suvi-Vilppula, Hietakummun ala-aste, Senioritytöt, Leikkiväki Malmi</p><p>Längd: 2,5 h<br>Vi rekommenderar föreställningen för över 13-åringar<br>Språk: finska</p><p><b>Fritt inträde, föranmälan via länken:</b> https://www.lyyti.fi/reg/M-esitys</p><p>Föreställningen är en samproduktion mellan Helsingin Kaupunginteatteris regionala konstprojekt Pääroolissa Malmi och Q-teatteris gemenskapsteater. Verksamheten är en del av Helsingfors stads modell för delaktiggörande kulturarbete, Helsingforsmodellen.</p><p><b>Mer information:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>",
                "en": "<p>In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance.</p><p>The mother wants to act, the grandmother is wants to hit the brakes, and the school curator is, strangely, saying nothing. Everyone is united by a desire to understand what has actually happened – and above all, whose fault is it?</p><p>M – notes on the case of a person from Malmi delves into the themes of a generational gap, in understanding, power and social confrontation, through a missing-person case that has shakes the community of the city district. The show, which takes place in different parts of Malmi, asks: who has the power to decide what to spend their own life on – who decides the way you should carry yourself?</p><p>The performance is part of the Helsinki City Theatre and Q-teatteri’s community theatre activities in Malmi, which involves residents. Themes, topics and text material for the script have been picked, for example, from various theatre workshops and other art activities held at Malmi. The work features eight actors from the community theatre of Q-teatteri, as well as a large number of participants of different ages from Malmi and the surrounding area.</p><p>The performance takes place in different parts of Malmi, and the audience travels with the performers. The performance is not accessible, during the performance you walk and climb stairs.</p><p>Performers: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Script and direction: Janne Puustinen and Tuomo Rämö<br>Community theatre director: Meiju Pax<br>Sound design and composition: Aleksi Kinnunen<br>Costume design: Fiona Timantti<br>Graphic design: Malmi Vice<br>Production: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>The stage design for Malmin Nova's commercial area: Anna Pietilä and Arkki School of Architecture for Children and Youth</p><p>In cooperation with: Urban Living Room Kohtaus, Scout Troop Sinivuoren Soihdut, Shopping Centre Malmin Nova, Cultural Centre Malmitalo, Restaurant Teeritupa, Fallkulla Domestic Animal Farm and PopUp Summer Café Raparperitaivas.</p><p>We thank everyone who participated in the workshop activities: Urban Living Room Kohtaus, Helsinki Vocational College at Vilppulantie, A-kilta, Malmi Trails Walking Guides, Suvi-Vilppula Daycare, Hietakumpu Elementary School, Senioritytöt, Leikkiväki Malmi</p><p>Duration: 2.5 h<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Free admission, pre-registration via link:</b>  https://www.lyyti.fi/reg/M-esitys</p><p>The performance is a co-production of the Helsinki City Theatre's regional Malmi art project and Q-teatteri's community theatre. The activities are a part of the City of Helsinki's model for participatory cultural work, i.e. the Helsinki model.</p><p><b>More info:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>"
            },
            "short_description": {
                "fi": "Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.",
                "sv": "En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.",
                "en": "In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance."
            },
            "location_extra_info": null,
            "name": {
                "fi": "M - Merkintöjä yhden malmilaisen tapauksesta",
                "sv": "M - Merkintöjä yhden malmilaisen tapauksesta",
                "en": "M - Merkintöjä yhden malmilaisen tapauksesta"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2610EA67AB13F10050E9D36F5AB1A583/M_-_Merkintoja_yhden_malmilaisen_tapauksesta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2610EA67AB13F10050E9D36F5AB1A583/M_-_Merkintoja_yhden_malmilaisen_tapauksesta",
                "en": "http://www.malmitalo.fi/en/events/event/2610EA67AB13F10050E9D36F5AB1A583/M_-_Merkintoja_yhden_malmilaisen_tapauksesta"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64242/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3pxzmta",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-03T11:20:09.512726Z",
            "last_modified_time": "2024-09-03T11:20:09.512748Z",
            "date_published": null,
            "start_time": "2024-10-15T14:30:00Z",
            "end_time": "2024-10-15T14:50:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Syyskeiju ja Menninkäinen on kuvitteelliseen&nbsp;taikametsään sijoittuva fantasiasatu. </p><p>Teoksen keoreografiasta ja esiintymisestä vastaavat Välikoski Kantola Co:n tanssitaiteilijat Ville Välikoski ja Katriina Kantola. </p><p>Syyskeiju ja Menninkäinen -esitys on yllättävä ja raikas tanssitaiteellinen&nbsp;tervehdys arjen keskellä. Teos tarkastelee kuinka kahdesta eri maailmasta tulevaa olentoa, Syyskeiju ja&nbsp;Menninkäinen, voivat löytää yhteisen kielen ja tavan kommunikoida keskenään. Erilaisuus voi aiheuttaa kohtaamattomuutta ja pelkoa sekä johtaa vetäytymiseen ja sulkeutumiseen. Kuinka löytää suvaitsevaisuutta ja rohkeutta kohdata omat pelot ja tuntematon? Teos ehdottaa avoimuuden ja kuuntelun mahdollisuutta uutta kohdatessa.</p><p>Esityksessä kuullaan kanteletaiteilija Hanna Ryynäsen musiikkia hänen Taite-albumiltaan. Kantelemusiikki luo yhdessä tanssijoiden hahmojen kanssa esitykseen salaperäisen taikametsän. Esitys päättyy yhteiseen tanssiin Syyskeijun ja Menninkäisen kanssa. Katsojat voivat liittyä mukaan yhteiseen tanssiin tai seurata sitä etäältä.</p><p><br></p><p>Esitys ei sisällä puhetta vaan tarina kerrotaan tanssin, liikkeen ja musiikin keinoin. Teos on suunnattu kaikenikäiselle ja -kieliselle yleisölle. </p><p><br></p><p>Koreografia ja esiintyminen: </p><p>Välikoski Kantola Co / Ville Välikoski ja Katriina Kantola </p><p>Tuotanto: Välikoski Kantola Co ja Physical Opera </p><p>Musiikki: Hanna Ryynänen Taite-albumi</p><p>Esityskiertueen tukija: Espoon kaupunki </p><p>Esityksen kesto: 20 minuuttia </p><p> </p><p> ____________________________________________________________</p><p> </p><p> Lisätiedot: </p><p> </p><p> Katriina Kantola, tanssitaiteilija </p><p> katriina.kantola@gmail.com / www.katriinakantola.com </p><p> </p><p> Ville Välikoski, tanssitaiteilija&nbsp;</p><p> ville.valikoski@gmail.com / www.villevalikoski.com </p>",
                "sv": "<p>The Autumn Fairy and the Munchkin är en fantasy-saga som utspelar sig i en fiktiv magisk skog.&nbsp;</p><p><br></p><p>Verket är koreograferat och framfört av Välikoski Kantola Co:s danskonstnärer Ville Välikoski och Katriina Kantola.&nbsp;</p><p><br></p><p>Föreställningen innehåller inget tal, utan historien berättas med hjälp av dans, rörelse och musik. Verket riktar sig till en publik i alla åldrar och med olika språk.&nbsp;</p><p><br></p><p>Koreografi och framförande:&nbsp;</p><p>Välikoski Kantola Co / Ville Välikoski och Katriina Kantola&nbsp;</p><p>Produktion: Välikoski Kantola Co och Physical Opera&nbsp;</p><p>Musik: Hanna Ryynänen Konstalbum</p><p>Turnésponsor: Esbo stad&nbsp;</p><p><br></p><p>Föreställningens längd: 20 minuter&nbsp;</p><p>Evenemanget är öppet för alla och avgiftsfritt.&nbsp;</p>",
                "en": "<p>The Autumn Fairy and the Munchkin is a fantasy fairy tale set in a fictional magical forest.&nbsp;</p><p>The work is choreographed and performed by Välikoski Kantola Co's dance artists Ville Välikoski and Katriina Kantola.&nbsp;</p><p>The performance does not include speech, but the story is told through dance, movement and music. The work is aimed at audiences of all ages and languages.&nbsp;</p><p><br></p><p>Choreography and performance:&nbsp;</p><p>Välikoski Kantola Co / Ville Välikoski and Katriina Kantola&nbsp;</p><p>Production by Välikoski Kantola Co and Physical Opera&nbsp;</p><p>Music: Hanna Ryynänen Art album</p><p>Tour sponsor: the City of Espoo&nbsp;</p><p><br></p><p>Duration of the performance: 20 minutes&nbsp;</p><p>The event is open to everyone and free of charge. </p>"
            },
            "short_description": {
                "fi": "Syyskeiju ja Menninkäinen on kuvitteelliseen taikametsään sijoittuva fantasiasatu. ",
                "sv": "The Autumn Fairy and the Munchkin är en fantasy-saga som utspelar sig i en fiktiv magisk skog. ",
                "en": "The Autumn Fairy and the Munchkin is a fantasy fairy tale set in a fictional magical forest. "
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "name": {
                "fi": "Syyskeiju ja Menninkäinen ",
                "sv": "Syyskeiju ja Menninkäinen ",
                "en": "Syyskeiju ja Menninkäinen "
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3pxzmta/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3pkpmba",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-09-03T11:05:09.511481Z",
            "last_modified_time": "2024-09-03T11:05:09.511505Z",
            "date_published": null,
            "start_time": "2024-10-10T09:00:00Z",
            "end_time": "2024-10-10T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tervetuloa juhlimaan vanhustenviikkoa kanssamme!</p><p><br></p><p>Tapahtuman ohjelma:</p><p>Klo 12.00 Netin käytön ilot ja hyödyt, Enter Ry</p><p>Klo 13.00 Liikuntatuokio ja info, Espoon kaupunki</p><p>Klo 14.00 Jokainen ihminen on laulun arvoinen - yhteislauluja, Espoonlahden seurakunta</p><p><br></p><p>Tapahtuman järjestää:</p><p>Espoon liikuntatoimi, Enter Ry ja Kirkko Espoossa</p>",
                "sv": "<p>Välkommen att fira Äldreveckan med oss!</p><p><br></p><p>Programmet för evenemanget:</p><p><br></p><p>Kl. 12.00 glädjeämnen och fördelar med Internet, Enter Ry</p><p><br></p><p>Kl. 13.00 Motion och information, Esbo stad</p><p><br></p><p>Kl. 14.00 Varje människa är värd att sjunga - gemenskapssånger, Esbovikens församling</p><p><br></p><p>Evenemanget ordnas av:</p><p><br></p><p>Esbo stads idrottsverk, Enter Ry och Kyrkan i Esbo</p>",
                "en": "<p>Welcome to celebrate Seniors Week with us!</p><p><br></p><p>The programme of the event:</p><p><br></p><p>At 12.00 the joys and benefits of using the Internet, Enter Ry</p><p><br></p><p>13.00 Exercise session and information, City of Espoo.</p><p><br></p><p>At 14.00 Every person is worth singing - community songs, Espoonlahti church</p><p><br></p><p>The event is organised by:</p><p><br></p><p>Espoo Sports Department, Enter Ry and Church in Espoo</p>"
            },
            "short_description": {
                "fi": "Tervetuloa juhlimaan vanhustenviikkoa kanssamme!",
                "sv": "Välkommen att fira Äldreveckan med oss!",
                "en": "Welcome to celebrate Seniors Week with us!"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "name": {
                "fi": "Iloa ja eloa eläkevuosiin -vanhustenviikon tapahtuma",
                "sv": "Glädje och liv som pensionär - veckans evenemang för äldre människor",
                "en": "Joy to the retirement years- the event of the Seniors' Week"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3pkpmba/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3oa5tvu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3oa5tii/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3oa5tta/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-03T07:59:48.878029Z",
            "last_modified_time": "2024-09-03T08:14:45.968008Z",
            "date_published": null,
            "start_time": "2024-09-21T08:00:00Z",
            "end_time": "2024-09-22T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Baltic Wargaming Convention on ensimmäistä kertaa järjestettävä lautapelitapahtuma, joka keskittyy sotapeleihin. Tapahtuman järjestäjät tuovat pelisuunnittelijoita sekä pelaajia yhteen ympäri Itämerta. Lippulaivan kirjastossa olevassa tapahtumassa on mukana pelikehittäjiä Puolasta, Ruotsista sekä Suomesta esittelemässä projektejaan. Myös peliseuraa on tarjolla joko omille tai muiden tuomille peleille. Tulevaisuudessa tapahtuma kiertää ympäri Itämeren maita tapaamassa paikallisia harrastajia. Tapahtuma on kaikille avoin ja maksuton. Tervetuloa!</p>",
                "sv": "<p>Baltic Wargaming Convention är det första brädspelsevenemanget någonsin med fokus på krigsspel. Arrangörerna för evenemanget kommer att sammanföra speldesigners och spelare från hela Östersjöområdet. Under evenemanget på Flagship Library kommer spelutvecklare från Polen, Sverige och Finland att presentera sina projekt. Det kommer också att finnas en spelklubb, antingen för egna spel eller för spel som andra har tagit med sig. I framtiden kommer evenemanget att resa runt i Östersjöländerna för att träffa lokala entusiaster. Evenemanget är öppet för alla och kostnadsfritt. Välkomna att delta!</p>",
                "en": "<p>Baltic Wargaming Convention (BWC) is a new rotating boardgame convention focusing on wargames. The event organizers will bring game designers and gamers together around the Baltic Sea. The event in Lippulaiva library has designers from Poland, Sweden and Finland demoing their projects. Additionally, you can find people to play wargames with you - bring your own game or find someone to play a new game with! BWC is open to everyone and free to attend. Welcome!</p>"
            },
            "short_description": {
                "fi": "BWC on ensimmäistä kertaa järjestettävä lautapelitapahtuma, joka keskittyy sotapeleihin. Tapahtuma on kaikille avoin ja maksuton. Tervetuloa!",
                "sv": "Baltic Wargaming Convention är ett nytt roterande brädspelskonvent med fokus på krigsspel,BWC är öppet för alla och det är gratis att delta. Välkommen!",
                "en": "BWC is a new rotating boardgame convention focusing on wargames. The event is open to everyone and free to attend."
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "name": {
                "fi": "Baltic Wargaming Convention -lautapelitapahtuma aikuisille",
                "sv": "Baltic Wargaming Convention - ett brädspelsevenemang för vuxna",
                "en": "Baltic Wargaming Convention (BWC) - boardgame convention for adults"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3oa5tvu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64398",
            "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": "7 €",
                        "en": "7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152162,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T07:13:57.872685Z",
                    "last_modified_time": "2024-08-21T07:13:57.872700Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745701.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152162/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T07:13:57.859601Z",
            "last_modified_time": "2024-09-03T08:14:03.279710Z",
            "date_published": null,
            "start_time": "2024-09-13T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Scarlett Johanssonin ja Channing Tatumin tähdittämä FLY ME TO THE MOON on terävä ja tyylikäs romanttinen komedia.</p><p>Elokuva sijoittuu NASA:n historiallisen kuulennon kulisseihin, joissa panokset ovat korkealla. Kipinät sinkoilevat, kun NASA:n julkisuuskuvaa kiillottamaan palkattu markkinoinnin ihmelapsi Kelly Jones (Johansson) tekee laukaisujohtaja Cole Davisin (Tatum) ennestäänkin vaikeasta tehtävästä yhtä hullunmyllyä. Presidentti ei salli tehtävän epäonnistua, joten Jones saa tehtäväkseen lavastaa varajärjestelynä kuuhun laskeutumisen, jolloin lähtölaskenta alkaa toden teolla...</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Kesto: 132 min<br>Ikäraja 7<br>Liput 7 €</p>",
                "en": "<p>Starring Scarlett Johansson and Channing Tatum, FLY ME TO THE MOON is a sharp, stylish romantic comedy set against the high-stakes backdrop of NASA’s historic Apollo 11 moon landing.</p><p>Brought in to fix NASA’s public image, sparks fly in all directions as marketing maven Kelly Jones (Johansson) wreaks havoc on launch director Cole Davis’s (Tatum) already difficult task. When the White House deems the mission too important to fail, Jones is directed to stage a fake moon landing as back-up and the countdown truly begins…</p><p>Duration: 132 min<br>Age limit: 7<br>Tickets: 7 €</p>"
            },
            "short_description": {
                "fi": "Scarlett Johanssonin ja Channing Tatumin tähdittämä FLY ME TO THE MOON on terävä ja tyylikäs romanttinen komedia.",
                "en": "Starring Scarlett Johansson and Channing Tatum, FLY ME TO THE MOON is a sharp, stylish romantic comedy set against the high-stakes backdrop of NASA’s historic Apollo 11 moon landing."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Fly Me To The Moon (K7) – Kino Helios",
                "en": "Fly Me To The Moon (7+) – Kino Helios"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DF81CC8187CC3878E4F8ADA648808412/Fly_Me_To_The_Moon_K7_",
                "en": "http://www.malmitalo.fi/en/events/event/DF81CC8187CC3878E4F8ADA648808412/Fly_Me_To_The_Moon_7_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64398/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64413",
            "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": "7 €",
                        "en": "7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152176,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-22T08:14:41.752357Z",
                    "last_modified_time": "2024-08-22T08:14:41.752373Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745698.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152176/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-22T08:14:41.737052Z",
            "last_modified_time": "2024-09-03T08:14:02.887563Z",
            "date_published": null,
            "start_time": "2024-09-11T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Ensimmäinen Colleen Hooverin valkokankaalle sovitettu romaani kertoo mukaansatempaavan tarinan Lily Bloomista (Blake Lively), joka selviytyy traumaattisesta lapsuudesta ja aloittaa uuden elämän Bostonissa toteuttaakseen pitkäaikaisen unelmansa oman yrityksen perustamisesta.</p><p>Satunnainen tapaaminen hurmaavan neurokirurgi Ryle Kincaidin (Justin Baldoni) kanssa sytyttää vahvan kipinän heidän välillään, mutta heidän rakastuessaan syvästi Lily alkaa nähdä Rylesta puolia, jotka muistuttavat häntä hänen vanhempiensa suhteesta.</p><p>Kun Lilyn ensirakkaus, Atlas Corrigan (Brandon Sklenar), yhtäkkiä palaa hänen elämäänsä, hänen suhteensa Ryleen luhistuu, ja Lily tajuaa, että hänen täytyy oppia luottamaan omaan voimaansa tehdäkseen mahdottoman päätöksen oman tulevaisuutensa puolesta.</p><p>Elokuvan on ohjannut Justin Baldoni ja tuottanut Alex Saks, Jamey Heath ja Christy Hall. Rooleissa Blake Lively, Justin Baldoni, Jenny Slate, Hasan Minhaj, Amy Morton ja Brandon Sklenar, Christy Hallin tekemästä käsikirjoituksesta, joka perustuu Colleen Hooverin kirjaan.</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Kesto 131 min<br>Ikäraja 12<br>Liput 7 €</p>",
                "en": "<p>The first Colleen Hoover novel adapted for the big screen, tells the compelling story of Lily Bloom (Blake Lively), a woman who overcomes a traumatic childhood to embark on a new life in Boston and chase a lifelong dream of opening her own business.</p><p>A chance meeting with charming neurosurgeon Ryle Kincaid (Justin Baldoni) sparks an intense connection, but as the two fall deeply in love, Lily begins to see sides of Ryle that remind her of her parents’ relationship.</p><p>When Lily’s first love, Atlas Corrigan (Brandon Sklenar), suddenly reenters her life, her relationship with Ryle is upended, and Lily realizes she must learn to rely on her own strength to make an impossible choice for her future.</p><p>Directed by Justin Baldoni and produced by Alex Saks, Jamey Heath, and Christy Hall. The film stars Blake Lively, Justin Baldoni, Jenny Slate, Hasan Minhaj, Amy Morton and Brandon Sklenar, from a screenplay by Christy Hall, based on the book by Colleen Hoover.</p><p>Duration: 131 min<br>Age limit: 12<br>Tickets: 7 €</p>"
            },
            "short_description": {
                "fi": "Ensimmäinen Colleen Hooverin valkokankaalle sovitettu romaani kertoo mukaansatempaavan tarinan Lily Bloomista (Blake Lively), joka selviytyy traumaattisesta lapsuudesta ja aloittaa uuden elämän Bostonissa toteuttaakseen pitkäaikaisen unelmansa oman yrityksen perustamisesta.",
                "en": "The first Colleen Hoover novel adapted for the big screen, tells the compelling story of Lily Bloom (Blake Lively), a woman who overcomes a traumatic childhood to embark on a new life in Boston and chase a lifelong dream of opening her own business."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Se päättyy meihin (12) – Kino Helios",
                "en": "It Ends With Us (12+) – Kino Helios"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AF642743C81D929138B592364CF14C92/Se_paattyy_meihin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/AF642743C81D929138B592364CF14C92/It_Ends_With_Us_12_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64413/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64397",
            "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": "7 €",
                        "en": "7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152161,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T07:13:57.798129Z",
                    "last_modified_time": "2024-08-21T07:13:57.798146Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745692.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152161/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T07:13:57.784908Z",
            "last_modified_time": "2024-09-03T08:14:02.026426Z",
            "date_published": null,
            "start_time": "2024-09-06T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Scarlett Johanssonin ja Channing Tatumin tähdittämä FLY ME TO THE MOON on terävä ja tyylikäs romanttinen komedia.</p><p>Elokuva sijoittuu NASA:n historiallisen kuulennon kulisseihin, joissa panokset ovat korkealla. Kipinät sinkoilevat, kun NASA:n julkisuuskuvaa kiillottamaan palkattu markkinoinnin ihmelapsi Kelly Jones (Johansson) tekee laukaisujohtaja Cole Davisin (Tatum) ennestäänkin vaikeasta tehtävästä yhtä hullunmyllyä. Presidentti ei salli tehtävän epäonnistua, joten Jones saa tehtäväkseen lavastaa varajärjestelynä kuuhun laskeutumisen, jolloin lähtölaskenta alkaa toden teolla...</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Kesto: 132 min<br>Ikäraja 7<br>Liput 7 €</p>",
                "en": "<p>Starring Scarlett Johansson and Channing Tatum, FLY ME TO THE MOON is a sharp, stylish romantic comedy set against the high-stakes backdrop of NASA’s historic Apollo 11 moon landing.</p><p>Brought in to fix NASA’s public image, sparks fly in all directions as marketing maven Kelly Jones (Johansson) wreaks havoc on launch director Cole Davis’s (Tatum) already difficult task. When the White House deems the mission too important to fail, Jones is directed to stage a fake moon landing as back-up and the countdown truly begins…</p><p>Duration: 132 min<br>Age limit: 7<br>Tickets: 7 €</p>"
            },
            "short_description": {
                "fi": "Scarlett Johanssonin ja Channing Tatumin tähdittämä FLY ME TO THE MOON on terävä ja tyylikäs romanttinen komedia.",
                "en": "Starring Scarlett Johansson and Channing Tatum, FLY ME TO THE MOON is a sharp, stylish romantic comedy set against the high-stakes backdrop of NASA’s historic Apollo 11 moon landing."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Fly Me To The Moon (K7) – Kino Helios",
                "en": "Fly Me To The Moon (7+) – Kino Helios"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/123B11C1AFB85CA7395B3E71FCD27D1F/Fly_Me_To_The_Moon_K7_",
                "en": "http://www.malmitalo.fi/en/events/event/123B11C1AFB85CA7395B3E71FCD27D1F/Fly_Me_To_The_Moon_7_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64397/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64412",
            "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": "7 €",
                        "en": "7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152174,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-22T08:14:40.123331Z",
                    "last_modified_time": "2024-08-22T08:14:40.123355Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745689.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152174/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-22T08:14:40.085590Z",
            "last_modified_time": "2024-09-03T08:14:01.369031Z",
            "date_published": null,
            "start_time": "2024-09-04T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Ensimmäinen Colleen Hooverin valkokankaalle sovitettu romaani kertoo mukaansatempaavan tarinan Lily Bloomista (Blake Lively), joka selviytyy traumaattisesta lapsuudesta ja aloittaa uuden elämän Bostonissa toteuttaakseen pitkäaikaisen unelmansa oman yrityksen perustamisesta.</p><p>Satunnainen tapaaminen hurmaavan neurokirurgi Ryle Kincaidin (Justin Baldoni) kanssa sytyttää vahvan kipinän heidän välillään, mutta heidän rakastuessaan syvästi Lily alkaa nähdä Rylesta puolia, jotka muistuttavat häntä hänen vanhempiensa suhteesta.</p><p>Kun Lilyn ensirakkaus, Atlas Corrigan (Brandon Sklenar), yhtäkkiä palaa hänen elämäänsä, hänen suhteensa Ryleen luhistuu, ja Lily tajuaa, että hänen täytyy oppia luottamaan omaan voimaansa tehdäkseen mahdottoman päätöksen oman tulevaisuutensa puolesta.</p><p>Elokuvan on ohjannut Justin Baldoni ja tuottanut Alex Saks, Jamey Heath ja Christy Hall. Rooleissa Blake Lively, Justin Baldoni, Jenny Slate, Hasan Minhaj, Amy Morton ja Brandon Sklenar, Christy Hallin tekemästä käsikirjoituksesta, joka perustuu Colleen Hooverin kirjaan.</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Kesto 131 min<br>Ikäraja 12<br>Liput 7 €</p>",
                "en": "<p>The first Colleen Hoover novel adapted for the big screen, tells the compelling story of Lily Bloom (Blake Lively), a woman who overcomes a traumatic childhood to embark on a new life in Boston and chase a lifelong dream of opening her own business.</p><p>A chance meeting with charming neurosurgeon Ryle Kincaid (Justin Baldoni) sparks an intense connection, but as the two fall deeply in love, Lily begins to see sides of Ryle that remind her of her parents’ relationship.</p><p>When Lily’s first love, Atlas Corrigan (Brandon Sklenar), suddenly reenters her life, her relationship with Ryle is upended, and Lily realizes she must learn to rely on her own strength to make an impossible choice for her future.</p><p>Directed by Justin Baldoni and produced by Alex Saks, Jamey Heath, and Christy Hall. The film stars Blake Lively, Justin Baldoni, Jenny Slate, Hasan Minhaj, Amy Morton and Brandon Sklenar, from a screenplay by Christy Hall, based on the book by Colleen Hoover.</p><p>Duration: 131 min<br>Age limit: 12<br>Tickets: 7 €</p>"
            },
            "short_description": {
                "fi": "Ensimmäinen Colleen Hooverin valkokankaalle sovitettu romaani kertoo mukaansatempaavan tarinan Lily Bloomista (Blake Lively), joka selviytyy traumaattisesta lapsuudesta ja aloittaa uuden elämän Bostonissa toteuttaakseen pitkäaikaisen unelmansa oman yrityksen perustamisesta.",
                "en": "The first Colleen Hoover novel adapted for the big screen, tells the compelling story of Lily Bloom (Blake Lively), a woman who overcomes a traumatic childhood to embark on a new life in Boston and chase a lifelong dream of opening her own business."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Se päättyy meihin (12) – Kino Helios",
                "en": "It Ends With Us (12+) – Kino Helios"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6F125950655094FA417E47DCB12AFA56/Se_paattyy_meihin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/6F125950655094FA417E47DCB12AFA56/It_Ends_With_Us_12_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64412/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64396",
            "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": "7 €",
                        "en": "7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152160,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T07:13:57.671984Z",
                    "last_modified_time": "2024-08-21T07:13:57.672010Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745688.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152160/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T07:13:57.633844Z",
            "last_modified_time": "2024-09-03T08:14:01.293872Z",
            "date_published": null,
            "start_time": "2024-09-04T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Scarlett Johanssonin ja Channing Tatumin tähdittämä FLY ME TO THE MOON on terävä ja tyylikäs romanttinen komedia.</p><p>Elokuva sijoittuu NASA:n historiallisen kuulennon kulisseihin, joissa panokset ovat korkealla. Kipinät sinkoilevat, kun NASA:n julkisuuskuvaa kiillottamaan palkattu markkinoinnin ihmelapsi Kelly Jones (Johansson) tekee laukaisujohtaja Cole Davisin (Tatum) ennestäänkin vaikeasta tehtävästä yhtä hullunmyllyä. Presidentti ei salli tehtävän epäonnistua, joten Jones saa tehtäväkseen lavastaa varajärjestelynä kuuhun laskeutumisen, jolloin lähtölaskenta alkaa toden teolla...</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Kesto: 132 min<br>Ikäraja 7<br>Liput 7 €</p>",
                "en": "<p>Starring Scarlett Johansson and Channing Tatum, FLY ME TO THE MOON is a sharp, stylish romantic comedy set against the high-stakes backdrop of NASA’s historic Apollo 11 moon landing.</p><p>Brought in to fix NASA’s public image, sparks fly in all directions as marketing maven Kelly Jones (Johansson) wreaks havoc on launch director Cole Davis’s (Tatum) already difficult task. When the White House deems the mission too important to fail, Jones is directed to stage a fake moon landing as back-up and the countdown truly begins…</p><p>Duration: 132 min<br>Age limit: 7<br>Tickets: 7 €</p>"
            },
            "short_description": {
                "fi": "Scarlett Johanssonin ja Channing Tatumin tähdittämä FLY ME TO THE MOON on terävä ja tyylikäs romanttinen komedia.",
                "en": "Starring Scarlett Johansson and Channing Tatum, FLY ME TO THE MOON is a sharp, stylish romantic comedy set against the high-stakes backdrop of NASA’s historic Apollo 11 moon landing."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Fly Me To The Moon (K7) – Kino Helios",
                "en": "Fly Me To The Moon (7+) – Kino Helios"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/44CD5E6FDB7D08B409F635F68A50D770/Fly_Me_To_The_Moon_K7_",
                "en": "http://www.malmitalo.fi/en/events/event/44CD5E6FDB7D08B409F635F68A50D770/Fly_Me_To_The_Moon_7_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64396/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3ntir6q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?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": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntiqty/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntiq6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntira4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirdm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirf4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirii/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirkm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirnm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirqa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirsi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntiru4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirxi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir4e/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-09-03T06:55:43.738911Z",
            "last_modified_time": "2024-09-03T06:55:43.738932Z",
            "date_published": null,
            "start_time": "2024-09-03T10:30:00Z",
            "end_time": "2024-12-10T12:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>",
                "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>",
                "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>"
            },
            "short_description": {
                "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!",
                "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!",
                "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "name": {
                "fi": "Kevyt seniorijumppa",
                "sv": "Lätt senior motion",
                "en": "Light senior exercise"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "provider_contact_info": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3foi5ge",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-29T09:09:52.990117Z",
            "last_modified_time": "2024-09-02T11:36:51.320855Z",
            "date_published": "2024-09-02T04:35:00Z",
            "start_time": "2024-09-02T05:00:00Z",
            "end_time": "2024-09-22T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tanja Tuomen taidenäyttely \"Tyttäriä\" Entressen kirjaston Valatori-seinällä 2.-22.9.2024. Hymyt ja värit voivat muuttaa päivän paremmaksi!</p><p>@tanjatuomiart</p><p>Tervetuloa!</p>",
                "sv": "<p>Välkommen att besöka Tanja Tuomis utställning \"Tyttäriä\" i Entressebiblioteket under tiden 2.-22.9.2024. Utställningen kan ses under bibliotekets öpettider.</p><p>@tanjatuomiart</p><p>Välkommen!</p>",
                "en": "<p>Art exhibition \"Tyttäriä\" by Tanja Tuomi in Entresse Library during 2.-22.9.2024.</p><p>@tanjatuomiart</p><p>Welcome!</p>"
            },
            "short_description": {
                "fi": "Tanja Tuomen taidenäyttely \"Tyttäriä\" Entressen kirjaston Valatori-seinällä 2.-22.9.2024.",
                "sv": "Tanja Tuomis utställning \"Tyttäriä\" i Entressebiblioteket under tiden 2.-22.9.2024.",
                "en": "Art exhibition \"Tyttäriä\" by Tanja Tuomi in Entresse Library during 2.-22.9.2024."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Tanja Tuomi \"Tyttäriä\" 2.-22.9.2024",
                "sv": "Tanja Tuomi \"Tyttäriä\" 2.-22.9.2024",
                "en": "Tanja Tuomi \"Tyttäriä\" 2.-22.9.2024"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3foi5ge/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3es6r4q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-02T10:00:04.391385Z",
            "last_modified_time": "2024-09-02T10:19:13.154784Z",
            "date_published": "2024-09-02T10:18:00Z",
            "start_time": "2024-09-23T13:00:00Z",
            "end_time": "2024-09-23T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tervetuloa kaikille avoimeen karaoke iltamaan laulamaan lempikappaleitasi.</p>",
                "sv": "<p>Välkommen till en karaokekväll öppen för alla, där du kan sjunga dina favoritlåtar.</p>",
                "en": "<p>Welcome to a karaoke night open to all to sing your favourite songs.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa kaikille avoimeen karaoke iltamaan laulamaan lempikappaleitasi.",
                "sv": "Välkommen till en karaokekväll öppen för alla, där du kan sjunga dina favoritlåtar.",
                "en": "Welcome to a karaoke night open to all to sing your favourite songs."
            },
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "name": {
                "fi": "Karaoke iltamat",
                "sv": "Karaokekvällar",
                "en": "Karaoke night"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6r4q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3es6twq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6sie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6sme/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6spy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6st4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6sxq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6s3q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6s7q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6tde/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6the/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6tle/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6to4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6tsy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 152265,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-02T09:37:57.139443Z",
                    "last_modified_time": "2024-09-02T09:37:57.139463Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/P%C3%B6yd%C3%A4n_%C3%A4%C3%A4ress%C3%A4_2.png",
                    "cropping": "970,0,2890,1920",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva, ihmisiä pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152265/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-02T09:38:08.150106Z",
            "last_modified_time": "2024-09-02T09:38:08.150126Z",
            "date_published": null,
            "start_time": "2024-09-05T13:30:00Z",
            "end_time": "2024-12-19T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30</p><p><br></p><p>Apua työhakemusten ja CV:n laatimisessa:</p><p> Työhakemusten ja ansioluetteloiden (CV) kirjoittaminen ja muokkaaminen Valmennusta työhaastatteluihin Tietoa ja tukea työnhakuun liittyvissä kysymyksissä Neuvontaa ja ohjausta arjen asioissa.</p><p> Apua Kelan hakemusten täyttämisessä (esim. työttömyysturva, asumistuki, opintotuki) </p><p>Tukea TE-toimiston palveluissa (esim. työnhaku, työllistymissuunnitelma, koulutusmahdollisuudet)</p><p> Ohjausta sosiaalipalveluiden käytössä (esim. toimeentulotuki, sosiaalihuolto) Tukea luku- ja kirjoitustaidon kehittämisessä:</p><p> Apua lukemisen ja kirjoittamisen harjoittelussa Tukea lukivaikeuksista kärsiville Materiaaleja ja harjoituksia luku- ja kirjoitustaidon parantamiseksi Muita viranomaispalveluita:</p><p> Apua verohallinnon asioissa (esim. verokortin tilaaminen, veroilmoituksen täyttäminen) </p><p>Tukea maahanmuuttoviraston palveluissa (esim. oleskelulupahakemukset, kansalaisuushakemukset) </p><p>Ohjausta terveyspalveluiden käytössä (esim. ajanvaraukset, terveystarkastukset) </p><p>Palvelut ovat saatavilla seuraavilla kielillä: suomi, Kurdi Sorani, kurdi kurmandzi,, englanti, arabia, farsi, turkki ja venäjä.</p><p> </p><p> </p>",
                "en": "<p>Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30.</p><p><br></p><p>Help with writing job applications and CVs:</p><p>&nbsp;Writing and editing job applications and CVs Coaching for job interviews Information and support on job search issues Advice and guidance on everyday matters.</p><p><br></p><p>&nbsp;Help with filling in Kela applications (e.g. unemployment benefit, housing benefit, study grants)&nbsp;</p><p><br></p><p>Support with TE Office services (e.g. job search, employment plan, training opportunities)</p><p><br></p><p>&nbsp;Guidance in using social services (e.g. income support, social welfare) </p><p>Support in developing literacy skills:</p><p>Help with practising reading and writing </p><p>Support for people with reading difficulties </p><p>Materials and exercises to improve reading and writing skills </p><p>Other services provided by public authorities:</p><p>&nbsp;Help with tax administration (e.g. ordering a tax card, filling in a tax return)&nbsp;</p><p><br></p><p>Assistance with immigration services (e.g. residence permit applications, citizenship applications)&nbsp;</p><p>Guidance on using health services (e.g. appointments, health checks)&nbsp;</p><p><br></p><p>Services are available in the following languages: Finnish, Kurdi Sorani, Kurdi Kurmandzi,, English, Arabic, Farsi, Turkish and Russian.</p><p><br></p><p><br></p>"
            },
            "short_description": {
                "fi": "Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30.",
                "en": "Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30."
            },
            "location_extra_info": {
                "fi": "Paja",
                "en": "Paja"
            },
            "name": {
                "fi": "Ohjauspalvelua työnhakuun ja viranomaisasiointiin",
                "en": "Guidance on job search and dealing with the authorities"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3es6twq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63410",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@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": "39,40/50,40/60,40 €",
                        "sv": "39,40/50,40/60,40 €",
                        "en": "39,40/50,40/60,40 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3635254",
                        "sv": "https://www.lippu.fi/eventseries/name-3635254",
                        "en": "https://www.lippu.fi/eventseries/name-3635254"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150704,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-19T11:13:15.631697Z",
                    "last_modified_time": "2024-04-19T11:13:15.631712Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749412.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150704/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-19T11:13:15.609763Z",
            "last_modified_time": "2024-09-02T09:15:02.820461Z",
            "date_published": null,
            "start_time": "2024-09-04T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Englantilainen moderni progemetalli-yhtye Haken Savoy-teatteriin syyskuussa</p><p>Esitys alkaa klo 19, kesto n. 3h 15min</p><p>Vuonna 2007 perustettu progressiivista metallia modernilla otteella tulkitseva englantilainen Haken saapuu Helsingin Savoy-teatteriin 4. syyskuuta. ’An Evening with Haken’ -konsertissa yhtye esittää ”Fauna”-albuminsa kokonaisuudessaan lisättynä muilla helmillä bändin mittavan uran varrelta.</p><p>”Olemme halunneet tuoda täysmittaisen shown eurooppalaisille faneillemme jo pidemmän aikaa, joten olemmekin vähintäänkin innoissamme kun 'An Evening with Haken' rantautuu vihdoin Eurooppaan syyskuussa. Meillä oli niin hauskaa esittäessämme showta Amerikassa, joten tuskin maltamme odottaa että pääsemme jälleen lavalle. Hakenin musaa koko ilta: Fauna kokonaisuudessaan sekä paljon muita biisejä diskografiastamme!”</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p>",
                "sv": "<p>Det engelska samtida progemetalbandet Haken framträder på Savoy-teatern i september</p><p>Haken grundades år 2007, och är ett engelskt band som tolkar progressiv metal med modernt grepp. Haken uppträder på Savoy-teatern i Helsingfors den 4 september. På konserten “An Evening with Haken” framför bandet hela sitt album “Fauna”, plus andra pärlor från bandets omfattande karriär.</p><p>“Vi har länge önskat ge våra europeiska fans en fullständig show, så vi är minst sagt förväntansfulla när “An Evening with Haken” äntligen anländer till Europa i september. Vi hade så roligt när vi framförde showen i Amerika att vi verkligen ser fram emot att få komma upp på scenen igen. En helkväll med Hakens musik: Fauna i sin helhet och många andra låtar från vår diskografi!”</p><p>Parkett F18 servering av alkoholdrycker. Balkong T, ingen servering av alkoholdrycker.</p>",
                "en": "<p>An Evening with Haken at the Savoy theatre in Helsinki in September</p><p>Show time 19, length approx 3h 15min</p><p>UK based modern prog metal group Haken will be playing at Savoy Theatre in Helsinki on the 4th of September. ’An Evening with Haken’ concert will see the Haken performing the ”Fauna” album in it’s entirety along with numerous other gems from their career.</p><p>”We've been wanting to give the European fans a full-length show for a while now, so we are really excited to be bringing 'An Evening with Haken' to the continent in September. We had such a blast with this format in North America earlier this year, and we can't wait to do it all over again. Haken music all night, including Fauna in full and hours of other music from our discography!\"</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>"
            },
            "short_description": {
                "fi": "Englantilainen moderni progemetalli-yhtye Haken Savoy-teatteriin syyskuussa",
                "sv": "Det engelska samtida progemetalbandet Haken framträder på Savoy-teatern i september",
                "en": "An Evening with Haken at the Savoy theatre in Helsinki in September"
            },
            "location_extra_info": null,
            "name": {
                "fi": "An Evening with Haken",
                "sv": "An Evening with Haken",
                "en": "An Evening with Haken"
            },
            "provider": {
                "fi": "TuskaLive / Finnish Metal Events Oy",
                "sv": "TuskaLive / Finnish Metal Events Oy",
                "en": "TuskaLive / Finnish Metal Events Oy"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B9E4E6565A006B80BB13139A5EF00FA2/An_Evening_with_Haken_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/B9E4E6565A006B80BB13139A5EF00FA2/An_Evening_with_Haken_",
                "en": "http://www.savoyteatteri.fi/en/events/event/B9E4E6565A006B80BB13139A5EF00FA2/An_Evening_with_Haken_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63410/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3dj7bma",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-09-02T07:13:17.995874Z",
            "last_modified_time": "2024-09-02T07:13:17.995894Z",
            "date_published": null,
            "start_time": "2024-09-02T13:00:00Z",
            "end_time": "2024-09-02T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään aikaa yhdessä tyttöjen kesken!</p><p>Tyttöjen illoissa pelataan, leivotaan, askarrellaan, lakataan kynsiä ja pidetään hauskaa osallistujien toiveet huomioiden. Tapahtuma on suunnattu alakouluikäisille.</p><p>Tyttöjen iltoja ohjaavat tutut työntekijät Lippulaivan kirjastosta ja Espoon Tyttöjen Talolta. Illoissa noudatetaan turvallisemman tilan periaatteita.</p><p>Tavataan maanantaisin klo 16 - 17.30 Lippulaivan kirjastossa.</p>",
                "sv": "<p>Välkommen att spendera tid tillsammans som tjejer!</p><p>Tjejkvällar är en tid för lekar, bakning, pyssel, nagellackning och att ha roligt enligt deltagarnas önskemål. Evenemanget riktar sig till barn i lågstadieåldern.</p><p>Tjejkvällarna leds av bekant personal från Lippulaiva biblioteket och Esbo flickhus. Kvällarna följer principerna för tryggare utrymmen.</p>",
                "en": "<p>Welcome to spend time together between girls!</p><p>Girls' nights are a time for games, baking, crafts, nail polishing and having fun according to the wishes of the participants. The event is aimed at primary school children.</p><p>The girls' nights are guided by familiar staff from the Lippulaiva Library and the Espoo Tyttöjen talo. The evenings will follow the principles of safer space.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään aikaa yhdessä tyttöjen kesken!",
                "sv": "Välkommen att spendera tid tillsammans som tjejer!",
                "en": "Welcome to spend time together between girls!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Tyttöjen illat",
                "sv": "Kvällar för flickor",
                "en": "Girls' evenings"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3dj7bma/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64403",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152168,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T08:13:13.754052Z",
                    "last_modified_time": "2024-08-21T08:13:13.754065Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745700.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152168/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T08:13:13.742087Z",
            "last_modified_time": "2024-09-02T06:14:37.937021Z",
            "date_published": null,
            "start_time": "2024-09-13T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>"
            },
            "short_description": {
                "fi": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios"
            },
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FCFE94506866C6C34D35FFC3BBE536A4/Mielensapahoittajan_rakkaustarina_S_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64403/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}