Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&page=235&publisher_ancestor=ahjo%3A00001
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 11939,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=236&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=234&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:61235",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6173,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T11:13:42.808558Z",
                    "last_modified_time": "2024-02-06T13:23:41.252930Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739455.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6173/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T11:13:42.784197Z",
            "last_modified_time": "2024-05-03T14:13:32.009287Z",
            "date_published": null,
            "start_time": "2024-05-13",
            "end_time": "2024-05-18",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/728C7B548C532557A62914E4F60AEFC7/Lastenkulttuurin_juhlaviikko_Annantalolla",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/728C7B548C532557A62914E4F60AEFC7/Barnkulturens_festvecka_i_Annegarden",
                "en": "http://www.annantalo.fi/en/events/event/728C7B548C532557A62914E4F60AEFC7/Children_s_culture_week_at_Annantalo"
            },
            "provider": null,
            "description": {
                "fi": "<p>Lastenkulttuurin juhlaviikolla riemuitaan lukemisen ilosta ja kirjallisuudesta!</p><p>Kirsi Kunnaksen 100-vuotisjuhlaa juhlistavassa Runo-olohuoneessa Annantalon toisessa kerrokesessa kuullaan ja kerrotaan tarinoita pitkin viikkoa. Viikon aikana runouteen ja kirjallisuuteen perehdytään myös työpajojen ja luentojen kautta.<br> <br>Viikko huipentuu lauantaina 18.5. tapahtumapäivään, jolloin Kirsi Kunnaksen eläinaiheiset runot ja muu eläinaiheinen lastenkirjallisuus ottaa monet taiteen muodot avoimissa työpajoissa. Juhlasalissa nähdään teatteria ja kuvataidetta yhdistelevä esitys Maalarikissat.</p>",
                "sv": "<p>Under barnkulturens festvecka gläder man sig över läsningens glädje och litteratur!</p><p>Kirsi Kunnas 100-årsjubileum firas med Diktvardagsrummet (andra våningen i Annegården) där man hör och berättar historier under hela veckan. Under veckan fördjupar man sig i poesi och litteratur även genom verkstäder och föreläsningar.</p>",
                "en": "<p>Children’s culture week celebrates the joy of reading and literature!</p><p>At the Poetry Lounge (second floor of Annantalo), which celebrates Kirsi Kunnas’ 100th anniversary, you can hear and tell stories throughout the week. During the week, poetry and literature are also studied at workshops and lectures.<br> <br>The week culminates on Saturday 18 May with an event day as Kirsi Kunnas’ poems about animals and other animal-related children’s literature take on many forms of art at open workshops. A performance combining theatre and visual art, The Color Kittens, will be seen in the Hall.</p>"
            },
            "short_description": {
                "fi": "Lastenkulttuurin juhlaviikolla riemuitaan lukemisen ilosta ja kirjallisuudesta!",
                "sv": "Under barnkulturens festvecka gläder man sig över läsningens glädje och litteratur!",
                "en": "Children’s culture week celebrates the joy of reading and literature!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lastenkulttuurin juhlaviikko Annantalolla",
                "sv": "Barnkulturens festvecka i Annegården",
                "en": "Children’s culture week at Annantalo"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61235/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63155",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sintonen-sakarat-levynjulkaisukonsertti-malmitalo-18368309/#tab=",
                        "sv": "https://www.lippu.fi/event/sintonen-sakarat-levynjulkaisukonsertti-malmitalo-18368309/#tab=",
                        "en": "https://www.lippu.fi/event/sintonen-sakarat-levynjulkaisukonsertti-malmitalo-18368309/#tab="
                    },
                    "price": {
                        "fi": "18,90 €",
                        "sv": "18,90 €",
                        "en": "18,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11835,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-12T09:14:33.120563Z",
                    "last_modified_time": "2024-03-12T09:14:33.120578Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745280.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11835/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-12T09:14:33.078858Z",
            "last_modified_time": "2024-05-03T12:12:58.670176Z",
            "date_published": null,
            "start_time": "2024-05-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7FB2AAF5A3AECF1B4D6570519BDCDE22/Sintonen_Sakarat",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7FB2AAF5A3AECF1B4D6570519BDCDE22/Sintonen_Sakarat",
                "en": "http://www.malmitalo.fi/en/events/event/7FB2AAF5A3AECF1B4D6570519BDCDE22/Sintonen_Sakarat"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kuulijoita on erityisesti viihdyttänyt bändin lavasoundi sekä tunteisiin vetoavat kappaleet. Yhtye on hyvän livebändin maineessa ja esiintymisiä onkin ollut ympäri Suomea.</p><p>Sintonen & Sakarat on viisihenkinen suomenkielinen pop-rock yhtye. Yhtyeen jäsenet ovat Eeroa lukuun ottamatta jakaneet yhdessä pitkän musiikillisen taipaleen ja hyvät henkilökemiat näkyvät niin treenikämpällä kuin keikallakin.</p><p>Yhtye on toimintansa alusta alkaen pyrkinyt tarjoamaan mahdollisimman korkeatasoista musiikkia kuulijoille ja yhteistyö Helsinki Rock Productionsin Hannu Leidenin sekä Eero Kaukomiehen kanssa on tuottanut hyvää tulosta.</p><p>Yhtyeen kappaleet syntyvät sulavassa yhteistyössä Eero Sintosen sävellysten ja sanoitusten ympärille. Kappaleissa käsitellään niin rakkautta eri muodoissaan kuin elämän yksinkertaisuuksia tarinoita unohtamatta. Tunneherkkyys on sanoituksissa isossa roolissa.</p><p>Sintonen & Sakarat perustettiin vuonna 2019 Kirkkonummella. Vuonna 2020 yhtye julkaisi ensimmäiset singlensä “Poimi tarkoin”, “Tänään” sekä “Pienistä katseista”. Vuonna 2021 Ilmestyi yhtyeen neljäs single “En anna pois sitä heittää”. Vuonna 2022 ilmestyi sekä yhtyeen viides single “Värit talveksi” että yhdeksän kappaleen esikoisalbumi “Poimi tarkoin”. Vuonna 2023 yhtye julkaisi singlet “Kauniita kuvia” sekä “Lähtiessä halataan”.</p><p>Yhtye julkaisee toisen albuminsa vuonna 2024.<br>Jäsenet: Eero Sintonen, Riku Tuovinen, Santeri Sannemann, Juuso Harakka, Jari Vireaho</p><p>Kesto: 90 min + väliaika</p>",
                "sv": "<p>Sintonen & Sakarat är ett finskspråkigt pop-rockband med fem medlemmar.</p><p>Åhörarna har varit särskilt förtjusta i bandets scensound och känslofyllda låtar. Bandet är känt för fina livespelningar och har framträtt på olika håll i Finland.</p>",
                "en": "<p>Sintonen & Sakarat is a five-person pop-rock band that performs in Finnish.</p><p>Their listeners particularly like the band’s stage sound and their emotional songs. They have become known as an excellent live band and have been touring all around Finland.</p>"
            },
            "short_description": {
                "fi": "Kuulijoita on erityisesti viihdyttänyt bändin lavasoundi sekä tunteisiin vetoavat kappaleet. Yhtye on hyvän livebändin maineessa ja esiintymisiä onkin ollut ympäri Suomea.",
                "sv": "Sintonen & Sakarat är ett finskspråkigt pop-rockband med fem medlemmar.",
                "en": "Sintonen & Sakarat is a five-person pop-rock band that performs in Finnish."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sintonen & Sakarat – levynjulkaisukeikka",
                "sv": "Sintonen & Sakarat",
                "en": "Sintonen & Sakarat"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63155/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63334",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 118807,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-10T11:13:57.297969Z",
                    "last_modified_time": "2024-04-10T11:13:57.297984Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749061.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/118807/?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-04-10T11:13:57.256930Z",
            "last_modified_time": "2024-05-03T12:12:57.529510Z",
            "date_published": null,
            "start_time": "2024-05-03",
            "end_time": "2024-05-19",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4E1B56AB81EA8D70F113331DA967FA71/Annantalon_kesakurssit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/4E1B56AB81EA8D70F113331DA967FA71/Annegardens_sommarkurser",
                "en": "http://www.annantalo.fi/en/events/event/4E1B56AB81EA8D70F113331DA967FA71/Annantalo_summer_courses"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidekurssit mahdollistavat 7–9- ja 10–12-vuotiaille helsinkiläisille tilaisuuden harrastaa taidetta myös kesälomalla.</p><p>Viikon mittaisen kurssin päivittäinen kesto on noin 4 tuntia. Päivän aikana syödään Annantalon oman kahvilan valmistama lounas.</p><p>Kesäkursseilla yhdistellään eri taidemuotoja ja työskennellään sekä Annantalon taideluokissa, että pihapiirissä. Ohjaajina toimivat Annantalon ammattitaitoiset taidekasvattajat. Kurssien opetuskieli on suomi.</p><p>Kesäkurssin hinta on 155 €, sisältäen päivittäisen lounaan. <br> <br>Ilmoittautuminen on käynnissä su 5.5. asti.<br>Tarvitset verkkopankkitunnukset, kun ilmoittaudut. Kurssimaksu maksetaan ilmoittautumisen yhteydessä.</p><p>Helsinkiläiset lapset voivat harrastaa taidetta, vaikka perheellä olisi vähän rahaa. Voit hakea kesäkurssille ilmaista paikkaa eli vapaaoppilaspaikkaa sunnuntaihin 21.4.2024 asti.</p><p>Helsingin kaupunki ei vakuuta lapsia kurssien ajaksi.</p><p>Kurssille ilmoittautuneet saavat lisätietoja sähköpostitse toukokuun aikana.</p><p>Tutustu taidekursseihin ja ilmoittaudu mukaan verkkosivuillamme osoitteessa Annantalo - Taidekurssit. https://www.annantalo.fi/fi/taidekurssit/</p>",
                "sv": "<p>Du kan gå på konstkurs även på sommaren! Sommarens konstkurser på Annegården är inspirerande kurser på en vecka.</p><p>Vi erbjuder sommarkurser både för 7–9-åriga och 10–12-åriga barn.</p><p>Kursens dagliga längd är cirka 4 timmar. Under dagen äter vi lunch som har tillagats av Annegårdens eget kafé.</p><p>På sommarkurserna kombinerar vi olika konstarter och jobbar både i Annegårdens konstklasser och ute på gården. Annegårdens kunniga konstpedagoger fungerar som handledare.</p><p>Undervisningsspråket är finska.</p><p>Sommarkursernas pris är 155 €, inklusive den dagliga lunchen.</p><p>Kurserna handleds på finska.</p><p>Du behöver nätbankskoder för att anmäla dig. Kursavgiften betalas i samband med anmälningen.</p><p>Helsingforsbarn kan ha konst som hobby även om familjen är mindre bemedlad. Du kan ansöka om en gratisplats på en sommarkurs, det vill säga en reservelevplats, fram till söndagen 21.4.2024.</p><p>Helsingfors stad försäkrar inte barnen under kursen.</p><p>De som har anmält sig till en kurs får mer information per e-post under maj månad.</p><p>Anmäl dig på sommarkurs på vår webbplats på adressen: https://www.annantalo.fi/fi/taidekurssit/</p><p>Språk: finska</p>",
                "en": "<p>Art courses are also available in the summer! Annantalo's inspirational summer art courses are one week long.</p><p>Summer courses are available for children aged 7–9 years old and 10–12 years old.</p><p>The courses last four hours per day. Daily lunches are prepared every day at the Annantalo café.</p><p>The summer courses combine different art forms and work both in the Art Centre's classrooms and the yard. Annantalo’s professional art educators will serve as the course instructors. The courses are held in Finnish.</p><p>The price of a summer course is €155, including a daily lunch. <br>Course instruction is in Finnish.</p><p>You will need online banking codes to sign up. The course fee is paid during sign-up.</p><p>Children from Helsinki have opportunities for an art hobby, even if their family is low-income. Apply for a free student slot on a summer course by Sunday, 21 April 2024.</p><p>The City of Helsinki does not insure children during the courses.</p><p>People who signed up for the courses will be sent additional information during the month of May.</p><p>Sign up for the summer courses on our website at:https://www.annantalo.fi/fi/taidekurssit/</p>"
            },
            "short_description": {
                "fi": "Taidekurssit mahdollistavat 7–9- ja 10–12-vuotiaille helsinkiläisille tilaisuuden harrastaa taidetta myös kesälomalla.",
                "sv": "Du kan gå på konstkurs även på sommaren! Sommarens konstkurser på Annegården är inspirerande kurser på en vecka.",
                "en": "Art courses are also available in the summer! Annantalo's inspirational summer art courses are one week long."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Annantalon kesäkurssit – Ilmoittaudu mukaan taidekursseille!",
                "sv": "Annegårdens sommarkurser",
                "en": "Annantalo summer courses"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63334/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63460",
            "has_user_editable_resources": false,
            "location": null,
            "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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150798,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-24T14:14:26.337311Z",
                    "last_modified_time": "2024-04-24T14:14:26.337330Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744836.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150798/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-24T14:14:26.302485Z",
            "last_modified_time": "2024-05-03T10:12:59.888616Z",
            "date_published": null,
            "start_time": "2024-05-19T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/56904F46C8821BD29639F27701A12D83/Tuija_Rantalainen_ja_Vahtikoira_Veikko",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/56904F46C8821BD29639F27701A12D83/Tuija_Rantalainen_ja_Vahtikoira_Veikko",
                "en": "http://www.espanlava.fi/en/events/event/56904F46C8821BD29639F27701A12D83/Tuija_Rantalainen_ja_Vahtikoira_Veikko"
            },
            "provider": null,
            "description": {
                "fi": "<p>Lasten rakastama, hauska ja taitava duo saapuu Espan lavalle juhlistamaan Lastenkulttuuriviikkoa. Esityksessä yleisö saa laulaa, leikkiä ja tanssia mukana.</p><p>Lastenmusiikkia ja musateatteria esittävä duo on keikkaillut jo noin 300 keikan verran mm. Savonlinnan Oopperajuhlilla, Maailma kylässä -festareilla, Kajaanin runoviikoilla, teattereissa, kouluissa ja lastentapahtumissa Suomessa ja Saksassa.</p><p>Tuija Rantalainen on julkaisut kolme kiiteltyä lastenalbumia, joista toinen (Vahtikoira karkuteillä) oli Emma-ehdokkaana 2016. Vuoden 2023 Jellonagaalassa Tuija palkittiin vuoden lastenmusiikintekijän palkinnolla ja duo sai Vuoden lastenmusiikkiartisti -Jellonan.</p><p>Tuija Rantalainen, laulu ja piano<br>Veini Nupponen (Vahtikoira Veikko), laulu</p>",
                "sv": "<p>Den roliga och begåvade duon som älskas av barn kommer att anlända till Espas scen för att fira Barnkulturveckan. I föreställningen kan publiken sjunga, spela och dansa med.</p>",
                "en": "<p>The fun and talented duo loved by children will arrive on Espa's stage to celebrate Children's Culture Week. In the performance, the audience can sing, play and dance along.</p>"
            },
            "short_description": {
                "fi": "Lasten rakastama, hauska ja taitava duo saapuu Espan lavalle juhlistamaan Lastenkulttuuriviikkoa. Esityksessä yleisö saa laulaa, leikkiä ja tanssia mukana.",
                "sv": "Den roliga och begåvade duon som älskas av barn kommer att anlända till Espas scen för att fira Barnkulturveckan. I föreställningen kan publiken sjunga, spela och dansa med.",
                "en": "The fun and talented duo loved by children will arrive on Espa's stage to celebrate Children's Culture Week. In the performance, the audience can sing, play and dance along."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Tuija Rantalainen ja Vahtikoira Veikko",
                "sv": "Tuija Rantalainen ja Vahtikoira Veikko",
                "en": "Tuija Rantalainen ja Vahtikoira Veikko"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63460/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63362",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/tulipa-taas-sanomista-pelle-miljoona-paleface-laulava-unioni-3642751/"
                    },
                    "price": {
                        "fi": "24 € + palvelumaksu"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 149255,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-15T07:14:06.502820Z",
                    "last_modified_time": "2024-04-15T07:14:06.502844Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749240.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/149255/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-15T07:14:06.451251Z",
            "last_modified_time": "2024-05-03T07:14:17.472323Z",
            "date_published": null,
            "start_time": "2024-05-17T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/966D043FF39BED241A59AD22F34966F7/Tulipa_taas_sanomista_Vieraana_Pelle_Miljoona"
            },
            "provider": {
                "fi": "Vuotalo, Rautala Rocks"
            },
            "description": {
                "fi": "<p>Palefacen vetämään ensimmäiseen Tulipa taas sanomista! klubi-iltaan vieraaksi saapuu suomalaisen punkin ”kummisetä” Pelle Miljoona.</p><p>Pelle on tunnettu lauluistaan, musiikistaan ja teksteistään monilta vuosikymmeniltä ja peräänantamattomuudestaan omalla linjallaan joka saa arvostusta vielä miehen kulkiessa tietään tänäänkin! Asenne ei kuole ja seuraajia on edelleen musiikintekijöiden parissa,jossa punkin itsetekemisen perinne on muuntunut ja jakautunut uusiin musiikkityyleihin, räppiin, uusfolkiin ja moniin muihin suuntiin!</p><p>Mitä yhteistä on punkilla, räpillä, Woody Guhtriella, Pete Seegerillä, Hiski Salomaalla, Bob Dylanillla ja Pellellä ja Palafacella, voidaan ehkä saada selville illan kuluessa. Tai jotain ihan muuta kun keskustelu kulkee ja esitykset etenevät erikseen ja yhdessä ja yleiselläkin on tilaa keskustelussa!</p><p>Liput tulossa myyntiin pian lippu.fi-palveluun.</p><p>Klubi-ilta, A-oikeudet. <br>Kahvila Pokkari vastaa tarjoilusta.</p>"
            },
            "short_description": {
                "fi": "Palefacen vetämään ensimmäiseen Tulipa taas sanomista! klubi-iltaan vieraaksi saapuu suomalaisen punkin ”kummisetä” Pelle Miljoona."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Tulipa taas sanomista! Vieraana Pelle Miljoona – Klubi-ilta - Isäntänä Paleface ja Laulava Unioni"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63362/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63552",
            "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:32/?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:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150924,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-02T15:13:45.091848Z",
                    "last_modified_time": "2024-05-02T15:13:45.091866Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743735.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-02T15:13:45.050050Z",
            "last_modified_time": "2024-05-02T15:13:45.158356Z",
            "date_published": null,
            "start_time": "2024-06-13",
            "end_time": "2024-08-08",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/CEF39B116193EEFD79226B327774117D/Kaupunkitanssit_Stoan_aukiolla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/CEF39B116193EEFD79226B327774117D/Stadsdans",
                "en": "http://www.stoa.fi/en/events/event/CEF39B116193EEFD79226B327774117D/Dancing_in_the_City"
            },
            "provider": null,
            "description": {
                "fi": "<p>Foxista fuskuun, jenkasta sambaan, valssista tangoon! Kesällä 2024 opetellaan jälleen paritansseja.</p><p>Kaupunkitansseissa pääset erilaisten paritanssien pyörteisiin ohjatusti ja täysin maksutta. Et tarvitse ennakkotaitoja, ilmoittautumista tai edes tanssiparia – paikan päältä löytyy!</p><p>Mukaan tanssimaan voi tulla milloin vain. Opetuksesta vastaavat koulutetut tanssinopettajat. Sateen sattuessa tanssitaan Stoan aulassa.<br> <br><b>Kesän 2024 tanssit Stoan aukiolla klo 19-20</b>: <br>to 13.6. fusku <br>to 20.6. humppa<br>to 27.6. foksi <br>to 4.7. jenkka<br>to 11.7. bugg <br>to 18.7. valssi  <br>to 25.7. tango <br>to 1.8. samba<br>to 8.8. cha cha</p><p>Yhteistyössä: Tanssiteatteri Tsuumi  <br>Opetuskieli: suomi</p>",
                "sv": "<p>Gratis undervisning i pardanser på finska på Stoa genom hela sommaren, sammanlagt 10 gånger. Vid regn i Stoa entréhall.</p>",
                "en": "<p>Free-of-charge and Finnish-language partner dance teaching on Stoa Yard throughout the summer, 10 sessions in all.</p><p>If it rains, lessons will be held in Stoa lobby. The teaching happens in Finnish, but it’s possible to join without speaking the language.</p>"
            },
            "short_description": {
                "fi": "Foxista fuskuun, jenkasta sambaan, valssista tangoon! Kesällä 2024 opetellaan jälleen paritansseja.",
                "sv": "Gratis undervisning i pardanser på finska på Stoa genom hela sommaren, sammanlagt 10 gånger. Vid regn i Stoa entréhall.",
                "en": "Free-of-charge and Finnish-language partner dance teaching on Stoa Yard throughout the summer, 10 sessions in all."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kaupunkitanssit Stoan aukiolla – torstaisin klo 19-20",
                "sv": "Stadsdans",
                "en": "Dancing in the City"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63552/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63140",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11181,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-04T09:15:07.990514Z",
                    "last_modified_time": "2024-03-04T09:15:07.990535Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736798.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11181/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-04T09:15:07.950816Z",
            "last_modified_time": "2024-05-02T09:13:00.825054Z",
            "date_published": null,
            "start_time": "2024-06-03T07:00:00Z",
            "end_time": "2024-06-07T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/0E006B36119BF9FCA4D5858104865FDD/TAYNNA_Lavastettu_juttu",
                "en": "http://www.caisa.fi/en/events/event/0E006B36119BF9FCA4D5858104865FDD/FULL_A_Staged_Affair"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.</p><p>Mitä medialukutaito tarkoittaa? Mistä tietää onko jokin asian totta? Miltä voi tuntua, kun jokin paljastuu valheeksi? Millä tavoilla meidän käsityksiämme todellisuudesta rakennetaan?<br> <br>Kurssin aikana suunnitellaan ja toteutetaan leikin kautta esitys, jossa kesäkurssilaiset pohtivat medialukutaitoa ja omaa suhdettaan esitettyyn todellisuuteen. Esitys suunnitellaan ja käsikirjoitetaan yhdessä. Harjoiteltu esitys kuvataan ja editoidaan valmiiksi videoteokseksi.</p><p>Tutustumme esityksen valmistamisen päävaiheisiin, joihin kuuluu lavastus, puvustus, kuvaaminen ja videoeditointi helpoilla editointiohjelmilla. Tutustumme näyttelemiseen ja esiintymiseen kehollisten harjoitteiden ja leikin avulla.</p><p>Kurssi on tarkoitettu 7–12-vuotiaille. Kurssi ei edellytä ennakko-osaamista. Valmiit videoteokset jaetaan osallistujille kurssin päätteeksi. Kuvattuja materiaaleja ei käytetä tai säilytetä kurssin jälkeen. Osallistuminen edellyttää kuvauslupaa edellä mainittuun tarkoitukseen.</p><p>Kurssiin ei sisälly ruokailua, joten lapsilla tulee olla mukana omat eväät ja juomapullo.</p><p>Ohjaajina toimivat taidekasvattajat Andra Sarenius ja Saban Ramadani.  <br>   <br><b>Ilmoittautuminen</b> <br>Ilmoittaudu mukaan hauskalle ja leikkisälle Caisan kesäkurssille! Ilmoittautuminen on sitova. Mahdolliset peruutukset mahdollisimman ajoissa. <br> <br>Kurssikokonaisuus vk 23, 3.6.–7.6. ma–pe klo 10–14   <br>ILMOITTAUDU TÄSTÄ LINKISTÄ:<br>https://forms.office.com/e/i4eR4CwUMr</p><p>Lisätietoja: teemu.savikurki@hel.fi  <br>Kurssin kielet: suomi ja englanti</p>",
                "en": "<p>During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie.</p><p>What does media literacy mean? How do you know if something is true? How does it feel when something turns out to be a lie? In what ways are our perceptions of reality constructed?</p><p>During the course, a performance is planned and implemented through play. The summer course participants reflect on media literacy and their own relationship with represented reality. The performance is planned and scripted together. The rehearsed performance is filmed and edited into a finished video work.</p><p>We will get to know the main stages of making a show, which include staging, costuming, filming and video editing with easy editing programs. We get to know acting and performing through physical exercises and play.</p><p>The course is intended for 7-12 year old. The course does not require prior knowledge. The finished video works will be distributed to the participants at the end of the course. The described materials are not used or stored after the course. Participation requires a photography permit for the aforementioned purpose.</p><p>The course does not include meals, so children must bring their own snacks and a drinking bottle.<br> <br>The instructors are art educators Andra Sarenius and Saban Ramadani.<br> <br><b>Registration</b> <br>Sign up for the fun and playful Caisa summer course! Registration is binding. Possible cancellations as early as possible.<br> <br>Course 1, week 23, 3.6.–7.6. mon–fri 10 am–2 pm<br>REGISTER AT THIS LINK:<br>https://forms.office.com/e/i4eR4CwUMr</p>"
            },
            "short_description": {
                "fi": "Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.",
                "en": "During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie."
            },
            "location_extra_info": null,
            "name": {
                "fi": "TÄYNNÄ Lavastettu juttu – kesäkurssi 7–12-vuotiaille lapsille",
                "en": "FULL A Staged Affair – summer course for children aged 7–12"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63140/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63402",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150652,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:44.072528Z",
                    "last_modified_time": "2024-04-17T10:13:44.072546Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749428.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150652/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:44.046873Z",
            "last_modified_time": "2024-05-02T09:12:58.502118Z",
            "date_published": null,
            "start_time": "2024-05-18T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF6F363148E48A13FB2FF62BFC961717/Civil_War_16_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Vuoden odotetuimpiin elokuviin kuuluva Civil War on tiivistunnelmainen, adrenaliinin ja jännityksen täyteinen toimintatrilleri, jonka kyydistä avautuu kuumottava näkymä jakautuneen Yhdysvaltojen lähitulevaisuuteen.</p><p>Lee (Kirsten Dunst) yrittää selviytyä hengissä toimittajakollegoidensa kanssa eskaloituvan sisällissodan keskellä vaarallisella matkalla maan läpi kohti vielä toistaiseksi pääkaupungiksi kutsuttua Washington DC:tä.</p><p>Elokuvan muissa rooleissa nähdään Cailee Spaeny (Priscilla), Wagner Moura (Narcos), Stephen McKinley Henderson (Dyyni), Jesse Plemons (The Power of the Dog, Killers of the Flower Moon) sekä Yhdysvaltojen presidenttinä Nick Offerman (Fargo).</p><p>Lähitulevaisuuteen sijoittuvan dystooppisen toimintaelokuvan on ohjannut ja käsikirjoittanut Oscar-ehdokas Alex Garland (Ex Machina). Civil Warin vääjäämätön, räjähtävä loppuhuipennus on yksi kuluvan elokuvavuoden kohokohtia.</p><p>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p><p>Pituus 109 min<br>Ikäraja 16<br>Ensi-ilta 19.4.2024</p>"
            },
            "short_description": {
                "fi": "Vuoden odotetuimpiin elokuviin kuuluva Civil War on tiivistunnelmainen, adrenaliinin ja jännityksen täyteinen toimintatrilleri, jonka kyydistä avautuu kuumottava näkymä jakautuneen Yhdysvaltojen lähitulevaisuuteen."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Civil War (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63402/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63399",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150651,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:43.739836Z",
                    "last_modified_time": "2024-04-17T10:13:43.739853Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749148.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150651/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:43.716365Z",
            "last_modified_time": "2024-05-02T09:12:58.370607Z",
            "date_published": null,
            "start_time": "2024-05-18T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/929A67661E0B692481BD72128FF3CC86/Prinsessa_Pikkiriikki_S_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kun Prinsessa Pikkiriikki saa kuulla, että äidin sisuskaluissa asusteleva pikkuveli aikoo pian muuttaa Pikkiriikin huoneeseen, hänelle riittää.</p><p>Hän saa Rouva Jenssenintädiltä idean ja taikoo määräilevät aikuiset Himpskattiin taikakoiransa Makkaran avulla.</p><p>Naapuriin juuri muuttanut Prinsessa Pöjöläinen tietää missä unelmien prinsessalinna sijaitsee ja kun vanhemmat eivät ole estämässä, he lähtevät yhteistuumin seikkailuun. Matkaan tulee kuitenkin mutkia, kun prinsessat päätyvät markkinoille, joilla nautitaan pomppulinnasta, etsitään kadonnutta Makkaraa ja osallistutaan vedonlyöntikilpailuun.</p><p>Pääprinsessuuuskin aiheuttaa päänvaivaa ja Pikkiriikin on lopulta katsottava asioita myös vasemmasta näkökulmasta.</p><p>Elokuva on tekstitetty Suomeksi</p><p>Pituus 75 min<br>Ikäraja sallittu<br>Ensi-ilta 27.3.2024</p>"
            },
            "short_description": {
                "fi": "Kun Prinsessa Pikkiriikki saa kuulla, että äidin sisuskaluissa asusteleva pikkuveli aikoo pian muuttaa Pikkiriikin huoneeseen, hänelle riittää."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Prinsessa Pikkiriikki (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63399/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63401",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150650,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:43.286847Z",
                    "last_modified_time": "2024-04-17T10:13:43.286863Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749426.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:43.263032Z",
            "last_modified_time": "2024-05-02T09:12:58.049065Z",
            "date_published": null,
            "start_time": "2024-05-17T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3CB39F5ED1F3248EE9062DEB86097478/Civil_War_16_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Vuoden odotetuimpiin elokuviin kuuluva Civil War on tiivistunnelmainen, adrenaliinin ja jännityksen täyteinen toimintatrilleri, jonka kyydistä avautuu kuumottava näkymä jakautuneen Yhdysvaltojen lähitulevaisuuteen.</p><p>Lee (Kirsten Dunst) yrittää selviytyä hengissä toimittajakollegoidensa kanssa eskaloituvan sisällissodan keskellä vaarallisella matkalla maan läpi kohti vielä toistaiseksi pääkaupungiksi kutsuttua Washington DC:tä.</p><p>Elokuvan muissa rooleissa nähdään Cailee Spaeny (Priscilla), Wagner Moura (Narcos), Stephen McKinley Henderson (Dyyni), Jesse Plemons (The Power of the Dog, Killers of the Flower Moon) sekä Yhdysvaltojen presidenttinä Nick Offerman (Fargo).</p><p>Lähitulevaisuuteen sijoittuvan dystooppisen toimintaelokuvan on ohjannut ja käsikirjoittanut Oscar-ehdokas Alex Garland (Ex Machina). Civil Warin vääjäämätön, räjähtävä loppuhuipennus on yksi kuluvan elokuvavuoden kohokohtia.</p><p>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p><p>Pituus 109 min<br>Ikäraja 16<br>Ensi-ilta 19.4.2024</p>"
            },
            "short_description": {
                "fi": "Vuoden odotetuimpiin elokuviin kuuluva Civil War on tiivistunnelmainen, adrenaliinin ja jännityksen täyteinen toimintatrilleri, jonka kyydistä avautuu kuumottava näkymä jakautuneen Yhdysvaltojen lähitulevaisuuteen."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Civil War (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63401/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63400",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150649,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:42.464390Z",
                    "last_modified_time": "2024-04-17T10:13:42.464407Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749424.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150649/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:42.439663Z",
            "last_modified_time": "2024-05-02T09:12:57.559986Z",
            "date_published": null,
            "start_time": "2024-05-15T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/62CF00808D42AFD248F0C2AFE133AA5D/Civil_War_16_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Vuoden odotetuimpiin elokuviin kuuluva Civil War on tiivistunnelmainen, adrenaliinin ja jännityksen täyteinen toimintatrilleri, jonka kyydistä avautuu kuumottava näkymä jakautuneen Yhdysvaltojen lähitulevaisuuteen.</p><p>Lee (Kirsten Dunst) yrittää selviytyä hengissä toimittajakollegoidensa kanssa eskaloituvan sisällissodan keskellä vaarallisella matkalla maan läpi kohti vielä toistaiseksi pääkaupungiksi kutsuttua Washington DC:tä.</p><p>Elokuvan muissa rooleissa nähdään Cailee Spaeny (Priscilla), Wagner Moura (Narcos), Stephen McKinley Henderson (Dyyni), Jesse Plemons (The Power of the Dog, Killers of the Flower Moon) sekä Yhdysvaltojen presidenttinä Nick Offerman (Fargo).</p><p>Lähitulevaisuuteen sijoittuvan dystooppisen toimintaelokuvan on ohjannut ja käsikirjoittanut Oscar-ehdokas Alex Garland (Ex Machina). Civil Warin vääjäämätön, räjähtävä loppuhuipennus on yksi kuluvan elokuvavuoden kohokohtia.</p><p>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p><p>Pituus 109 min<br>Ikäraja 16<br>Ensi-ilta 19.4.2024</p>"
            },
            "short_description": {
                "fi": "Vuoden odotetuimpiin elokuviin kuuluva Civil War on tiivistunnelmainen, adrenaliinin ja jännityksen täyteinen toimintatrilleri, jonka kyydistä avautuu kuumottava näkymä jakautuneen Yhdysvaltojen lähitulevaisuuteen."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Civil War (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63400/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63398",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150646,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:41.206664Z",
                    "last_modified_time": "2024-04-17T10:13:41.206681Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749419.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150646/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:41.180835Z",
            "last_modified_time": "2024-05-02T09:12:56.935214Z",
            "date_published": null,
            "start_time": "2024-05-11T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6E16A57F21A0E1D2D79EE17BDC4FCBB0/Prinsessa_Pikkiriikki_S_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kun Prinsessa Pikkiriikki saa kuulla, että äidin sisuskaluissa asusteleva pikkuveli aikoo pian muuttaa Pikkiriikin huoneeseen, hänelle riittää.</p><p>Hän saa Rouva Jenssenintädiltä idean ja taikoo määräilevät aikuiset Himpskattiin taikakoiransa Makkaran avulla.</p><p>Naapuriin juuri muuttanut Prinsessa Pöjöläinen tietää missä unelmien prinsessalinna sijaitsee ja kun vanhemmat eivät ole estämässä, he lähtevät yhteistuumin seikkailuun. Matkaan tulee kuitenkin mutkia, kun prinsessat päätyvät markkinoille, joilla nautitaan pomppulinnasta, etsitään kadonnutta Makkaraa ja osallistutaan vedonlyöntikilpailuun.</p><p>Pääprinsessuuuskin aiheuttaa päänvaivaa ja Pikkiriikin on lopulta katsottava asioita myös vasemmasta näkökulmasta.</p><p>Elokuva on tekstitetty Suomeksi</p><p>Pituus 75 min<br>Ikäraja sallittu<br>Ensi-ilta 27.3.2024</p>"
            },
            "short_description": {
                "fi": "Kun Prinsessa Pikkiriikki saa kuulla, että äidin sisuskaluissa asusteleva pikkuveli aikoo pian muuttaa Pikkiriikin huoneeseen, hänelle riittää."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Prinsessa Pikkiriikki (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63398/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63394",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150644,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:40.682798Z",
                    "last_modified_time": "2024-04-17T10:13:40.682815Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749138.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150644/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:40.657462Z",
            "last_modified_time": "2024-05-02T09:12:56.640203Z",
            "date_published": null,
            "start_time": "2024-05-10T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/19FEBEC377B7796F6A35D78FD4B844F0/Luottomies-elokuva_All_in_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tommi Mäkinen-Renwall (Antti Luusuaniemi) haaveilee ylennyksestä ja sen mukana tulevasta palkankorotuksesta. Hieman hövelin Tommin tavoitteena on ostaa unelmien omakotitalo vaimonsa Harrietin (Maria Ylipää) kanssa.</p><p>Tommin pomo (ja samalla appiukko) Johan Renwall (Taneli Mäkelä) vaatii kuitenkin, että Tommin on ensin todistettava paineensietokykynsä. Naapurissa asuva luottomies Juha ”Juhis” Manner (Kari Ketonen) keksiikin lennokkaan tavan, jolla Tommi voi osoittaa kylmäpäisyytensä.</p><p>Tästä ei tietenkään seuraa toivottua lopputulosta, ja kasvonsa menettänyt, epätoivoinen Tommi päättää ottaa ohjat omiin käsiinsä. Avioliittokin on vaarassa. Tommi ryhtyy pääomasijoittajaksi vähäisellä ymmärryksellä, ja aluksi tulokset ovat lupaavat... Kunnes lopulta ollaan totaalisen pulassa, ja tarvitaan jälleen Juhiksen suoraviivaista ongelmanratkaisukykyä.</p><p>Pituus 90 min<br>Ikäraja  7<br>Ensi-ilta 16.2.2024<br>Elokuva on tekstitetty Suomeksi</p>"
            },
            "short_description": {
                "fi": "Tommi Mäkinen-Renwall (Antti Luusuaniemi) haaveilee ylennyksestä ja sen mukana tulevasta palkankorotuksesta. Hieman hövelin Tommin tavoitteena on ostaa unelmien omakotitalo vaimonsa Harrietin (Maria Ylipää) kanssa."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Luottomies-elokuva: All in (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63394/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63393",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150643,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:40.445582Z",
                    "last_modified_time": "2024-04-17T10:13:40.445597Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749136.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150643/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:40.422409Z",
            "last_modified_time": "2024-05-02T09:12:56.518436Z",
            "date_published": null,
            "start_time": "2024-05-08T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DE01EA3EDE1DFBAE180FDE56FA5D196F/Luottomies-elokuva_All_in_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tommi Mäkinen-Renwall (Antti Luusuaniemi) haaveilee ylennyksestä ja sen mukana tulevasta palkankorotuksesta. Hieman hövelin Tommin tavoitteena on ostaa unelmien omakotitalo vaimonsa Harrietin (Maria Ylipää) kanssa.</p><p>Tommin pomo (ja samalla appiukko) Johan Renwall (Taneli Mäkelä) vaatii kuitenkin, että Tommin on ensin todistettava paineensietokykynsä. Naapurissa asuva luottomies Juha ”Juhis” Manner (Kari Ketonen) keksiikin lennokkaan tavan, jolla Tommi voi osoittaa kylmäpäisyytensä.</p><p>Tästä ei tietenkään seuraa toivottua lopputulosta, ja kasvonsa menettänyt, epätoivoinen Tommi päättää ottaa ohjat omiin käsiinsä. Avioliittokin on vaarassa. Tommi ryhtyy pääomasijoittajaksi vähäisellä ymmärryksellä, ja aluksi tulokset ovat lupaavat... Kunnes lopulta ollaan totaalisen pulassa, ja tarvitaan jälleen Juhiksen suoraviivaista ongelmanratkaisukykyä.</p><p>Pituus 90 min<br>Ikäraja  7<br>Ensi-ilta 16.2.2024<br>Elokuva on tekstitetty Suomeksi</p>"
            },
            "short_description": {
                "fi": "Tommi Mäkinen-Renwall (Antti Luusuaniemi) haaveilee ylennyksestä ja sen mukana tulevasta palkankorotuksesta. Hieman hövelin Tommin tavoitteena on ostaa unelmien omakotitalo vaimonsa Harrietin (Maria Ylipää) kanssa."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Luottomies-elokuva: All in (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63393/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63392",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150642,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:39.427524Z",
                    "last_modified_time": "2024-04-17T10:13:39.427540Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749134.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150642/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:39.382192Z",
            "last_modified_time": "2024-05-02T09:12:55.932060Z",
            "date_published": null,
            "start_time": "2024-05-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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C9838299A54AAF80B658C41D12E3D559/Luottomies-elokuva_All_in_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tommi Mäkinen-Renwall (Antti Luusuaniemi) haaveilee ylennyksestä ja sen mukana tulevasta palkankorotuksesta. Hieman hövelin Tommin tavoitteena on ostaa unelmien omakotitalo vaimonsa Harrietin (Maria Ylipää) kanssa.</p><p>Tommin pomo (ja samalla appiukko) Johan Renwall (Taneli Mäkelä) vaatii kuitenkin, että Tommin on ensin todistettava paineensietokykynsä. Naapurissa asuva luottomies Juha ”Juhis” Manner (Kari Ketonen) keksiikin lennokkaan tavan, jolla Tommi voi osoittaa kylmäpäisyytensä.</p><p>Tästä ei tietenkään seuraa toivottua lopputulosta, ja kasvonsa menettänyt, epätoivoinen Tommi päättää ottaa ohjat omiin käsiinsä. Avioliittokin on vaarassa. Tommi ryhtyy pääomasijoittajaksi vähäisellä ymmärryksellä, ja aluksi tulokset ovat lupaavat... Kunnes lopulta ollaan totaalisen pulassa, ja tarvitaan jälleen Juhiksen suoraviivaista ongelmanratkaisukykyä.</p><p>Pituus 90 min<br>Ikäraja  7<br>Ensi-ilta 16.2.2024<br>Elokuva on tekstitetty Suomeksi</p>"
            },
            "short_description": {
                "fi": "Tommi Mäkinen-Renwall (Antti Luusuaniemi) haaveilee ylennyksestä ja sen mukana tulevasta palkankorotuksesta. Hieman hövelin Tommin tavoitteena on ostaa unelmien omakotitalo vaimonsa Harrietin (Maria Ylipää) kanssa."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Luottomies-elokuva: All in (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63392/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61517",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-7/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6368,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-30T12:13:50.712317Z",
                    "last_modified_time": "2024-02-06T13:23:39.660541Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736514.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6368/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-30T12:13:50.692315Z",
            "last_modified_time": "2024-05-02T06:12:52.200116Z",
            "date_published": null,
            "start_time": "2024-05-02T07:00:00Z",
            "end_time": "2024-05-02T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/78538DBA31C9C1B85CFF8554E640C83F/PERUTTU_Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/78538DBA31C9C1B85CFF8554E640C83F/INSTALLD_Konst_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/78538DBA31C9C1B85CFF8554E640C83F/CANCELLED_Open_Art_Studio_for_Toddlers"
            },
            "provider": null,
            "description": {
                "fi": "<p>Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.<br> <br><b>Osallistuminen </b><br>Taidetta taaperoille- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "short_description": {
                "fi": "Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "location_extra_info": null,
            "name": {
                "fi": "PERUTTU Taidetta taaperoille",
                "sv": "INSTÄLLD Konst för småbarn",
                "en": "CANCELLED Open Art Studio for Toddlers"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61517/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63312",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 77894,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-03T15:14:37.906768Z",
                    "last_modified_time": "2024-04-03T15:14:37.906783Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739270.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/77894/?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-04-03T15:14:37.869670Z",
            "last_modified_time": "2024-04-30T10:13:03.977817Z",
            "date_published": null,
            "start_time": "2024-04-30T12:00:00Z",
            "end_time": "2024-04-30T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/F45448B5F1072656CB57E25B6F16D9AF/Stoan_vappudiskot",
                "sv": "http://www.stoa.fi/sv/evenemang/event/F45448B5F1072656CB57E25B6F16D9AF/Vild_Valborg_pa_Stoa",
                "en": "http://www.stoa.fi/en/events/event/F45448B5F1072656CB57E25B6F16D9AF/Stoa_May_Day_Bash"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tanssittavaa vappua ja iloista juhlatunnelmaa monen ikäisille!</p><p><b>OHJELMA</b></p><p><b>klo 15-17 K-60 disko musiikkisalissa (vapaa pääsy)</b><br>Discoksi loihditussa musiikkisalissa DJ Lord Fatty soittaa perinteisten discobiisien lisäksi lattareita ja vauhdikkaiden finnhitsejä. Mukana myös kokenut tanssiopettaja ja esiintyjä Lasse Muuronen.</p><p><b>klo 18-19 Skidit-disko teatterisalissa (liput 6€, LOPPUUNMYYTY)</b><br>Lämminhenkisessä diskossa yhdistyvät tanssittavat bängerit, hauskat tanssileikit ja mielikuvituksellinen meno. Hyvä meininki kerää tanssilattialle niin aikuiset kuin lapsetkin. Mukana menossa DJ Hermanni, MC/tanssiope Kaarina, VJ Oka ja Robo maskotti!</p><p><b>klo 15-16.30 Oodi keväälle -sanataidepaja (vapaa pääsy)</b><br>Löydä sisäinen vappulyyrikkosi keveän runoilottelun avulla. Poimi houkuttelevimmat sanat talteen, kikkaile, kokeile ja kutkuttele keväistä mieltä. Ohjaaja: Jenni Vilander</p><p><b>klo 16-19 Glitter-tatuointeja (vapaa pääsy) </b><br>Koristaudu kimaltaviin diskotunnelmiin glittertatuoinneilla! <br>Ohjaaja: Greta Salonen</p><p><b>klo 17.30-19 Kemukaiffarit-työpaja (vapaa pääsy) </b><br>Vappuisan veikeässä hahmopajassa bilehileet, bailubeibit ja teknotepot saavat uusia ystäviä.Sheikkaa saksia mielikuvituksesi tahdissa ja taiteile itsellesi vapun hilpein kemukaiffari.<br>Ohjaaja: Jenni Vilander</p><p><b>klo 17-19 Jättisaippuakuplapaja Stoan aukiolla (vapaa pääsy)</b><br>Stoan aukiolla pääset taikomaan ihmeellisiä jättisaippuakuplia! Säävaraus. <br>Ohjaaja: Enrique Salas</p>",
                "sv": "<p>Dansanta evenemang för äldre och barn.</p>",
                "en": "<p>Dance events and workshops for children and the elderly!</p><p><b>60+ disco at 3-6 pm </b><br>DJ Lord Fatty plays disco hits, latin rhytms and Finnhits. You must be at least 60 years old to enter this disco!</p><p><b>Ode to spring! workshop at 3-4.30 pm</b><br>Find the spring of poetry in your heart. Pick the most enchanting words, twist them around, see what works, and let the spring flow. <br>Director: Jenni Vilander</p><p><b>Party buddy workshop at 5–7 pm</b><br>Let’s make your own May Day party buddy. <br>Director: Jenni Vilander</p><p><b>Glitter tattoos at 4–7 pm</b><br>Get ready for the disco and decorate your skin with glittery imprints! <br>Director: Greta Salonen</p><p>Free entry, welcome!</p>"
            },
            "short_description": {
                "fi": "Tanssittavaa vappua ja iloista juhlatunnelmaa monen ikäisille!",
                "sv": "Dansanta evenemang för äldre och barn.",
                "en": "Dance events and workshops for children and the elderly!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Stoan vappudiskot",
                "sv": "Vild Valborg på Stoa",
                "en": "Stoa May Day Bash"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63312/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63042",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/vuotalo/klubb-ankdamm-improvision-song-contest-2024-3624518/",
                        "sv": "https://www.lippu.fi/artist/vuotalo/klubb-ankdamm-improvision-song-contest-2024-3624518/",
                        "en": "https://www.lippu.fi/artist/vuotalo/klubb-ankdamm-improvision-song-contest-2024-3624518/"
                    },
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 10602,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-07T11:14:43.062249Z",
                    "last_modified_time": "2024-02-07T11:14:43.062265Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740990.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10602/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-07T11:14:43.020593Z",
            "last_modified_time": "2024-04-30T09:13:08.896377Z",
            "date_published": null,
            "start_time": "2024-05-10T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5C04048FD7F79C8A572EBF1C8724FBEA/Teater_Stjarnfall_Improvision_Song_Contest",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/5C04048FD7F79C8A572EBF1C8724FBEA/Teater_Stjarnfall_Improvision_Song_Contest_",
                "en": "http://www.vuotalo.fi/en/events/event/5C04048FD7F79C8A572EBF1C8724FBEA/Teater_Stjarnfall_Improvision_Song_Contest"
            },
            "provider": null,
            "description": {
                "fi": "<p>Suomen jännittävin iskelmäkilpailu palaa Vuotaloon!</p><p>Stjärnfall on improvisaatioryhmä, joka luo upeita, hulluja ja ihastuttavan viihdyttäviä musiikkinumeroita. Improvisio-iltana jännitys kasvaa ja kaikki lavalla ja yleisössä ovat innoissaan! Haluaisitko olla mukana äänestämässä voittajaa Improvision Song Contest 2024:ssä? Silloin toivotamme sinut tervetulleeksi!</p><p>Klubi-ilta, Café Pokkari vastaa tarjoilusta.<br>Ovet avataan klo 18.30.</p><p>Kesto: noin 2 t, sis. väliajan.</p><p>Liput à 17 € / 9 € osoitteesta lippu.fi:stä tai ovelta klo 17.30 alkaen.</p>",
                "sv": "<p>Finlands mest hisnande schlagertävling återvänder till Nordhuset!</p><p>Stjärnfall är improvisationsgruppen som för fulla hus och full hals skapar glamorösa, galna och underbart underhållande musiknummer. En helkväll då spänningen stiger och alla på scenen och i publiken är taggade. Vill du vara med och rösta fram vinnaren i Improvision Song Contest 2024? Då önskar vi dig välkommen!</p><p>Klubb-kväll, A-rättigheter, Café Pokkari svarar för serveringen.<br>Dörrarna öppnas kl. 18.30.<br>Längd: ca. 2h inkl. paus.</p><p>Biljetter à 17 € / 9 € via Lippu.fi eller vid dörren från kl. 17.30.</p>",
                "en": "<p>Finland's most thrilling schlager competition returns to Vuotalo!</p><p>Stjärnfall is an improvisation group that creates splendid, crazy, and delightfully entertaining musical numbers. On this Improvision night, the excitement builds, and everyone on stage and in the audience is thrilled! Would you like to be part of voting for the winner of Improvision Song Contest 2024? Then we welcome you!</p><p>Club night, Café Pokkari takes care of the refreshments.<br>Doors open at 6:30 PM.</p><p>Duration: about 2 hours, including intermission.</p><p>Tickets at 17 € / 9 € from lippu.fi or at the door starting from 5:30 PM.</p>"
            },
            "short_description": {
                "fi": "Suomen jännittävin iskelmäkilpailu palaa Vuotaloon!",
                "sv": "Finlands mest hisnande schlagertävling återvänder till Nordhuset!",
                "en": "Finland's most thrilling schlager competition returns to Vuotalo!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Teater Stjärnfall – Improvision Song Contest – Klubb Ankdamm",
                "sv": "Teater Stjärnfall – Improvision Song Contest – Klubb Ankdamm",
                "en": "Teater Stjärnfall – Improvision Song Contest – Klubb Ankdamm"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63042/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61283",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/skidit-disco-3538721/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/skidit-disco-3538721/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/skidit-disco-3538721/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7018,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-05T14:13:21.206860Z",
                    "last_modified_time": "2024-02-06T13:23:39.574948Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739827.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7018/?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-01-05T14:13:21.185789Z",
            "last_modified_time": "2024-04-30T09:13:07.585282Z",
            "date_published": null,
            "start_time": "2024-04-30T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/DC4F85DC7A256B1A1884070B840834B0/Skidit-disko_LOPPUUNMYYTY",
                "sv": "http://www.stoa.fi/sv/evenemang/event/DC4F85DC7A256B1A1884070B840834B0/Skidit-disko_UTSALD",
                "en": "http://www.stoa.fi/en/events/event/DC4F85DC7A256B1A1884070B840834B0/Skidit-disco_SOLD_OUT"
            },
            "provider": null,
            "description": {
                "fi": "<p>Koko perheen vappubileet! Skidit-disko tarjoaa musiikkimatkan lastensävelistä tämän päivän hitteihin. Let’s BAILA!</p><p>Lämminhenkisessä diskossa yhdistyvät tanssittavat bängerit, hauskat tanssileikit ja mielikuvituksellinen meno. Hyvä meininki kerää tanssilattialle niin aikuiset kuin lapsetkin.</p><p>Skidit-disko käynnisti lastendiskobuumin Suomessa tuodessaan maailmalta suosituksi tulleen konseptin koko perheen päivätansseista ykkösklubeilla. Diskon synnyinpaikka on Kuudes Linja ja Kaiku Helsingin Kalliossa, mutta diskoiltu on myös laivoilla, Musiikkitalolla, museossa, Flow Festivalin perhesunnuntaissa ja Oulussa, johon lennätettiin maailman pienin disko.</p><p>Mukana menossa DJ Hermanni, MC/tanssiope Kaarina, VJ Oka ja<br>Robo maskotti!<br>https://www.skidit.fi/</p><p>Kesto noin 1 tunti</p><p>Liput 6€. Jokainen sisääntulija tarvitsee oman lipun, sylissä kulkevia vauvoja lukuun ottamatta. Vaunut ja rattaat on hyvä jättää kotiin jos mahdollista, jotta vältytään ruuhkalta.</p><p>HUOM! Stoan aulassa on maksuttomia työpajoja diskon aikana klo 17-19.</p>",
                "sv": "<p>Förstamajfest för hela familjen!</p><p>Skidit-discot erbjuder en musikresa från barntoner till dagens outtröttliga hitsånger. På det välkomnande discot kombineras dansanta bangers, roliga danslekar och fantasifulla aktiviteter.</p>",
                "en": "<p>Whole family’s May Day party!</p><p>Kids’ Disco offers a musical journey from children’s tunes to the best modern hits. The warm-hearted disco combines bangers that you can dance to with fun dance games and imaginative ways of moving.</p>"
            },
            "short_description": {
                "fi": "Koko perheen vappubileet! Skidit-disko tarjoaa musiikkimatkan lastensävelistä tämän päivän hitteihin. Let’s BAILA!",
                "sv": "Förstamajfest för hela familjen!",
                "en": "Whole family’s May Day party!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Skidit-disko LOPPUUNMYYTY",
                "sv": "Skidit-disko UTSÅLD",
                "en": "Skidit-disco SOLD OUT – Kids’ Disco"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61283/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63119",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/3638524",
                        "sv": "https://www.lippu.fi/eventseries/3638524",
                        "en": "https://www.lippu.fi/eventseries/3638524"
                    },
                    "price": {
                        "fi": "14,50 € / 7 €",
                        "sv": "14,50 € / 7 €",
                        "en": "14,50 € / 7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11079,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-27T14:13:52.194321Z",
                    "last_modified_time": "2024-02-27T14:13:52.194337Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740036.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11079/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-27T14:13:52.171755Z",
            "last_modified_time": "2024-04-30T08:13:51.481233Z",
            "date_published": null,
            "start_time": "2024-05-25T14:00:00Z",
            "end_time": "2024-05-25T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8C35D41AEE2235E183C84DF723CD6EEC/Kannelmaen_voimistelijoiden_kevatnaytos",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8C35D41AEE2235E183C84DF723CD6EEC/Gamlas_gymnasters_varforestallning",
                "en": "http://www.kanneltalo.fi/en/events/event/8C35D41AEE2235E183C84DF723CD6EEC/Spring_show_of_Kannelmaen_Voimistelijat_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kannelmäen voimistelijoiden perinteiset kevätnäytökset nähdään jälleen Kanneltalolla.</p><p>Tiedot näytöksissä esiintyvistä ryhmistä löytyvät Kannelmäen voimistelijoiden verkkosivuilta: https://www.kannelmaenvoimistelijat.fi/</p><p>Kesto: n. 1 t</p>",
                "sv": "<p>Gamlas gymnasters traditionella vårföreställningar äger rum igen i Gamlasgården.</p><p>En föreställning kl. 17.</p><p>Längd 1 timme.</p>",
                "en": "<p>Kanneltalo again presents traditional Spring performances by Kannelmäki gymnasts.</p><p>One performance at 17:00.</p><p>Duration: 1 hour.</p>"
            },
            "short_description": {
                "fi": "Kannelmäen voimistelijoiden perinteiset kevätnäytökset nähdään jälleen Kanneltalolla.",
                "sv": "Gamlas gymnasters traditionella vårföreställningar äger rum igen i Gamlasgården.",
                "en": "Kanneltalo again presents traditional Spring performances by Kannelmäki gymnasts."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kannelmäen voimistelijoiden kevätnäytös",
                "sv": "Gamlas gymnasters vårföreställning",
                "en": "Spring show of Kannelmäen Voimistelijat"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63119/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}