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=603
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 33210,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=604",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=602"
    },
    "data": [
        {
            "id": "kulke:63915",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/18755090"
                    },
                    "price": {
                        "fi": "45-47 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151329,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-31T14:12:59.546313Z",
                    "last_modified_time": "2024-05-31T14:12:59.546330Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751914.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151329/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-31T14:12:59.500088Z",
            "last_modified_time": "2024-12-20T01:14:20.227361Z",
            "date_published": null,
            "start_time": "2024-12-10T17: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,
            "provider": {
                "fi": "Nem Agency Oy"
            },
            "short_description": {
                "fi": "The Ukulele Orchestra Of Great Britain pitkästä aikaa Suomeen!"
            },
            "description": {
                "fi": "<p>The Ukulele Orchestra Of Great Britain pitkästä aikaa Suomeen!</p><p>Rockin ja viihdemusiikin klassikoista ainutlaatuisiksi ukuleleversioiksi muuttava The Ukulele Orchestra Of Great Britain kiertää joulukuussa Suomea ja tarjoaa soitannollista suvereniteettiä ja kuivakkaa brittihuumoria!</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/88A217633C4D0E64640E3708546CA5F6/The_Ukulele_Orchestra_Of_Great_Britain_UK_"
            },
            "name": {
                "fi": "The Ukulele Orchestra Of Great Britain (UK)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63915/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63828",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151448,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T10:13:05.614720Z",
                    "last_modified_time": "2024-06-13T10:13:05.614739Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753149.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151448/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T10:13:05.585912Z",
            "last_modified_time": "2024-12-20T01:14:20.141248Z",
            "date_published": null,
            "start_time": "2024-12-10T15: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,
            "provider": null,
            "short_description": {
                "fi": "Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!",
                "sv": "De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!",
                "en": "The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.</p><p>Yhteislauluja järjestetään Malmitalon pienessä salissa kerran kuussa tiistaisin seuraavasti:</p><p>Ti 10.9. klo 17–18<br>Ti 8.10. klo 17–18<br>Ti 12.11. klo 17–18<br>Ti 10.12. klo 17–18</p><p>Tervetuloa mukaan!<br>Vapaa pääsy</p>",
                "sv": "<p>De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!</p><p>Här får alla sjunga härliga favoritlåtar av hjärtats lust under ledning av Jukka Okkonen och Pauli Kainulainen.</p><p>Allsången ordnas i den lilla salen i Malms kulturhus en gång i månaden på tisdagar.</p><p>Välkommen med!<br>Fritt inträde</p>",
                "en": "<p>The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to wonderful classics.</p><p>Sing-along sessions are held in the small hall of Malmitalo once a month on Tuesdays.</p><p>Welcome!<br>Free admission</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/077D8990293D4D8A40AD7273A252332D/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/077D8990293D4D8A40AD7273A252332D/Yhteislaulut",
                "en": "http://www.malmitalo.fi/en/events/event/077D8990293D4D8A40AD7273A252332D/Yhteislaulut"
            },
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Yhteislaulut",
                "en": "Yhteislaulut"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63828/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65001",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153047,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-19T08:14:41.536501Z",
                    "last_modified_time": "2024-11-19T08:14:41.536519Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763389.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153047/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-19T08:14:41.495012Z",
            "last_modified_time": "2024-12-20T01:14:20.052862Z",
            "date_published": null,
            "start_time": "2024-12-10T15:00:00Z",
            "end_time": "2024-12-10T17: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,
            "provider": null,
            "short_description": {
                "fi": "Aiheena kestävä kehitys – Miten säästää rahaa ja luontoa omassa arjessa?",
                "sv": "Ämnet är hållbar utveckling – Hur spara pengar och miljön i vardagen?",
                "en": "The topic is sustainable development – How to save money and nature in your daily life?"
            },
            "description": {
                "fi": "<p>Aiheena kestävä kehitys – Miten säästää rahaa ja luontoa omassa arjessa?</p><p>Aiheesta kertoo Terhi Takala Kestävät arjen valinnat -hankkeesta. Alustuksen jälkeen jatkamme keskustelua yhdessä.</p><p>Tule jakamaan parhaat vinkkisi! Tarjoamme kahvia, teetä ja pientä syötävää.</p><p>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton. Voit osallistua suomeksi tai englanniksi. Kantsun kahvit järjestää yhteistyössä alueen asukkaat, Kannelmäen D-asema ja Helsingin kaupunki.</p><p>Paikka: Kahvilan stage<br>Kesto: 2 tuntia<br>Maksuton, vapaa pääsy</p>",
                "sv": "<p>Ämnet är hållbar utveckling – Hur spara pengar och miljön i vardagen?</p><p>Terhi Takala från projektet Kestävät arjen valinnat (Hållbara vardagsval) berättar om ämnet. Efter introduktionen fortsätter vi diskussionen tillsammans. Kom och dela med dig av dina bästa tips. Kom och dela med dig av dina bästa tips! Vi bjuder på kaffe, te och litet tilltugg.</p><p>Du behöver inte anmäla dig och evenemanget är avgiftsfritt. Du kan delta på finska eller engelska. Kaffe i Kantsu ordnas i samarbete med invånarna i området, Kannelmäen D-asema och Helsingfors stad.</p><p>Plats: Kaféets stage<br>Längd: 2 timmar<br>Avgiftsfritt, fritt inträde</p>",
                "en": "<p>The topic is sustainable development – How to save money and nature in your daily life?</p><p>Terhi Takala from the Sustainable Everyday Choices project is here to tell you about this subject. After the introduction, we can continue the discussion together. Come and share your best tips. Come and share your best tips! We have coffee, tea and small bites.</p><p>Advance registration is not needed for this free event. You can participate in Finnish or English. Kantsu coffee is organised in cooperation with the area’s residents, Kannelmäki D-station and the City of Helsinki.</p><p>Location: Café stage<br>Duration: 2 hours<br>Free admission</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/255699589437797B4B34074C13D043EB/Kantsun_kahvit",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/255699589437797B4B34074C13D043EB/Kaffe_i_Kantsu",
                "en": "http://www.kanneltalo.fi/en/events/event/255699589437797B4B34074C13D043EB/Kantsu_coffee"
            },
            "name": {
                "fi": "Kantsun kahvit",
                "sv": "Kaffe i Kantsu",
                "en": "Kantsu coffee"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65001/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65006",
            "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:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153045,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-18T14:14:41.614650Z",
                    "last_modified_time": "2024-11-18T14:14:41.614676Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763422.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153045/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-18T14:14:41.568809Z",
            "last_modified_time": "2024-12-20T01:14:19.959164Z",
            "date_published": null,
            "start_time": "2024-12-10T14:00:00Z",
            "end_time": "2024-12-10T17: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,
            "provider": null,
            "short_description": {
                "fi": "Tip tap, nyt töppöstä toisensa eteen ja suunta kohti Malmitalon joulupuuroa.",
                "sv": "Tipp tapp, nu är det dags att tassa iväg mot julgröten på Malms kulturhus.",
                "en": "Tip tap, put one foot in front of the other and head to Malmitalo for Christmas porridge."
            },
            "description": {
                "fi": "<p>Tip tap, nyt töppöstä toisensa eteen ja suunta kohti Malmitalon joulupuuroa.</p><p>Haluamme toivottaa kaikille hyvää joulua herkullisen joulupuuron myötä. Tule mukaan aterioimaan ja juhlimaan riemastuttavaa joulunaikaa kanssamme. <br> <br>Vapaa pääsy!</p><p><b>Ohjelma:</b></p><p><b>Aula</b><br>Puurotarjoilu 300 ensimmäiselle klo 16-19<br>Emma Kuntsin jouluista kantelemusiikkia klo 16-17 ja 18-19</p><p><b>Pieni sali</b><br>Joululauluja yhteislaulujen merkeissä Jukka Okkosen ja Pauli Kainulaisen johdolla klo 17-18</p><p><b>Kirjasto</b><br>Lasten jouluhetki: askarrellaan, etsitään tonttuja ja koristellaan kuusta! 16-19<br>Joulusatutuokiot perheen pienimmille klo 16, 17 ja 18.</p><p>Vapaa pääsy!</p><p>Puurojuhlan jälkeen Malmisalissa on maksullinen Johanna & Mikko Iivanaisen Joulu talven tulilla -konsertti. <a href=\"https://www.lippu.fi/event/johanna-mikko-iivanainen-joulu-talven-tulilla-malmitalo-19106809/\">Osta lippu konserttiin</a></p><p>Yhteistyössä Malmitalo ja Malmin kirjasto</p>",
                "sv": "<p>Tipp tapp, nu är det dags att tassa iväg mot julgröten på Malms kulturhus.</p><p>Vi vill önska alla en riktigt god jul med läcker julgröt. Kom och ät med oss och fira den härliga jultiden tillsammans med oss. <br> <br>Fritt inträde! Det finns gröt till cirka 300 personer.</p>",
                "en": "<p>Tip tap, put one foot in front of the other and head to Malmitalo for Christmas porridge.</p><p>We want to wish everyone a happy Christmas with delicious Christmas porridge. Join us for porridge and celebrate an exhilarating holiday season. <br> <br>Admission is free! Porridge is available for approx. 300 people.</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0CE073E662D6B7DDD6F07161202021E/Puurojuhla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0CE073E662D6B7DDD6F07161202021E/Grotfest_",
                "en": "http://www.malmitalo.fi/en/events/event/D0CE073E662D6B7DDD6F07161202021E/Porridge_party_"
            },
            "name": {
                "fi": "Puurojuhla",
                "sv": "Grötfest",
                "en": "Porridge party"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65006/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64219",
            "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: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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "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": 151788,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-22T14:13:36.451065Z",
                    "last_modified_time": "2024-07-22T14:13:36.451080Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755960.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151788/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-22T14:13:36.435458Z",
            "last_modified_time": "2024-12-20T01:14:19.877480Z",
            "date_published": null,
            "start_time": "2024-12-10T12:00:00Z",
            "end_time": "2024-12-10T13: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,
            "provider": null,
            "short_description": {
                "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.",
                "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.",
                "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa."
            },
            "description": {
                "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!<br>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi<br>Vapaa pääsy.</p>",
                "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde.</p>",
                "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4E97A610DDF98C0C546961E9778FC9BD/Paivatanssit_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4E97A610DDF98C0C546961E9778FC9BD/Paivatanssit_",
                "en": "http://www.stoa.fi/en/events/event/4E97A610DDF98C0C546961E9778FC9BD/Paivatanssit_"
            },
            "name": {
                "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa",
                "sv": "Päivätanssit – med Jussi Väänänen och Katja Koukkula",
                "en": "Päivätanssit – with Jussi Väänänen and Katja Koukkula"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64219/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63870",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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/yso:p2625/?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:p6529/?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": 151999,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T16:16:06.538841Z",
                    "last_modified_time": "2024-07-30T16:16:06.538867Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753339.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151999/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-30T16:16:06.507396Z",
            "last_modified_time": "2024-12-20T01:14:19.786892Z",
            "date_published": null,
            "start_time": "2024-12-10T08: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,
            "provider": null,
            "short_description": {
                "fi": "Superkehot on asiantuntijatietoon pohjautuva esitys 3–5-vuotiaiden lasten suhteesta omaan ja toisten kehoon. TÄYTEEN VARATTU"
            },
            "description": {
                "fi": "<p>Superkehot on asiantuntijatietoon pohjautuva esitys 3–5-vuotiaiden lasten suhteesta omaan ja toisten kehoon. TÄYTEEN VARATTU</p><p>Se on syliä ja haleja, hassuttelua, höpöttelyä, nukkumista, heräämistä, nujuamista, hyppimistä, heilumista, juoksemista, tanssimista. Se on leikkiä, ja se on tärkeitä sanoja. Se on turvataitoja ja turvallista tahtomista, se on EI EI EI EI EI, se on KYLLÄ ja se on en tiedä...!</p><p>Se on se kaikkein tärkein – ikioma keho!</p><p>Vuoden 2024 Itu-palkittu esitys pohtii nukketeatterin keinoin kehoitsetunnon rakentumisen peruspalikoita, hellästi ja konkreettisesti.</p><p>Työryhmä:<br>Skenografia ja nuket: K Rasila<br>Dramaturgia ja ohjaus: Valto Kuuluvainen<br>Äänisuunnittelu: Maura Korhonen<br>Valosuunnitelu: Anna Pöllänen<br>Näyttämöllä: Eero Ojala ja Elisa Salo<br>Lopun superkehomusiikki: Sävellys Pasi Huttula, sovitus Maura Korhonen<br>Käsiohjelma: Leena Aronen<br>Esityskuva: Mikael Ahlfors ja K Rasila<br>Esityksen kesto 45 minuuttia</p><p>Vanhemmille tietosivusto: hyvakysymys.fi/lapsijaseksuaalisuus<br>Vanhemman vihkonen: https://www.vaestoliitto.fi/uploads/2020/11/bac46f71-vanhemmantietovihko-netti-2-20.pdf</p><p>Pikku Kakkosen videot: https://yle.fi/aihe/artikkeli/2019/06/05/pikku-kakkosessa-annetaan-kaikille-kehon-osille-nimi-ja-opetellaan</p><p>Ikäsuositus: 3–5-v<br>Kieli: suomi</p><p>Arkiaamuesityksiin ilmoittautuminen: kultus.fi perjantaista 1.11. klo 8 alkaen</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F7B29C829D18D58897A28C424E2ECBFE/Kuskit_Company_Superkehot"
            },
            "name": {
                "fi": "Kuskit Company: Superkehot – Ilmoittautuminen kultus.fi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63870/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63895",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/club-for-five/club-for-five-jouluna-2024-3655862/"
                    },
                    "price": {
                        "fi": "47 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151690,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-11T12:14:19.269403Z",
                    "last_modified_time": "2024-07-11T12:14:19.269429Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751899.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151690/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-25T08:12:54.637845Z",
            "last_modified_time": "2024-12-20T01:14:19.701464Z",
            "date_published": null,
            "start_time": "2024-12-09T17: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,
            "provider": {
                "fi": "Helmi Promotion Oy"
            },
            "short_description": null,
            "description": {
                "fi": "<p>Perinteinen Club For Fiven JOULUNA -konsertti yllättää yleisönsä jälleen täysin uudella joulukattauksella. Rakastettu lauluyhtye taikoo joulun monet sävyt herkästä tunnelmoinnista virtuoottiseen ilotteluun ja nostaa juhlan odotuksen riemun ylimmilleen. Tule antautumaan joulun vietäväksi ja koe vuoden odotetuin konsertti.</p><p>Ikäraja: S<br> <br>Kesto n. 2 h 15 min, sisältää väliajan</p>"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6AFAD630F3C73F7133CDB29F113D9FA8/CLUB_FOR_FIVE_Jouluna_2024"
            },
            "name": {
                "fi": "CLUB FOR FIVE: Jouluna 2024"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63895/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64472",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152252,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-29T13:15:59.699053Z",
                    "last_modified_time": "2024-08-29T13:15:59.699071Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757467.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152252/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-29T13:15:59.671952Z",
            "last_modified_time": "2024-12-20T01:14:19.618077Z",
            "date_published": null,
            "start_time": "2024-12-09T15:00:00Z",
            "end_time": "2024-12-09T17: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,
            "provider": null,
            "short_description": {
                "fi": "Mitä kuuluu? Tuu kertoo sun kuulumiset tai kysymään vaikka apua."
            },
            "description": {
                "fi": "<p>Mitä kuuluu? Tuu kertoo sun kuulumiset tai kysymään vaikka apua.</p><p>Tervetuloa juttelemaan niitä näitä tai vaikka syvempiäkin asioita nuoriso-ohjaajan ja muiden nuorien kanssa. Jokaisella kerralla myös pientä oheistoimintaa juttelun lomassa.</p><p>Ohjaajana toimii Vuosaaren alue- ja osallisuusohjaaja Iida Viljakainen.<br>Ei vaadi ennakkoilmoittautumista, voit vain saapua paikan päälle.</p><p>Tavataan joka toinen viikko maanantaisin klo 17–19, paikkana Vuotalo, kirjaston aula.<br>Päivämäärät: 9.9., 23.9., 4.11., 18.11. ja 9.12.2024</p><p>HUOM! Lokakuussa kuulumissohva poikkeuksellisesti keskiviikkoisin klo 17–19. <br>Päivämäärät: 9.10.2024 ja 23.10.2024</p><p>Seuraa Iidaa Instassa tai snäpissä: @ohjaajaiida<br>WhatsApp: 040 7360455</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B9B09951DD93254941EBC27F80369804/Kuulumissohva_nuorille_Vuotalolla"
            },
            "name": {
                "fi": "Kuulumissohva nuorille Vuotalolla"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64472/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63678",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "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": 151929,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-26T10:14:34.193513Z",
                    "last_modified_time": "2024-07-26T10:14:34.193530Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752005.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151929/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T10:14:34.169227Z",
            "last_modified_time": "2024-12-20T01:14:19.526166Z",
            "date_published": null,
            "start_time": "2024-12-09T15: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,
            "provider": null,
            "short_description": {
                "fi": "Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.",
                "sv": "Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.",
                "en": "The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships."
            },
            "description": {
                "fi": "<p>Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.</p><p>Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa illan elokuvaan klo 17–17.45. Luennon jälkeen klo 18 alkaa elokuvan ilmaisnäytös. Syksyn 2024 Kino Kuutamon elokuvasarja tutkii perhedynamiikkaa.</p><p>Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona. Kuten tavallista, isoisä Lasse (Tom Wentzel) juo liikaa, isoäiti Ella (Leena Uotila) on huolissaan kaikista ja sisarukset lankeavat vanhoihin riitoihinsa. Vain lapsilla tuntuu olevan kivaa. Joulun jälkeen jokainen lähtee omille teilleen ja palaa arkeen.</p><p>Tia Kouvon purevan humoristinen, elämänmakuinen elokuvadebyytti on tragikoominen tutkielma perhedynamiikasta, yksinäisyydestä ja yhdessäolosta — kuinka yritämme löytää yhteyden, mutta emme aina onnistu siinä.</p><p>Mummola sai vuoden 2024 Jussi-gaalassa yhteensä kolme Jussi-palkintoa: Vuoden elokuvan, Vuoden ohjaajan ja Vuoden käsikirjoituksen palkinnot. Mummola on Suomen Oscar-raadin ehdokas parhaaksi kansainväliseksi elokuvaksi.</p><p>”Mummola on Tia Kouvon hieno debyytti. Elokuva on kaikin puolin eheä ja onnistunut. Ohjaus on rauhallinen ja maadoittunut, mutta suurimmat kehut on säästettävä käsikirjoitukselle, josta näyttelijät saavat kaiken irti.” ★★★★ Jesse Raatikainen / Episodi</p><p>Valmistusvuosi: 2023<br>Ikäraja: 7 (sisältää väkivaltaa)<br>Pituus: 115 min.<br>Tekstitys: englanti<br>Käsikirjoitus ja ohjaus: Tia Kouvo<br>Näyttelijät: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä ja Jarkko Pajunen.<br>Vapaa pääsy</p><p>Yhteistyössä Helsingin työväenopiston kanssa.</p>",
                "sv": "<p>Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.</p><p>Filmhistorikern fil.dr. Harri Kilpi introducerar kvällens film kl. 17–17.45. Efter föreläsningen inleds den avgiftsfria visningen av filmen kl. 18.00. Kino Kuutamos filmserie hösten 2024 utforskar familjedynamik.</p><p>Varje år vid jul besöker systrarna Susanna (Ria Kataja) och Helena (Elina Knihtilä) sina föräldrar med sina familjer. Som vanligt dricker morfar Lasse (Tom Wentzel) för mycket, mormor Ella (Leena Uotila) oroar sig för alla och syskonen faller in i sina gamla gräl. Bara barnen verkar ha roligt. Efter julen går alla skilda vägar och återgår till vardagen.</p><p>Tia Kouvos bitande humoristiska och livsbejakande filmdebut är en tragikomisk studie av familjedynamik, ensamhet och samvaro – hur vi försöker få kontakt men inte alltid lyckas.</p><p>Mummola belönades med totalt tre Jussi-priser vid 2024 års Jussi-gala: Årets film, Årets regissör och Årets manus.</p><p>\"Mummola är en fantastisk debut för Tia Kouvo. Filmen är sammanhängande och lyckad i alla avseenden. Regin är lugn och jordnära, men det största berömmet måste reserveras för manuset, som skådespelarna får ut det mesta av.\" ★★★★ Jesse Raatikainen / Episodi</p><p>År: 2023<br>Åldersgräns: 7 (innehåller våld)<br>Längd: 115 min.<br>Undertexter: engelska<br>Manus och regi: Tia Kouvo<br>I rollerna: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä och Jarkko Pajunen.<br>Fritt inträde</p><p>I samarbete med Helsingfors finska arbetarinstitutet.</p>",
                "en": "<p>The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships.</p><p>Film history expert, PhD Harri Kilpi will introduce the film of the evening at 5-5:45 pm. After the introduction, the free screening of the film begins at 6 pm. The autumn 2024 Kino Kuutamo film series explores family dynamics.</p><p>Every year at Christmas, sisters Susanna (Ria Kataja) and Helena (Elina Knihtilä) and their parents visit their parents. As usual, Grandpa Lasse (Tom Wentzel) drinks too much, Grandma Ella (Leena Uotila) is worried about everyone and the sisters fall back into their old quarrels. Only the children seem to be having fun. After Christmas, everyone goes their separate ways and to their everyday lives.</p><p>Tia Kouvo's bitingly humorous film debut is a tragicomic treatise on family dynamics, loneliness and togetherness — how we try to find a connection but don't always succeed.</p><p>Mummola received a total of three Jussi awards at the Jussi Gala in 2024: Film of the Year, Director of the Year and Screenplay of the Year.</p><p>“Mummola is a fantastic debut by Tia Kouvo. The film is solid and successful in all respects. The direction is calm and grounded, but the script, which the actors make the most of, is definitely its most significant highlight.“★★★★Jesse Raatikainen / Episodi</p><p>Release year: 2023<br>Age limit: 7 (includes violence)<br>Length: 115 mins.<br>Subtitles: English<br>Script and direction: Tia Kouvo<br>Cast: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä and Jarkko Pajunen.<br>Free of charge</p><p>Film history expert PhD Harri Kilpi introduces the film at 17.00–17.45. The free screening of the film starts after the lecture at 18.00. The lecture is in Finnish.</p><p>In co-operation with Helsinki Finnish Adult Education Centre.</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CD8426417E51AAA7506E7762FDE66545/Kino_Kuutamo_Mummola_7_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CD8426417E51AAA7506E7762FDE66545/Kino_Kuutamo_Mummola_7_",
                "en": "http://www.kanneltalo.fi/en/events/event/CD8426417E51AAA7506E7762FDE66545/Kino_Kuutamo_Mummola_7_"
            },
            "name": {
                "fi": "Kino Kuutamo: Mummola (7) – Maksuttomat maanantait",
                "sv": "Kino Kuutamo: Mummola (7) – Kostnadsfria måndagar",
                "en": "Kino Kuutamo: Mummola (7) – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63678/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63679",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "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": 151928,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-26T10:14:34.005401Z",
                    "last_modified_time": "2024-07-26T10:14:34.005417Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752010.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151928/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T10:14:33.969993Z",
            "last_modified_time": "2024-12-20T01:14:19.432948Z",
            "date_published": null,
            "start_time": "2024-12-09T12:45: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,
            "provider": null,
            "short_description": {
                "fi": "Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.",
                "sv": "Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.",
                "en": "The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships."
            },
            "description": {
                "fi": "<p>Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.</p><p>Matineanäytös klo 14.45.</p><p>Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona. Kuten tavallista, isoisä Lasse (Tom Wentzel) juo liikaa, isoäiti Ella (Leena Uotila) on huolissaan kaikista ja sisarukset lankeavat vanhoihin riitoihinsa. Vain lapsilla tuntuu olevan kivaa. Joulun jälkeen jokainen lähtee omille teilleen ja palaa arkeen.</p><p>Tia Kouvon purevan humoristinen, elämänmakuinen elokuvadebyytti on tragikoominen tutkielma perhedynamiikasta, yksinäisyydestä ja yhdessäolosta — kuinka yritämme löytää yhteyden, mutta emme aina onnistu siinä.</p><p>Mummola sai vuoden 2024 Jussi-gaalassa yhteensä kolme Jussi-palkintoa: Vuoden elokuvan, Vuoden ohjaajan ja Vuoden käsikirjoituksen palkinnot. Mummola on Suomen Oscar-raadin ehdokas parhaaksi kansainväliseksi elokuvaksi.</p><p>”Mummola on Tia Kouvon hieno debyytti. Elokuva on kaikin puolin eheä ja onnistunut. Ohjaus on rauhallinen ja maadoittunut, mutta suurimmat kehut on säästettävä käsikirjoitukselle, josta näyttelijät saavat kaiken irti.” ★★★★ Jesse Raatikainen / Episodi</p><p>Valmistusvuosi: 2023<br>Ikäraja: 7 (sisältää väkivaltaa)<br>Pituus: 115 min.<br>Käsikirjoitus ja ohjaus: Tia Kouvo<br>Näyttelijät: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä ja Jarkko Pajunen.<br>Vapaa pääsy</p>",
                "sv": "<p>Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.</p><p>Matiné kl. 14.45.</p><p>Varje år vid jul besöker systrarna Susanna (Ria Kataja) och Helena (Elina Knihtilä) sina föräldrar med sina familjer. Som vanligt dricker morfar Lasse (Tom Wentzel) för mycket, mormor Ella (Leena Uotila) oroar sig för alla och syskonen faller in i sina gamla gräl. Bara barnen verkar ha roligt. Efter julen går alla skilda vägar och återgår till vardagen.</p><p>Tia Kouvos bitande humoristiska och livsbejakande filmdebut är en tragikomisk studie av familjedynamik, ensamhet och samvaro – hur vi försöker få kontakt men inte alltid lyckas.</p><p>Mummola belönades med totalt tre Jussi-priser vid 2024 års Jussi-gala: Årets film, Årets regissör och Årets manus.</p><p>\"Mummola är en fantastisk debut för Tia Kouvo. Filmen är sammanhängande och lyckad i alla avseenden. Regin är lugn och jordnära, men det största berömmet måste reserveras för manuset, som skådespelarna får ut det mesta av.\" ★★★★ Jesse Raatikainen / Episodi</p><p>År: 2023<br>Åldersgräns: 7 (innehåller våld)<br>Längd: 115 min.<br>Manus och regi: Tia Kouvo<br>I rollerna: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä och Jarkko Pajunen.<br>Fritt inträde</p>",
                "en": "<p>The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships.</p><p>Matinee show at 2:45 pm.</p><p>Every year at Christmas, sisters Susanna (Ria Kataja) and Helena (Elina Knihtilä) and their parents visit their parents. As usual, Grandpa Lasse (Tom Wentzel) drinks too much, Grandma Ella (Leena Uotila) is worried about everyone and the sisters fall back into their old quarrels. Only the children seem to be having fun. After Christmas, everyone goes their separate ways and to their everyday lives.</p><p>Tia Kouvo's bitingly humorous film debut is a tragicomic treatise on family dynamics, loneliness and togetherness — how we try to find a connection but don't always succeed.</p><p>Mummola received a total of three Jussi awards at the Jussi Gala in 2024: Film of the Year, Director of the Year and Screenplay of the Year.</p><p>“Mummola is a fantastic debut by Tia Kouvo. The film is solid and successful in all respects. The direction is calm and grounded, but the script, which the actors make the most of, is definitely its most significant highlight.“★★★★Jesse Raatikainen / Episodi</p><p>Release year: 2023<br>Age limit: 7 (includes violence)<br>Length: 115 mins.<br>Script and direction: Tia Kouvo<br>Cast: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä and Jarkko Pajunen.<br>Free of charge</p><p>Film history expert PhD Harri Kilpi introduces the film at 17.00–17.45. The free screening of the film starts after the lecture at 18.00. The lecture is in Finnish.</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F0F8F92638A08FF7ED641013768E9012/Kino_Kuutamo_Mummola_7_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F0F8F92638A08FF7ED641013768E9012/Kino_Kuutamo_Mummola_7_",
                "en": "http://www.kanneltalo.fi/en/events/event/F0F8F92638A08FF7ED641013768E9012/Kino_Kuutamo_Mummola_7_"
            },
            "name": {
                "fi": "Kino Kuutamo: Mummola (7) – Maksuttomat maanantait",
                "sv": "Kino Kuutamo: Mummola (7) – Kostnadsfria måndagar",
                "en": "Kino Kuutamo: Mummola (7) – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63679/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64718",
            "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:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152825,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-16T10:15:56.718879Z",
                    "last_modified_time": "2024-10-16T10:15:56.718899Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759323.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152825/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-16T10:15:56.670320Z",
            "last_modified_time": "2024-12-20T01:14:19.342298Z",
            "date_published": null,
            "start_time": "2024-12-09T07:00:00Z",
            "end_time": "2024-12-09T12: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,
            "provider": null,
            "short_description": {
                "fi": "Maksuton palvelutori tarjoaa kohtaamisia, mielekästä tekemistä ja tietoa vapaa-ajan mahdollisuuksista alueella. Laita päivä kalenteriin ja tule mukaan!",
                "sv": "Det avgiftsfria evenemanget bjuder på möten, meningsfulla aktiviteter och information om fritidsmöjligheter i området.",
                "en": "The free Palvelutori service concept offers encounters, meaningful activities and information on leisure opportunities in the area."
            },
            "description": {
                "fi": "<p>Maksuton palvelutori tarjoaa kohtaamisia, mielekästä tekemistä ja tietoa vapaa-ajan mahdollisuuksista alueella. Laita päivä kalenteriin ja tule mukaan!</p><p>Alueen yhdistykset ja toimijat esittelevät palveluitaan, pääset kysymään ja kokeilemaan. Tule mukaan ja tuo kaverisikin!</p><p><b>Tapahtuman aikataulu</b><br>9.30–9.45 Tuolijumppa (Tanssisali)<br>9.40–10.00 Kaija Rädyn tanssiopetus (Malmisali)<br>10.00–10.15 Tasapainojumppa (Tanssisali)<br>10.00–11.00 DJ Börjen SenioriDisco (Malmisali)<br>10.00–13.00 Jouluisia koristeita -työpaja (Työväenopisto, 2. krs, käsityöluokka)<br>10.30–10.45 Kehonhuolto (Tanssisali)<br>11.00–11.15 Tasapainojumppa (Tanssisali)<br>11.30–12.30 Jorma Uotisen puheenvuoro (Malmisali)<br>12.00–12.15 SenioriKarate (Tanssisali)<br>13.00–14.00 DJ Börjen SenioriDisco (Malmisali)<br>13.30–13.45 SenioriKarate (Tanssisali)<br>14.30–15.00 Etätuolijumppa (Työväenopisto, 2. krs, luokka 1)</p><p>HUOM! Jorma Uotisen puheenvuoroa mahtuu kuuntelemaan 200 henkilöä.</p><p>Lisäksi n. 20 eri näytteilleasettajaa Malmitalon 1. ja 2. kerroksen aulatiloissa. Valoinstallaation avajaiset Malmitalon 2. kerroksen aulassa.</p><p>Ikääntyneiden palvelutori maanantaina 9.12.2024 klo 9–14 <br>Malmitalo, Ala-Malmin tori 1<br>Vapaa pääsy!</p><p><b>Yhteistyössä</b><br>Malmitalo, Liikuntapalveluiden Alueliikunta ja Liikuntaluotsit, Syystien palvelukeskus, Seniori-info, Naapuruuspiiri, Hyvinvoiva Helsinki –hanke, Työväenopisto, Yhteisötalot, KauKo-hanke, Forum Virium, Urheiluhallit, Malmin uimahalli, Miina Sillanpää –säätiö, SenioriKamu- hanke, Jade-yhteisö, Vanhustyön keskusliitto, Koillis-Helsingin lähimmäistyö Milja ry, Mereo ry, Helsingin seudun 4H-yhdistys, Käpyrinne, Lilinkotisäätiö, Tapanilan EräKarate, Seniorikarate, Helsingin NMKY, Lääkäriasema Medipulssi, Malmin Nova, Malmin Varustamo, Malmin seurakunta, Helsingin seurakuntayhtymä ja Stadin AO.</p>",
                "sv": "<p>Det avgiftsfria evenemanget bjuder på möten, meningsfulla aktiviteter och information om fritidsmöjligheter i området.</p><p>Områdets föreningar och aktörer presenterar sina tjänster, du får fråga och prova. Kom med och ta med dina kompisar!</p><p><b>Inspirerande program:</b><br>Jorma Uotinens tal<br>SeniorDisco med DJ Börje<br>Dansstunder med dansartist Kaija Räty <br>SeniorKarate<br>Stolgymnastik<br>Arbetarinstitutets hantarbetsverkstad<br>Motionstips<br>Aktiviteter i område<br>Idéer för vardagen<br>Samtalspartner och kompisar<br>Kaffe och te</p><p>Servicetorg för äldre måndagen 9.12 kl. 9–14<br>Malms kulturhus – Nedre Malms torg 1<br>Fritt inträde!</p>",
                "en": "<p>The free Palvelutori service concept offers encounters, meaningful activities and information on leisure opportunities in the area.</p><p>Associations and operators in the area present their services, and you have the chance to ask them questions and try out the options they offer. Come and see, and bring your friend with you!</p><p><b>Inspiring programme:</b><br>Speech by Jorma Uotinen<br>Senior disco by DJ Börje<br>Moments of dance by dance artist Kaija Räty<br>Karate for seniors<br>Chair exercises<br>Handcrafting workshop by the Adult Education Centre<br>Tips for physical activities<br>Things to do in your area<br>Ideas for everyday life<br>People to talk and spend time with<br>Coffee and tea</p><p>The Palvelutori senior service event on Monday, 9 December from 9 a.m. to 2 p.m.<br>Malmitalo, Ala-Malmin tori 1<br>Free entrance!</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/663AA080A1B779BBA3FB4C854D2BCB7B/Seniorien_palvelutori_loyda_oma_tapasi_liikkua_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/663AA080A1B779BBA3FB4C854D2BCB7B/Servicetorget_for_aldre_hitta_ditt_satt_att_motionera_",
                "en": "http://www.malmitalo.fi/en/events/event/663AA080A1B779BBA3FB4C854D2BCB7B/The_Palvelutori_senior_service_event_"
            },
            "name": {
                "fi": "Seniorien palvelutori – löydä oma tapasi liikkua!",
                "sv": "Servicetorget för äldre – hitta ditt sätt att motionera!",
                "en": "The Palvelutori senior service event"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64718/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63603",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3649384"
                    },
                    "price": {
                        "fi": "36,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151162,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-16T14:12:55.120687Z",
                    "last_modified_time": "2024-05-16T14:12:55.120700Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751586.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151162/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-16T14:12:55.101796Z",
            "last_modified_time": "2024-12-20T01:14:19.251537Z",
            "date_published": null,
            "start_time": "2024-12-07T17: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,
            "provider": {
                "fi": "Alt Agency & Management"
            },
            "short_description": {
                "fi": "Kotimaisen indiepopin kiintotähti Iisa vetäytyy tämän vuoden päätteeksi sooloprojektillaan kotimaan popkentältä. Viisi sooloalbumia vuosina 2014–2024 julkaissut ikoninen laulaja–lauluntekijä soittaa ennen telakalle jäämistään yhtyeineen 7. joulukuuta Tunteilla 2013–2024 -juhlakonsertin Helsingin Savoy-teatterissa."
            },
            "description": {
                "fi": "<p>Kotimaisen indiepopin kiintotähti Iisa vetäytyy tämän vuoden päätteeksi sooloprojektillaan kotimaan popkentältä. Viisi sooloalbumia vuosina 2014–2024 julkaissut ikoninen laulaja–lauluntekijä soittaa ennen telakalle jäämistään yhtyeineen 7. joulukuuta Tunteilla 2013–2024 -juhlakonsertin Helsingin Savoy-teatterissa.</p><p>Väliajallisessa konsertissa kuullaan kronologinen läpileikkaus yleisön rakastamista Iisan kappaleista. Mukana on myös viime vuosina harvoin livenä kuultuja helmiä artistin viisihenkisen yhtyeen (Antti Hietala, Omar Zakik, Veli Kauppinen, Ilari Heinilä, Iisa) tulkitsemana. Luvassa on myös Iisan uralla vaikuttaneita vierailijoita. <i>”Olen toivonut pitkään mahdollisuutta saada nousta legendaarisen Savoy-teatterin lavalle. On sykähdyttävää, että saamme juuri tämän, tunnelmaltaan uniikin paikan viimeisenä keikkakalenterissa olevan esiintymisen näyttämöksi”</i>, Iisa kertoo.</p><p>Kesto n. 2 t, sis. väliajan.</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/77CE52A5DCCC890F8A1A4C0CD8F0F2D8/Iisa_Tunteilla_2013_2024_-juhlakonsertti"
            },
            "name": {
                "fi": "Iisa: Tunteilla 2013–2024 -juhlakonsertti – Loppuunmyyty! Sold out!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63603/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64278",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/ina-forsman-goes-motown-christmas-vuotalo-18872966/",
                        "sv": "https://www.lippu.fi/event/ina-forsman-goes-motown-christmas-vuotalo-18872966/",
                        "en": "https://www.lippu.fi/event/ina-forsman-goes-motown-christmas-vuotalo-18872966/"
                    },
                    "price": {
                        "fi": "24,80 € / 20 €",
                        "sv": "24,80 € / 20 €",
                        "en": "24,80 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151840,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T09:14:54.867586Z",
                    "last_modified_time": "2024-07-25T09:14:54.867604Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749906.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151840/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T09:14:54.834606Z",
            "last_modified_time": "2024-12-20T01:14:19.163216Z",
            "date_published": null,
            "start_time": "2024-12-07T16: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,
            "provider": null,
            "short_description": {
                "fi": "Ilmaisuvoimainen Ina Forsman tarjoa Vuotalossa ikimuistoisen joulukonsertin Motown-rytmien säestämänä!",
                "sv": "Den frimodiga Ina Forsman bjuder på en minnesvärd julkonsert på Nordhuset till ackompanjemang av Motown-rytmer!",
                "en": "Expressive Ina Forsman gives us a memorable Christmas concert at Vuotalo accompanied by Motown rhythms!"
            },
            "description": {
                "fi": "<p>Ilmaisuvoimainen Ina Forsman tarjoa Vuotalossa ikimuistoisen joulukonsertin Motown-rytmien säestämänä!</p><p>Ina Forsman palaa jouluksi kotikonnuille, kun Motown goes Christmas -kiertue starttaa joulukuun alussa. Nämä konsertit ovat soul- ja roots-musiikin ystäville ja suurkuluttajille sekä ihmisille, jotka kaipaavat vaihtelua perinteiseen joulutunnelmaan.</p><p>Ina vaihtaa tamburiinin kulkusiin, kun hän ja hänen bändinsä soittavat joululauluja Motown-tyyliin, sekä omia raikkaita soul sovituksia tunnetuista ja ei niin tunnetuista jouluisista kappaleista. Luvassa groovea, soulia, funkia, gospelia sekä koskettavia hetkiä.</p><p>Vuodesta 2013 lähtien musiikkia julkaissut ja maailmaa kiertänyt, Helsingistä Berliiniin muuttanut soul-artisti Ina Forsman tunnetaan etenkin hänen ilmaisuvoimaisesta ja sielukkaasta äänestään, sekä energisistä ja dynaamisista live-esiintymisistään.</p><p>Forsmanilta on ilmestynyt tähän mennessä useampia singlejulkaisuja, sekä kaksi sooloalbumia Ina Forsman (2016) ja Been Meaning to Tell You (2019). Kolmas sooloalbumi All There Is julkaistiin kesäkuussa 2022.</p><p>Kesto: 2 t, sis. väliajan</p>",
                "sv": "<p>Den frimodiga Ina Forsman bjuder på en minnesvärd julkonsert på Nordhuset till ackompanjemang av Motown-rytmer!</p><p>Soulartisten Ina Forsman har släppt musik och turnerat världen över sedan år 2013. Hon har flyttat från Helsingfors till Berlin, och är känd för sin uttrycksfulla och själfulla röst, liksom sina energiska och dynamiska liveframträdanden.</p><p>Hittills har Forsman släppt flera singlar och två soloalbum, Ina Forsman (2016) och Been Meaning to Tell You (2019). Hennes tredje soloalbum All There Is släpptes i juni 2022.</p>",
                "en": "<p>Expressive Ina Forsman gives us a memorable Christmas concert at Vuotalo accompanied by Motown rhythms!</p><p>Ina Forsman, a soul artist who has been releasing music and touring the world since 2013 and moved from Helsinki to Berlin, is best known for her expressive and soulful voice, as well as her energetic and dynamic live performances.</p><p>To date, Forsman has released several singles, as well as two solo albums, Ina Forsman (2016) and Been Meaning to Tell You (2019). Her third solo album, All There Is, was released in June 2022.</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/75DBF84A423CBB40D4F40F77D472CA9E/Ina_Forsman_The_Motown_Goes_Christmas",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/75DBF84A423CBB40D4F40F77D472CA9E/Ina_Forsman_The_Motown_Goes_Christmas",
                "en": "http://www.vuotalo.fi/en/events/event/75DBF84A423CBB40D4F40F77D472CA9E/Ina_Forsman_The_Motown_Goes_Christmas"
            },
            "name": {
                "fi": "Ina Forsman: The Motown Goes Christmas",
                "sv": "Ina Forsman: The Motown Goes Christmas",
                "en": "Ina Forsman: The Motown Goes Christmas"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64278/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64923",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-room-next-door-3764519/"
                    },
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152967,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-06T14:14:59.439791Z",
                    "last_modified_time": "2024-11-06T14:14:59.439810Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760464.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152967/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-06T14:14:59.414539Z",
            "last_modified_time": "2024-12-20T01:14:19.076009Z",
            "date_published": null,
            "start_time": "2024-12-07T16: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,
            "provider": null,
            "short_description": {
                "fi": "Ingrid (Julianne Moore) ja Martha (Tilda Swinton) olivat nuoruudessaan läheisiä ystäviä työskennellessään samassa lehdessä."
            },
            "description": {
                "fi": "<p>Ingrid (Julianne Moore) ja Martha (Tilda Swinton) olivat nuoruudessaan läheisiä ystäviä työskennellessään samassa lehdessä.</p><p>Ingrid jatkoi uraansa kirjailijaksi, kun taas Marthasta tuli sotareportteri, ja heidän tiensä erkanivat elämän viedessä eri suuntiin. Vuosien jälkeen he tapaavat uudelleen äärimmäisessä, mutta oudon kauniissa tilanteessa.</p><p>Elokuvan on ohjannut Pedro Almodóvar.</p><p>Ikäraja: 12<br>Kesto: 107 min.<br>Ensi-ilta: 1.11.2024<br>Elokuva on tekstitetty suomeksi ja ruotsiksi</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F1AF385323A47F85E4C8EBD4BC3E983D/The_Room_Next_Door_12_"
            },
            "name": {
                "fi": "The Room Next Door (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64923/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64769",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/satusopanen-tuttiorkesteri/"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152869,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-24T11:15:00.875412Z",
                    "last_modified_time": "2024-10-24T11:15:00.875436Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759208.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152869/?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-10-24T11:15:00.851539Z",
            "last_modified_time": "2024-12-20T01:14:18.988132Z",
            "date_published": null,
            "start_time": "2024-12-07T13: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,
            "provider": null,
            "short_description": {
                "fi": "Tonttulan puuhissa on melkoinen tahti, touhua siivittää musiikin mahti. Laulut ne raikaa ja rytmit kaikaa, täällä on oikeaa Joulun taikaa!"
            },
            "description": {
                "fi": "<p>Tonttulan puuhissa on melkoinen tahti, touhua siivittää musiikin mahti. Laulut ne raikaa ja rytmit kaikaa, täällä on oikeaa Joulun taikaa!</p><p>Tervetuloa koko perheen voimin laulamaan, leikkimään ja seuraamaan Tonttulan väen iloista menoa! Joulutunnelman lavalle loihtii iki-ihana Satu Sopanen ja vallattomat Tuttiorkesterin tontut!<br> <br>Jo yli 35 vuotta lapsia laulattanut, Emmallakin palkittu yhtye jatkaa suomalaisen lastenmusiikin huipulla. Satu Sopasen ja Tuttiorkesterin tavaramerkki on lumoavat musiikilliset tarinat sekä yhdessä laulamisen ja leikkimisen riemu – konserttielämys tempaa mukaansa niin pienet kuin isommatkin kuulijat! <br> <br>Esitys sopii kaikenikäisille.</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3A577ADA3C5EBA1D2CD053C818FB8FB2/Joulun_perhepaiva_Satu_Sopanen_ja_Tuttiorkesteri_Tontun_puuhat_-konsertti_LOPPUUNMYYTY_"
            },
            "name": {
                "fi": "Joulun perhepäivä: Satu Sopanen ja Tuttiorkesteri: Tontun puuhat -konsertti (LOPPUUNMYYTY)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64769/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64992",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kanneltalo/sadko-3769580/"
                    },
                    "price": {
                        "fi": "34,40 € / 29,40 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153020,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-14T09:14:43.516394Z",
                    "last_modified_time": "2024-11-14T09:14:43.516411Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761638.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153020/?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-11-14T09:14:43.491853Z",
            "last_modified_time": "2024-12-20T01:14:18.895653Z",
            "date_published": null,
            "start_time": "2024-12-07T13: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,
            "provider": {
                "fi": "Helsingin Monipuolinen Toimintakeskus Sadko ry"
            },
            "short_description": {
                "fi": "Uudenvuoden matka Dobbin kanssa satujen maailmoihin on uusi juhlanäytös, joka nostaa koko perheen joulutunnelman!"
            },
            "description": {
                "fi": "<p>Uudenvuoden matka Dobbin kanssa satujen maailmoihin on uusi juhlanäytös, joka nostaa koko perheen joulutunnelman!</p><p>Karismaattisin hahmo, Dobbi, ja hänen ystävänsä kutsuvat teidät mukaan jännittävälle matkalle satuelokuvien ja -maailmojen läpi. Elsa, Spider-Man, Bremenin Musikantit ja monet muut hahmot iloisesti jakavat kanssanne uudenvuoden salaisuuksia ja kutsuvat teidät suuriin talvijuhliin! Luvassa vauhdikkaita lauluja, kiehtova juoni sekä sirkusesityksiä!</p><p>Mutta ei tässä kaikki! Uudenvuoden näytöksessä teitä odottaa ilmainen valokuvaus satujen hahmojen kanssa, animaatio-ohjelma aulassa joulupukin ja hänen tyttärensä kanssa! Nyt on helppo valmistautua hyvään mielialaan koko vuodeksi! Liity mukaan tähän hyvän mielen ja taianomaisen sadun maailmaan, josta jokainen lapsi unelmoi!</p><p>Venäjänkielinen esitys 2–12 vuotiaille lapsille.</p><p>Kesto noin 1 tunti.</p>",
                "ru": "<p>Садко<br>Новогоднее путешествие Добби по вселенным разных сказок<br>07.12.24 klo 13:00 ja 15:00 Kanneltalossa (район Kannelmäki)</p><p>«Новогоднее путешествие Добби по вселенным разных сказок» — это новое праздничное шоу, которое поднимет настроение всей семье! Самый обаятельный герой Добби и его друзья приглашают вас отправиться вместе с ними в увлекательное путешествие по загадочным вселенным фильмов и сказок. Эльза, Человек-паук, Бременские музыканты и многие другие герои с радостью расскажут вам новогодние секреты и пригласят к себе в гости на большую зимнюю вечеринку! Зажигательные песни, увлекательный сюжет, цирковые номера! Но это ещё не всё! На новогоднем шоу вас ждёт бесплатная фотосессия с персонажами сказки, анимационная программа в фойе с Дедом Морозом и Снегурочкой! Теперь запастись хорошим настроением на весь год очень легко! Станьте участниками доброй и волшебной сказки, о которой мечтает каждый ребенок!</p><p>Helsingin Monipuolinen Toimintakeskus Sadko ry<br>Русскоязычный спектакль для детей 2-12 лет. <br>Продолжительность около 1-1,30 часа .<br>Стоимость билета: 30,50 €/ребенок (с подарком) и 25,50€/взрослый; 25,50€/ребенок (без подарка)<br>Билеты продаются во всех точках продаж Lippupiste и на сайте lippu.fi<br>Интернет-магазин.</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8345F57D31C51FAAB4F45F23FEB4C691/Uudenvuoden_matka_Dobbin_kanssa_satujen_maailmoihin"
            },
            "name": {
                "fi": "Uudenvuoden matka Dobbin kanssa satujen maailmoihin – Venäjänkielinen koko perheen tapahtuma"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64992/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64950",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152995,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-08T12:15:02.315141Z",
                    "last_modified_time": "2024-11-08T12:15:02.315161Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760323.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152995/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-08T12:15:02.260492Z",
            "last_modified_time": "2024-12-20T01:14:18.793195Z",
            "date_published": null,
            "start_time": "2024-12-07",
            "end_time": "2025-01-12",
            "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,
            "provider": null,
            "short_description": {
                "fi": "Kuvataiteilija Olavi Fellman on koonnut taiteilijaryhmän, jonka taiteilijat ilmaisevat kukin omalla tavallaan teoksillaan ilmastokriisin herättämiä ajatuksia ja tunteita.",
                "sv": "Bildkonstnären Olavi Fellman har samlat en grupp konstnärer som var och en på sitt sätt uttrycker de tankar och känslor som klimatkrisen väcker hos dem.",
                "en": "Visual artist Olavi Fellman has assembled a group of artists, who each express the thoughts and feelings provoked by the climate crisis in their own way."
            },
            "description": {
                "fi": "<p>Kuvataiteilija Olavi Fellman on koonnut taiteilijaryhmän, jonka taiteilijat ilmaisevat kukin omalla tavallaan teoksillaan ilmastokriisin herättämiä ajatuksia ja tunteita.</p><p>Näyttelyssä on muun muassa maalauksia, grafiikkaa, kollaaseja, tekstiilitaidetta ja veistoksia.</p><p>Taiteilijat: Olavi Fellman, Tiina-Liisa Kaalamo, mariaandamanartcollective (mm. Timo Sguazzin), Sonja Salomäki, Satu Söderholm</p>",
                "sv": "<p>Bildkonstnären Olavi Fellman har samlat en grupp konstnärer som var och en på sitt sätt uttrycker de tankar och känslor som klimatkrisen väcker hos dem.</p><p>Utställningen omfattar målningar, grafik, collage, textilier och skulpturer.</p><p>Konstnärer: Olavi Fellman, Tiina-Liisa Kaalamo, mariaandamanartcollective (bl.a. Timo Sguazzin), Sonja Salomäki, Satu Söderholm</p>",
                "en": "<p>Visual artist Olavi Fellman has assembled a group of artists, who each express the thoughts and feelings provoked by the climate crisis in their own way.</p><p>The exhibition includes paintings, print graphics, collages, textile art and sculptures, among others.</p><p>Artists: Olavi Fellman, Tiina-Liisa Kaalamo, mariaandamanartcollective (incl. Timo Sguazzin), Sonja Salomäki, Satu Söderholm</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/35031D8867E0E12FC89311480E91D47C/Ilmastovanhempien_Ilmastogalleria_I",
                "sv": "http://www.stoa.fi/sv/evenemang/event/35031D8867E0E12FC89311480E91D47C/Klimatforaldrarnas_Klimatgalleri_I",
                "en": "http://www.stoa.fi/en/events/event/35031D8867E0E12FC89311480E91D47C/Climate_Parents_Climate_Gallery_I"
            },
            "name": {
                "fi": "Ilmastovanhempien Ilmastogalleria I",
                "sv": "Klimatföräldrarnas Klimatgalleri I",
                "en": "Climate Parents' Climate Gallery I"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64950/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64298",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@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": 151901,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T19:14:20.596693Z",
                    "last_modified_time": "2024-07-25T19:14:20.596709Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751038.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151901/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-25T19:14:20.571296Z",
            "last_modified_time": "2024-12-20T01:14:18.701119Z",
            "date_published": null,
            "start_time": "2024-12-07T11:00:00Z",
            "end_time": "2024-12-07T14: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,
            "provider": null,
            "short_description": {
                "fi": "Ota kardemumman ja kanelin lisäksi ripaus taidetta jouluusi!",
                "sv": "Utöver kardemumma och kanel kan du krydda din jul med en gnutta konst!",
                "en": "In addition to cardamom and cinnamon, add a pinch of art into your Christmas!"
            },
            "description": {
                "fi": "<p>Ota kardemumman ja kanelin lisäksi ripaus taidetta jouluusi!</p><p>Otetaan varaslähtö joulun riemukkaisiin rientoihin Malmitalon perinteisessä joulun perhepäivässä. Tule askartelemaan, fiilistelemään konserttiin rakastettuja joululauluja ja uppoutumaan lämpimään tunnelmaan jouluteemaisissa työpajoissa.</p><p><b>Päivän ohjelma</b></p><p><b>klo 13–15 Tähtitaivas, talven kylä -nonstop-työpaja Malmitalon parvella</b><br>Tervetuloa askartelemaan jouluisia koristeita kierrätysmateriaaleista! Koristeelliset talot valmistuvat kierrätyspahvista. Talojen ylle syttyy tuikkimaan perinteisiä lankatähtiä. Vapaa pääsy.</p><p><b>klo 13-15 Joulukoristetyöpaja Malmitalon aulassa </b> <br>Nonstop-työpajassa valmistetaan paperinarusta sydämiä sekä erilaisista kankaista, nauhoista ja paperinaruja hyödyntäen kuusia Taito Etelä-Suomen osaavien ohjaajien johdolla. Vapaa pääsy.</p><p><b>klo 13-15 Joulupukki tavattavissa Malmitalon aulassa</b> <br>Tule tervehtimään joulupukkia tai vaikkapa kuiskaamaan joululahjatoiveesi hänen korvaansa! Vapaa pääsy.</p><p><b>klo 13 Grinch –elokuva (K7) Pienessä salissa </b><br>Äkäpussi Grinch aikoo varastaa joulun, mutta pienen tytön joulumieli sulattaa hänen sydämensä. Suomeksi puhuttu animaatioelokuva. Kesto 90 min, vapaa pääsy.</p><p><b>klo 15 Vonkka –elokuva (K7) Pienessä salissa</b><br>”Vonkka” perustuu Roald Dahlin ikonisen ja huippusuositun lastenkirjan Jali ja suklaatehdas hämmästyttäviin hahmoihin. Pääosassa Timothée Chalamet. Kesto 116 min, vapaa pääsy.</p><p><b>klo 15 Satu Sopanen ja Tuttiorkesteri: Tontun puuhat –konsertti</b><br>Joulutunnelman lavalle loihtii iki-ihana Satu Sopanen ja vallattomat Tuttiorkesterin tontut! Liput 8 €</p>",
                "sv": "<p>Utöver kardemumma och kanel kan du krydda din jul med en gnutta konst!</p><p>Vi tar en tjuvstart med julfirandet på julens traditionella familjedag i Malms kulturhus. Kom och pyssla, njut av en konsert med älskade julsånger och fördjupa dig i den varma stämningen i workshopparna med jultema.</p><p><b>Dagens program</b></p><p><b>kl. 13–15 Juldekorationsworkshop i lobbyn till Malms kulturhus </b> <br>I nonstop-workshoppen lagar vi hjärtan av papperssnören och granar av olika tyger, band och papperssnören under ledning av skickliga instruktörer från Taito Etelä-Suomi. Fritt inträde.</p><p><b>kl. 13–15 Julgubben är anträffbar i lobbyn till Malms kulturhus</b> <br>Kom och hälsa på julgubben eller viska dina julklappsönskemål i hans öra! Fritt inträde.</p><p><b>kl. 13–15 Nonstop-workshoppen Stjärnhimmel, vinterby på loftet i Malms kulturhus</b><br>Välkommen att pyssla juldekorationer av återvunnet material! Vi gör dekorativa hus av återvunnen kartong. Ovan om husen tänds traditionella trådstjärnor. Fritt inträde.</p><p><b>kl. 13 filmen The Grinch (F7) i Lilla salen </b><br>Den sure Grinch är ute efter att stjäla julen, men en liten flickas julkänsla får hans hjärta att smälta. Animerad film med finskt tal. Längd 90 min., fritt inträde.</p><p><b>kl. 15 filmen Wonka (F7) i Lilla salen</b><br>“Wonka” är baserad på de fantastiska karaktärerna i Roald Dahls ikoniska och enormt populära barnbok “Kalle och chokladfabriken”. Timothée Chalamet i huvudrollen. Längd 116 min., fritt inträde.</p><p><b>kl. 15 Satu Sopanen och Tuttiorkesteri: Konserten Tontun puuhat (Tomtens stök)</b><br>Den alltid lika älskvärda Satu Sopanen och Tuttiorkesteris busiga nissar skapar julstämning på scenen! Biljetter 8 €</p>",
                "en": "<p>In addition to cardamom and cinnamon, add a pinch of art into your Christmas!</p><p>Let's get a head start on the joyous holiday season at Malmitalo's traditional Family Day at Christmas. Come and do crafts, listen to the Christmas carols you love at a concert, and immerse yourself in the warm atmosphere in the Christmas-themed workshops.</p><p><b>Programme</b></p><p><b>1–3 pm Christmas decoration workshop in the Malmitalo lobby</b><br>In this Nonstop Workshop, you get to create hearts from paper string and Christmas trees from various fabrics, ribbons and paper string under the guidance of skilled instructors from Taito Southern Finland. Admission is free.</p><p><b>1–3 pm Meet Santa Claus in the Malmitalo lobby</b><br>Come greet Santa or tell him your Christmas gift wishes! Admission is free.</p><p><b>1–3 pm Starry Sky, Winter Village Nonstop Workshop on the Malmitalo gallery</b><br>Come and create Christmas decorations from recycled materials! Make decorative houses from recycled cardboard. Light up traditional yarn stars above the houses. Admission is free.</p><p><b>1 pm Movie screening: Grinch (K7) in the Small Hall</b><br>The Grinch intends to steal Christmas, but a little girl's Christmas spirit melts his heart. Animated film, Finnish dub. Duration 90 min, free entry.</p><p><b>3 pm Movie screening: Wonka (K7) in the Small Hall</b><br>“Wonka” is based on the amazing characters of Roald Dahl's iconic and hugely popular children's book, Charlie and the Chocolate Factory. Starring Timothée Chalamet. Duration 116 min, free entry.</p><p><b>3 pm Satu Sopanen and Tuttiorkesteri: Tontun puuhat concert</b><br>Satu Sopanen enchants the stage with Christmas magic with the mischievous Elves of Tuttiorkesteri! Tickets €8</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/50604A34BA8B4C0A36799AE6BE16B1C3/Joulun_perhepaiva",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/50604A34BA8B4C0A36799AE6BE16B1C3/Julens_familjedag",
                "en": "http://www.malmitalo.fi/en/events/event/50604A34BA8B4C0A36799AE6BE16B1C3/Family_Day_at_Christmas"
            },
            "name": {
                "fi": "Joulun perhepäivä – Joulupukki tavattavissa! Lisäksi työpajoja ja joululeffoja",
                "sv": "Julens familjedag – Julgubben är anträffbar! Dessutom workshoppar och julfilmer.",
                "en": "Family Day at Christmas – Come see Santa! We also have workshops and Christmas movies."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64298/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64991",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kanneltalo/sadko-3769580/"
                    },
                    "price": {
                        "fi": "34,40 € / 29,40 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153019,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-14T09:14:43.204419Z",
                    "last_modified_time": "2024-11-14T09:14:43.204445Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761637.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153019/?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-11-14T09:14:43.161127Z",
            "last_modified_time": "2024-12-20T01:14:18.610029Z",
            "date_published": null,
            "start_time": "2024-12-07T11: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,
            "provider": {
                "fi": "Helsingin Monipuolinen Toimintakeskus Sadko ry"
            },
            "short_description": {
                "fi": "Uudenvuoden matka Dobbin kanssa satujen maailmoihin on uusi juhlanäytös, joka nostaa koko perheen joulutunnelman!"
            },
            "description": {
                "fi": "<p>Uudenvuoden matka Dobbin kanssa satujen maailmoihin on uusi juhlanäytös, joka nostaa koko perheen joulutunnelman!</p><p>Karismaattisin hahmo, Dobbi, ja hänen ystävänsä kutsuvat teidät mukaan jännittävälle matkalle satuelokuvien ja -maailmojen läpi. Elsa, Spider-Man, Bremenin Musikantit ja monet muut hahmot iloisesti jakavat kanssanne uudenvuoden salaisuuksia ja kutsuvat teidät suuriin talvijuhliin! Luvassa vauhdikkaita lauluja, kiehtova juoni sekä sirkusesityksiä!</p><p>Mutta ei tässä kaikki! Uudenvuoden näytöksessä teitä odottaa ilmainen valokuvaus satujen hahmojen kanssa, animaatio-ohjelma aulassa joulupukin ja hänen tyttärensä kanssa! Nyt on helppo valmistautua hyvään mielialaan koko vuodeksi! Liity mukaan tähän hyvän mielen ja taianomaisen sadun maailmaan, josta jokainen lapsi unelmoi!</p><p>Venäjänkielinen esitys 2–12 vuotiaille lapsille.</p><p>Kesto noin 1 tunti.</p>",
                "ru": "<p>Садко<br>Новогоднее путешествие Добби по вселенным разных сказок<br>07.12.24 klo 13:00 ja 15:00 Kanneltalossa (район Kannelmäki)</p><p>«Новогоднее путешествие Добби по вселенным разных сказок» — это новое праздничное шоу, которое поднимет настроение всей семье! Самый обаятельный герой Добби и его друзья приглашают вас отправиться вместе с ними в увлекательное путешествие по загадочным вселенным фильмов и сказок. Эльза, Человек-паук, Бременские музыканты и многие другие герои с радостью расскажут вам новогодние секреты и пригласят к себе в гости на большую зимнюю вечеринку! Зажигательные песни, увлекательный сюжет, цирковые номера! Но это ещё не всё! На новогоднем шоу вас ждёт бесплатная фотосессия с персонажами сказки, анимационная программа в фойе с Дедом Морозом и Снегурочкой! Теперь запастись хорошим настроением на весь год очень легко! Станьте участниками доброй и волшебной сказки, о которой мечтает каждый ребенок!</p><p>Helsingin Monipuolinen Toimintakeskus Sadko ry<br>Русскоязычный спектакль для детей 2-12 лет. <br>Продолжительность около 1-1,30 часа .<br>Стоимость билета: 30,50 €/ребенок (с подарком) и 25,50€/взрослый; 25,50€/ребенок (без подарка)<br>Билеты продаются во всех точках продаж Lippupiste и на сайте lippu.fi<br>Интернет-магазин.</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/86BF018D873103180625EBA9E6C1641B/Uudenvuoden_matka_Dobbin_kanssa_satujen_maailmoihin"
            },
            "name": {
                "fi": "Uudenvuoden matka Dobbin kanssa satujen maailmoihin – Venäjänkielinen koko perheen tapahtuma"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64991/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64677",
            "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:30/?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:p16197/?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": 152766,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-09T08:15:12.407113Z",
                    "last_modified_time": "2024-10-09T08:15:12.407128Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759176.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152766/?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-10-09T08:15:12.374839Z",
            "last_modified_time": "2024-12-20T01:14:18.519323Z",
            "date_published": null,
            "start_time": "2024-12-07T09:00:00Z",
            "end_time": "2024-12-07T12: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,
            "provider": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.",
                "sv": "På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken. Vi erbjuder non-stop workshopverksamhet som är öppen för alla, där du kan titta in en stund eller stanna längre.",
                "en": "At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer."
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.</p><p><b>Kukkiva kuusi</b></p><p>Joulu on jo ovella ja mitä ihmettä? Kuusi on vielä koristeita vailla! <br>Tule kanssamme tekemään joulupuu koreaksi! <br>Taidepajassa sekoitellaan luonnonvärejä mm. puolukasta, kaakaosta ja spirulina-levästä. Väreillä maalaamme muotoja papereille, joista leikkaamme koristeita yhteiseen teokseen.</p><p>Työpajassa puhutaan suomena ja englantia. Osallistua voi myös ilman ko. kieliä. Työpajaa ohjaavat Annantalon taidekasvattajat.</p><p>Osallistumiseen ei tarvita ennakkotaitoja eikä täydellistä suomen kielen taitoa. Annantalon taidelauantai on maksuton.Tarjolla kuulosuojaimia ja muita aistiapuvälineitä. Lisäksi käytössä on erillinen hiljainen tila.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken. Vi erbjuder non-stop workshopverksamhet som är öppen för alla, där du kan titta in en stund eller stanna längre.</p><p><b>Blommande gran</b></p><p>Snart är det jul – och kan man tänka sig! Granen har ju inga dekorationer! Kom och pynta granen med oss!</p><p>I konstworkshoppen blandar vi till naturliga färger av bland annat lingon, kakao och spirulina-alg. Med färgerna målar vi figurer på papper och klipper ut dem till dekorationer för ett gemensamt konstverk.</p><p>Workshoppens språk är finska och engelska. Det går också att delta även om du inte talar dessa språk.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Inga förkunskaper och ingen anmälan krävs för att delta. Annegårdens konstlördag är avgiftsfri. Workshopparnas språk varierar, men inga kunskaper i finska krävs för att delta. Hörselskydd och andra hjälpmedel finns tillgängliga för barn med särskilda behov. Det finns också ett separat tyst utrymme.</p><p>Varmt välkomna till Annegården på lördagar!</p>",
                "en": "<p>At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer.</p><p><b>Flowering Christmas Trees</b></p><p>Christmas is already upon us and... what on earth? There are still six left to decorate Christmas tree!</p><p>In this workshop, you mix together natural colours, such as lingonberry, cocoa and spirulina algae. With the colours, we paint shapes on papers, from which we cut decorations into a joint work.</p><p>This workshop is held in Finnish and English. You can also participate without knowing the languages in question. The workshop is led by art educators from Annantalo.</p><p>No advance skills or registration is required to participate. The Annantalo Art Saturday is free of charge.The language of the workshops varies, Finnish language skills are not required to participate. Hearing protection and other aids are available for children with special needs. In addition, there is a separate quiet space.</p><p>A warm welcome to Annantalo on Saturday!</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CA2356B09B3B0B4B1586712CD8CB5E35/Annantalon_taidelauantai_Kukkiva_kuusi",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CA2356B09B3B0B4B1586712CD8CB5E35/Annegardens_konstlordag_Blommande_gran",
                "en": "http://www.annantalo.fi/en/events/event/CA2356B09B3B0B4B1586712CD8CB5E35/Annantalo_Art_Saturday_Flowering_Christmas_Trees"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Kukkiva kuusi",
                "sv": "Annegårdens konstlördag: Blommande gran",
                "en": "Annantalo Art Saturday: Flowering Christmas Trees"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64677/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}