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

{
    "meta": {
        "count": 11836,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=186&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=184&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:64307",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:751/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151941,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-29T12:15:25.350185Z",
                    "last_modified_time": "2024-07-29T12:15:25.350202Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753050.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151941/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-29T12:15:25.321454Z",
            "last_modified_time": "2024-12-20T01:13:53.044134Z",
            "date_published": null,
            "start_time": "2024-10-23T12:00:00Z",
            "end_time": "2024-10-23T13: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,
            "short_description": {
                "fi": "Globe Art Pointia edustavan Alexandr Foyn kanssa käydään kovaa keskustelua musiikkiteollisuuden nykytilanteesta sekä kulttuurisen yhdenvertaisuuden, monimuotoisuuden ja osallisuuden kysymyksistä, joihin meidän olisi kiinnitettävä huomioita Suomen taide- ja kulttuurikentällä.",
                "sv": "Alexandr Foy från Globe Art Point i en hetlevrad diskussion om var vi befinner oss i musikbranschen idag och vad vi bör vara medvetna om när det gäller kulturell rättvisa, mångfald och inkludering inom konst- och kultursektorn i Finland.",
                "en": "Alexandr Foy of Globe Art Point, in a heated discussion about where we are in the music industry today and what we should be aware of in terms of cultural equity, diversity and inclusion in the arts and cultural sector in Finland."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/C1B7354E07D959D7D214ACD1111B8332/HOW_radio_Global_Club_Nights_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/C1B7354E07D959D7D214ACD1111B8332/HOW_radio_Global_Club_Nights_",
                "en": "http://www.caisa.fi/en/events/event/C1B7354E07D959D7D214ACD1111B8332/HOW_radio_Global_Club_Nights_"
            },
            "description": {
                "fi": "<p>Globe Art Pointia edustavan Alexandr Foyn kanssa käydään kovaa keskustelua musiikkiteollisuuden nykytilanteesta sekä kulttuurisen yhdenvertaisuuden, monimuotoisuuden ja osallisuuden kysymyksistä, joihin meidän olisi kiinnitettävä huomioita Suomen taide- ja kulttuurikentällä.</p><p>Tarkastelemme yhdessä musiikkialaa ja pohdimme tukijärjestelmien ja verkostojen merkitystä alalla.</p><p>Alexandr Foy on sosioekonomisen integraation, kolmannen sektorin hallinnon, media- ja tapahtumatuotannon sekä osallistavan koulutuksen parissa työskentelevä ammattilainen. Hänelle tärkeimpiä arvoja ovat ihmisoikeudet, tasa-arvo ja sosiaalinen osallisuus. Hän on Suomeen ruotsin kielellä kotoutuvien ulkomaalaisten Svenska.fi-yhdistyksen perustaja ja nykyinen puheenjohtaja. Hän toimii ruotsinkielisen kulttuurijärjestön Tigern rf:n hallituksen jäsenenä ja Ny Tid -lehden kustantajana. Foys on myös muun muassa venäjänkielisen, lifestyle-mediaan ja tapahtumiin keskittyvän Tochka.fi-toimiston perustaja, hallituksen jäsen ja päätuottaja.</p><p><b>Globe Art Point</b><br>Globe Art Pointin (G.A.P.) päätehtävänä on edistää kulttuurista tasa-arvoa, monimuotoisuutta ja osallisuutta Suomen taide- ja kulttuurialalla. G.A.P. toimii myös tiedotuskeskuksena ja kohtaamispaikkana Suomessa toimiville taiteilijoille, kulttuurityöntekijöille sekä taide- ja kulttuurilaitoksille. G.A.P. tekee töitä sen eteen, että Suomessa toimivat, eri taustoista tulevat ammattitaiteilijat ja kulttuurialan työntekijät ja yrittäjät saavat tunnustusta ja että heidän mahdollisuuksiaan hyödynnetään täysimääräisesti. G.A.P. pyrkii yhdessä sidosryhmiensä ja yhteistyökumppaneidensa kanssa parantamaan nykyisiä rakenteita ja rakentamaan yhteiskuntaa, jossa ei ole kulttuurista syrjintää tai muunlaista sortoa. Tavoitteena on luoda rakentavaa ja toimintapainotteista vuoropuhelua koko yhteiskunnan kanssa paikalliselta ruohonjuuritasolta kansalliselle tasolle.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>",
                "sv": "<p>Alexandr Foy från Globe Art Point i en hetlevrad diskussion om var vi befinner oss i musikbranschen idag och vad vi bör vara medvetna om när det gäller kulturell rättvisa, mångfald och inkludering inom konst- och kultursektorn i Finland.</p><p>Vi navigerar musikscenen tillsammans och utforskar vikten av stödsystem och nätverk i branschen.</p><p>Alexandr Foy är proffs inom socioekonomisk integration, styrning av ideella organisationer, media- och evenemangsproduktion samt inkluderande utbildning. Hans främsta värden är mänskliga rättigheter, jämställdhet och social inkludering. Han är medgrundare av och nuvarande ordförande i organisationen Svenska.fi för invandrare som integreras på svenska i Finland. Han är styrelsemedlem i Tigern rf – en svenskspråkig kulturförening som publicerar tidningen Ny Tid. Foy är också medgrundare, styrelsemedlem och huvudproducent av Tochka.fi – en ryskspråkig livsstils-, media- och evenemangsorganisation i Helsingfors, och mycket mer.</p><p><b>Globe Art Point</b><br>Globe Art Points främsta syfte är att arbeta för kulturell jämställdhet, mångfald och inkludering i konst- och kulturbranschen i Finland. G.A.P fungerar också som ett informationscentrum och en mötesplats för konstnärer, kulturarbetare och konst- och kulturorganisationer i Finland. G.A.P fokuserar på att Finlandsbaserade professionella konstnärer, kulturarbetare och kulturentreprenörer med olika bakgrunder ska erkännas och deras outnyttjade potential till fullo utnyttjas. G.A.P arbetar tillsammans med sina intressenter och partner för att förbättra befintliga strukturer och bygga ett samhälle fritt från kulturell diskriminering och all annan form av förtryck. Deras mål är att skapa konstruktiva och handlingsdrivna dialoger med hela samhället, från lokal gräsrotsnivå till nationell nivå.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>",
                "en": "<p>Alexandr Foy of Globe Art Point, in a heated discussion about where we are in the music industry today and what we should be aware of in terms of cultural equity, diversity and inclusion in the arts and cultural sector in Finland.</p><p>We navigate the music scene together and we explore the importance of support systems and networks in the field.</p><p>Alexandr Foy is professional on socio-economic integration, governing in non-profit sector, media & event production and inclusive education. His main values are human rights, equality and social inclusion. He is co-founder and current chairman of Svenska.fi association of foreigners who integrate in Swedish language in Finland. He is a board member of Tigern rf – a Swedish speaking cultural association, publisher of Ny Tid magazine. Foys is also co-founder, board member and main producer of Tochka.fi – russian-speaking lifestlyle media and event-agency based in Helsinki, and lot more.</p><p><b>Globe Art Point</b><br>The core mission of Globe Art Point is advocating cultural equity, diversity and inclusion in the arts and cultural sector in Finland. G.A.P also serves as an information centre and meeting point for artists, cultural workers and arts and cultural institutions in Finland. G.A.P.’s focus is on Finland-based professional artists, cultural workers and cultural entrepreneurs with diverse backgrounds being acknowledged and their untapped potential fully utilised. G.A.P, together with their stakeholders and collaborators, is dedicated to improving the existing structures and building a society free from cultural discrimination or any other form of oppression. Their goal is to create constructive and action-driven dialogues with the entire society, from local grassroots to the national level.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>"
            },
            "name": {
                "fi": "HOW radio: Global Club Nights – Alexandr Foy – Globe Art Point",
                "sv": "HOW radio: Global Club Nights – Alexandr Foy – Globe Art Point",
                "en": "HOW radio: Global Club Nights – Alexandr Foy – Globe Art Point"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64307/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64582",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152439,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-17T10:14:03.646764Z",
                    "last_modified_time": "2024-09-17T10:14:03.646779Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758078.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152439/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-17T10:14:03.634289Z",
            "last_modified_time": "2024-12-20T01:13:52.900464Z",
            "date_published": null,
            "start_time": "2024-10-23T08:00:00Z",
            "end_time": "2024-10-23T10: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,
            "short_description": {
                "fi": "Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.",
                "sv": "På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.",
                "en": "In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4026993517E4ABE50F0D92A5AE72D582/Keskiviikon_lounasjamit",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4026993517E4ABE50F0D92A5AE72D582/Jams_till_onsdagslunchen",
                "en": "http://www.kanneltalo.fi/en/events/event/4026993517E4ABE50F0D92A5AE72D582/Wednesday_lunch_jams"
            },
            "description": {
                "fi": "<p>Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja miksei iskelmäkin! Luvassa myös paljon muuta sielukasta musiikkia. Tervetuloa nauttimaan ruoasta ja musiikista!</p><p>Kesto 2 tuntia</p><p>Kanneltalon kahvilan stage<br>Vapaa pääsy</p>",
                "sv": "<p>På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.</p><p>Vid lunchtid får vi lyssna till genrer från hela världen. På scenen får du höra anatolisk funk, afrikansk highlife, pop och varför inte också ett par schlagersånger! Massor av annan själfull musik utlovas också. Välkommen till bords!</p><p>Längd 2 timmar<br>Caféscen<br>Fritt inträde</p>",
                "en": "<p>In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage.</p><p>At lunchtime, anyone can come listen to genres from around the world. Anatolian funk, African highlife, pop and why not Finnish iskelmä too! And of course, lots of other soulful music. Come and listen!</p><p>Duration: 2 hours<br>Café stage<br>Free of charge</p>"
            },
            "name": {
                "fi": "Keskiviikon lounasjamit",
                "sv": "Jams till onsdagslunchen",
                "en": "Wednesday lunch jams"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64582/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64518",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152301,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-05T11:13:56.810854Z",
                    "last_modified_time": "2024-09-05T11:13:56.810866Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749835.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152301/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-09-05T11:13:56.793951Z",
            "last_modified_time": "2024-12-20T01:13:52.801325Z",
            "date_published": null,
            "start_time": "2024-10-23T07:00:00Z",
            "end_time": "2024-10-23T09: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,
            "short_description": {
                "fi": "Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.",
                "en": "Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8D97A3B58BEF250F840F405FBBF1EBCA/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/8D97A3B58BEF250F840F405FBBF1EBCA/Knattebion",
                "en": "http://www.annantalo.fi/en/events/event/8D97A3B58BEF250F840F405FBBF1EBCA/Toddler_cinema"
            },
            "description": {
                "fi": "<p>Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokinossa esitetään lapsille laadukkaita elokuvia ja totutellaan heitä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ovella lapsia on tervehtimässä Pikku-Myyrä. Isoa Myyrää pääsee tapaamaan syyslomaviikolla ke 16.10. ja Lapsen oikeuksien päivänä ke 20.11.</p><p>Naperokinon näytöksillä on joka viikko vaihtuva teema.</p><p>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa<br>Kieli: suomi<br>Maksuton</p><p>Naperokinon teemat syksyllä 2024:</p><p>Ke 4.9.2024 Naperokino: Luonto ja eläimet<br>Ke 11.9.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 18.9.2024 Naperokino: seikkailu ja matka<br>Ke 25.9.2024 Naperokino: huolenpito ja rakkaus</p><p>Ke 2.10.2024 Naperokino: rohkeus ja auttaminen<br>Ke 9.10.2024 Naperokino: ystävät ja perhe<br>Ke 16.10.2024 Naperokino: luovuus ja taiteet<br>Ke 23.10.2024 Naperokino: luonto ja eläimet<br>Ke 30.10.2024 Naperokino: mielikuvitus</p><p>Ke 6.11.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 13.11.2024 Naperokino: seikkailu ja matka<br>Ke 20.11.2024 Naperokino: huolenpito ja rakkaus<br>Ke 27.11.2024 Naperokino: rohkeus ja auttaminen</p><p>Ke 4.12.2024 Naperokino: ystävät ja perhe<br>Ke 11.12.2024 Naperokino: luovuus ja taiteet<br>Ke 18.12.2024 Naperokino: luonto ja eläimet</p>",
                "sv": "<p>Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Den avslappnade, bekväma lokalen och situationen gör det möjligt att värma mat, mata/amma och introducera barnen till biografen i deras egen takt. Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Knattebion visar barnen filmer av hög kvalitet och vänjer dem gradvis vid att titta på långa barnfilmer på biografer. Den första halvan av visningen som varar två timmar består av animerade filmer utan tal och den andra halvan av favoritfilmer med tal. Vid sidan av filmerna är Knattebion en mötesplats för små barn och deras vuxna.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Barnen hälsas välkomna vid dörren av Lilla Mullvaden. Du kan träffa Stora Mullvaden under höstlovsveckan ons 16.10. och på Barnrättsdagen ons 20.11.</p><p>Temat för Knattebions föreställningar varierar varje vecka.</p><p>Åldersrekommendation: 0–3-åringar i sällskap med sina föräldrar<br>Språk: finska<br>Fritt inträde</p><p>Teman för Knattebion hösten 2024:</p><p>Ons 4.9.2024 Knattebion: Natur och djur<br>Ons 11.9.2024 Knattebion: samhälle och stad<br>Ons 18.9.2024 Knattebion: äventyr och resor<br>Ons 25.9.2024 Knattebion: omsorg och kärlek</p><p>Ons 2.10.2024 Knattebion: mod och att hjälpa andra<br>Ons 9.10.2024 Knattebion: vänner och familj<br>Ons 16.10.2024 Knattebion: kreativitet och konst<br>Ons 23.10.2024 Knattebion: natur och djur<br>Ons 30.10.2024 Knattebion: fantasi</p><p>Ons 6.11.2024 Knattebion: samhälle och stad<br>Ons 13.11.2024 Knattebion: äventyr och resor<br>Ons 20.11.2024 Knattebion: omsorg och kärlek<br>Ons 27.11.2024 Knattebion: mod och att hjälpa andra</p><p>Ons 4.12.2024 Knattebion: vänner och familj<br>Ons 11.12.2024 Knattebion: kreativitet och konst<br>Ons 18.12.2024 Knattebion: natur och djur</p>",
                "en": "<p>Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>A relaxed, comfortable venue and setting allows you to heat up food, feed or breastfeed, and introduce your child to cinema at their own pace. A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler cinema presents high-quality films for children and gradually get them used to watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue. Alongside the films, the Toddler Cinema serves as a meeting place for small children and their adults.</p><p>Toddler Cinema is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>Little Mole will greet the children at the door. Big Mole will be available to meet on Wednesday, 16 October during the autumn holiday week as well as on Children's Day, Wednesday, 20 November.</p><p>The Toddler Cinema screenings have a different theme each week.</p><p>Age recommendation: For 0–3-year-olds with parents<br>Language: Finnish<br>Free of charge</p><p>Toddler Cinema themes for autumn 2024:</p><p>Wed 04 Sept 2024 Toddler Cinema: Nature and Animals<br>Wed 11 Sept 2024 Toddler Cinema: Society and the City<br>Wed 18 Sept 2024 Toddler Cinema: Adventure and Travel<br>Wed 25 Sept 2024 Toddler Cinema: Care and Love</p><p>Wed 2 Oct 2024 Toddler Cinema: Courage and Helping Others<br>Wed 9 Oct 2024 Toddler Cinema: Friends and Family<br>Wed 16 Oct 2024 Toddler Cinema: Creativity and the Arts<br>Wed 23 Oct 2024 Toddler Cinema: Nature and Animals<br>Wed 30 Oct 2024 Toddler Cinema: The Imagination</p><p>Wed 06 Nov 2024 Toddler Cinema: Society and the City<br>Wed 13 Nov 2024 Toddler Cinema: Adventure and Travel<br>Wed 20 Nov 2024 Toddler Cinema: Care and Love<br>Wed 27 Nov 2024 Toddler Cinema: Courage and Helping Others</p><p>Wed 04 Dec 2024 Toddler Cinema: Friends and Family<br>Wed 11 Dec 2024 Toddler Cinema: Creativity and the Arts<br>Wed 18 Dec 2024 Toddler Cinema: Nature and Animals</p>"
            },
            "name": {
                "fi": "Naperokino",
                "sv": "Knattebion",
                "en": "Toddler cinema"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64518/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64696",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152858,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-23T09:14:46.013880Z",
                    "last_modified_time": "2024-10-23T09:14:46.013898Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759296.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152858/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-23T09:14:45.962841Z",
            "last_modified_time": "2024-12-20T01:13:52.645971Z",
            "date_published": null,
            "start_time": "2024-10-23",
            "end_time": "2024-12-01",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Valon Aallot -teos juhlistaa Stoan 40-vuotista matkaa. Aallot kelluvat kevyesti ja kiertävät ilmassa vangiten muuttuvaa aikaa.",
                "sv": "Verket Valon aallot firar Stoas 40-åriga resa. Vågorna flyter mjukt, cirkulerar i luften och fångar upp tidens växlingar.",
                "en": "‘Valon Aallot’ celebrates Stoa’s 40-year journey. The waves gently float and spiral through the air, capturing the fluidity of time."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4E5A4BD2DD7A9256B88C24553BCD12E8/Deepa_Panchamia_Valon_aallot",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4E5A4BD2DD7A9256B88C24553BCD12E8/Deepa_Panchamia_Valon_aallot_Vagor_av_ljus_",
                "en": "http://www.stoa.fi/en/events/event/4E5A4BD2DD7A9256B88C24553BCD12E8/Deepa_Panchamia_Valon_aallot_"
            },
            "description": {
                "fi": "<p>Valon Aallot -teos juhlistaa Stoan 40-vuotista matkaa. Aallot kelluvat kevyesti ja kiertävät ilmassa vangiten muuttuvaa aikaa.</p><p>Kääntyessään aallot paljastavat tasapainon hiljaisuuden ja liikkeen, edistymisen ja heijastuksen välillä – korostaen ajan jatkuvaa, alati muuttuvaa luonnetta. Yhdessä toisiinsa kietoutuvat aallot luovat eteerisen valon ja muodon tanssin, joka symboloi Stoan jatkuvaa matkaa.</p><p><b>Deepa Panchamia</b> on Lontoossa vuonna 1981 syntynyt ja nykyään Suomessa asuva tekstiilitaiteilija. Hän luo kangasveistoksia, installaatioita ja puettavaa taidetta. Hänen työnsä sulattaa geometrian omiin kangastekniikoihin ja matematiikkaan uusien muotojen ja muotojen tutkimiseksi.</p><p>Suomeen vuonna 2012 muuttaessaan hän on omaksunut suomalaisen maiseman vaikutteita ja sisällyttänyt sen luonnon kauneutta luomuksiinsa.</p><p>Hänen töitään on ollut esillä kansainvälisesti, mukaan lukien Premio Valcellina Award Italiassa, 7th Triennaal of Contemporary Textile Art Belgiassa, 100% Design Lontoossa, Cheongju International Craft Biennale Etelä-Koreassa, Revelations: International Fine Craft and Creation Biennaali Pariisi, Contextile – Contemporary Textile Art Biennaali Portugalissa ja Fiskars Village Art & Design Biennale, Suomi.</p>",
                "sv": "<p>Verket Valon aallot firar Stoas 40-åriga resa. Vågorna flyter mjukt, cirkulerar i luften och fångar upp tidens växlingar.</p><p>När vågorna vänder visar de en balans mellan stillhet och rörelse, framsteg och reflektion – vilket belyser tidens konstanta, ständigt föränderliga natur. De sammanflätade vågorna skapar en eterisk dans av ljus och form, som symboliserar Stoas ständiga resa.</p><p>Deepa Panchamia är en textilkonstnär som föddes i London 1981 och som för närvarande bor i Finland. Hon skapar skulpturer, installationer och konst som man kan klä på sig. I hennes arbete förenas geometri med hennes egen tygteknik och matematik för att utforska nya former.</p><p>Sedan hon flyttade till Finland år 2012 har hon tagit intryck av det finska landskapet och införlivat dess naturliga skönhet i sina skapelser.</p><p>Hennes verk har ställts ut internationellt, bland annat på Premio Valcellina Award i Italien, 7th Triennaal of Contemporary Textile Art i Belgien, 100% Design i London, Cheongju International Craft Biennale i Sydkorea, Revelations: International Fine Craft and Creation Biennale i Paris, Contextile – Contemporary Textile Art Biennale i Portugal och Fiskars Village Art & Design Biennale, Finland.</p>",
                "en": "<p>‘Valon Aallot’ celebrates Stoa’s 40-year journey. The waves gently float and spiral through the air, capturing the fluidity of time.</p><p>As they twist and turn, the waves reveal the balance between stillness and movement, progress and reflection—highlighting the continuous, ever-changing nature of time. Together, the intertwining waves create an ethereal dance of light and form, symbolizing Stoa’s ongoing journey.</p><p>Deepa Panchamia is a textile artist, born in London in 1981 and now living in Finland. She creates fabric sculptures, installations, and wearable art. Her work fuses geometry with her own fabric techniques and mathematics to explore new shapes and forms.</p><p>Since moving to Finland in 2012, she has embraced the influence of the Finnish landscape, incorporating its natural beauty into her creations.</p><p>Her work has been exhibited internationally, including at the Premio Valcellina Award in Italy, the 7th Triennial of Contemporary Textile Art in Belgium, 100% Design in London, the Cheongju International Craft Biennale in South Korea, Revelations: International Fine Craft and Creation Biennial in Paris, Contextile – Contemporary Textile Art Biennial in Portugal, and the Fiskars Village Art & Design Biennale, Finland.</p>"
            },
            "name": {
                "fi": "Deepa Panchamia: Valon aallot – Stoa 40! Tekstiiliteos Stoan aulassa",
                "sv": "Deepa Panchamia: Valon aallot (Vågor av ljus) – Stoa 40! Textilverk i lobbyn till Stoa",
                "en": "Deepa Panchamia: Valon aallot – Stoa 40! Textile installation at Stoa lobby"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64696/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63292",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:658/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p19077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27318/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-18494906",
                        "sv": "https://www.lippu.fi/event/name-18494906",
                        "en": "https://www.lippu.fi/event/name-18494906"
                    },
                    "description": null,
                    "price": {
                        "fi": "23,50-45,50 €",
                        "sv": "23,50-45,50 €",
                        "en": "23,50-45,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 41952,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-28T09:14:03.950359Z",
                    "last_modified_time": "2024-03-28T09:14:03.950374Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746446.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/41952/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-28T09:14:03.915462Z",
            "last_modified_time": "2024-12-20T01:13:52.545456Z",
            "date_published": null,
            "start_time": "2024-10-22T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lasse Mårtensonin unohtumattomia sävelmiä – Lavalla Ami Aspelund, Jannike ja Nicke Lignell!",
                "sv": "Lasse Mårtenssons jubileumskonsertturne’ hösten 2024 – På scen Ami Aspelund, Jannike och Nicke Lignell!",
                "en": "Unforgettable tunes by Lasse Mårtenson – Ami Aspelund, Jannike and Nicke Lignell on stage!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C1A228D2ABB315CF7A465A0F2EB7EC58/Myrskyluodon_Lasse",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C1A228D2ABB315CF7A465A0F2EB7EC58/Stormskars_Lasse_",
                "en": "http://www.savoyteatteri.fi/en/events/event/C1A228D2ABB315CF7A465A0F2EB7EC58/Stormskerry_Lasse"
            },
            "description": {
                "fi": "<p>Lasse Mårtensonin unohtumattomia sävelmiä – Lavalla Ami Aspelund, Jannike ja Nicke Lignell!</p><p>Edesmenneen rakastetun laulajan ja säveltäjän Lasse Mårtensonin syntymästä tulee kuluneeksi syksyllä 90 vuotta. Mårtensonin uraa ja hänen musiikkiaan kunnioitetaan lokakuussa toteutettavalla kiertueella, jossa lavalla nousevat <b>Ami Aspelund, Jannike</b> ja <b>Nicke Lignell</b>. <br> <br>Myrskyluodon Lasse – Lasse Mårtensonin unohtumattomia sävelmiä niminen kiertue alkaa Kokkolasta 20. lokakuuta ja päättyy Porvooseen 25.10. Muut konserttipaikkakunnat ovat Vaasa, Helsinki, Turku ja Karjaa. Kiertueen säestyksestä vastaa Henrik Wikströmin orkesteri.<br> <br>Vuonna 1934 syntynyt ja 2016 menehtynyt Lasse Mårtenson nousi 1960-luvulla yhdeksi maamme suosituimmista laulajista. Hänen tunnetuimpia kappaleitaan ovat vuoden 1964 euroviisu Laiskotellen sekä Marraskuu, Iltaisin, Mä lähden stadiin, Rikas mies jos oisin sekä Nousevan auringon talo.<br> <br>Erityisen suureen suosioon on noussut Mårtensonin säveltämä musiikki Åke Lindmanin ohjaamaan, vuonna 1976 ensi-iltansa saaneeseen Myrskyluodon Maija -elokuvaan.<br> <br><i>Lasse Mårtensonin musiikki on ollut minulla aina sydäntä lähellä. Minulla oli myös ilo työskennellä yhdessä hänen kanssaan monissa eri produktioissa vuosien varrella. On suuri kunnia saada olla nyt kiertueella kunnioittamassa Mårtensonin muistoa</i>, kertoo Ami Aspelund.<br> <br>Tervetuloa viettämään unohtumaton ilta hienon ja ajattoman musiikin äärellä.</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p>",
                "sv": "<p>Lasse Mårtenssons jubileumskonsertturne’ hösten 2024 – På scen Ami Aspelund, Jannike och Nicke Lignell!</p><p>Den älskade sångaren och kompositören Lasse Mårtensson skulle i höst ha fyllt 90 år. Till minne av hans musik och karriär ordnas en konsertturne’ i oktober där Ami Aspelund, Jannike och Nicke Lignell stiger upp på scen.<br> <br>Stormskärs Lasse - Lasse Mårtenssons oförglömliga musik turne’ börjar i Karleby den 20 oktober och slutar i Borgå den 25 oktober. Andra konsertplatser är Wasa, Helsingfors, Åbo och Karis. <br>Orkestern leds av Henrik Wikström.<br> <br>Lasse Mårtensson föddes år 1934 och dog 2016. På 60-talet steg han till en av landets mest populära artister. Till hans kändaste låtar hör Laiskotellen (som han 1964 deltog i Eurovisionen med),  Marraskuu, Iltaisin, Mä lähden stadiin, Rikas mies jos oisin och Nousevan auringon talo.<br> <br>Mest är Lasse Mårtensson ändå känd för för sina kompositioner till den finska tv-serien Stormskärs Maja från år 1976. Serien regisserades av Åke Lindman.<br> <br>-Lasses musik har alltid stått mitt hjärta nära. Jag hade den stora glädjen att få arbeta med honom i många olika produktioner och därför är det en särskilt stor ära att få vara med på denna turne’, säger Ami Aspelund.<br> <br>Varmt välkomna att njuta av en oförglömlig afton med fin och tidlös music ut av Lasse.</p><p>Längd ca. 2 h 15 min, inkl. paus.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>",
                "en": "<p>Unforgettable tunes by Lasse Mårtenson – Ami Aspelund, Jannike and Nicke Lignell on stage!</p><p>This autumn, it will be 90 years since the birth of the late beloved singer and composer Lasse Mårtenson. Mårtenson’s career and his music will be honoured with a tour in October, featuring Ami Aspelund, Jannike and Nicke Lignell.</p><p>Lasse Mårtenson (1934–2016) became one of the most popular singers in Finland in the 1960s. His most famous songs are Finland’s entry to the 1964 Eurovision Song Contest <i>Laiskotellen</i>, <i>Marraskuu</i>, <i>Iltaisin</i>, <i>Mä lähden stadiin</i>, <i>Rikas mies jos oisin</i> and <i>Nousevan auringon talo (The house of the rising sun).</i></p><p>Music composed by Mårtenson for the film <i>Myrskyluodon Maija</i> (Stormskerry Maja), directed by Åke Lindman in 1976, has become especially popular.</p><p>\"Lasse Mårtenson’s music has always been close to my heart. I also had the pleasure of working with him on many different productions over the years. It’s a great honour to be on tour now to honour Mårtenson’s memory\", says Ami Aspelund.</p><p>Welcome to spend an unforgettable evening with great timeless music!</p><p>Duration approx. 2 h 15 min, including intermission</p><p>Stalls K-18, a licensed area. The balcony is a non-licensed area without an age limit.</p>"
            },
            "name": {
                "fi": "Myrskyluodon Lasse – Ami Aspelund, Jannike ja Nicke Lignell",
                "sv": "Stormskärs Lasse – Ami Aspelund, Jannike och Nicke Lignell",
                "en": "Stormskerry Lasse – Ami Aspelund, Jannike and Nicke Lignell"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "MagnumLive Oy",
                "sv": "MagnumLive Oy",
                "en": "MagnumLive Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63292/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64293",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151879,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T15:15:02.998543Z",
                    "last_modified_time": "2024-07-25T15:15:02.998572Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745842.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151879/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T15:15:02.961432Z",
            "last_modified_time": "2024-12-20T01:13:52.437872Z",
            "date_published": null,
            "start_time": "2024-10-22T15:00:00Z",
            "end_time": "2024-10-22T17: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,
            "short_description": {
                "fi": "Savusaunan pimeydessä naiset jakavat sisimpiä salaisuuksiaan ja intiimejä kokemuksiaan, huuhtelevat pois kehonsa loukkuun jääneen häpeän ja saavat voimansa takaisin yhteisöllisyyden tunteen kautta.",
                "sv": "I rökbastuns mörker delar kvinnor med sig av sina innersta hemligheter och intima upplevelser, sköljer bort den skam som finns instängd i kroppen och återfår sin styrka genom en känsla av gemenskap.",
                "en": "In the darkness of the smoke sauna, women share their innermost secrets and intimate experiences, washing away the shame trapped in their bodies and regain their strength through a sense of community."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6BCDC1FD903250D2D64954BA82C49F33/Doc_Helios_Savusaunasisaruus_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6BCDC1FD903250D2D64954BA82C49F33/Doc_Helios_Savusaunasisaruus_Rokbastusysterskap_12_",
                "en": "http://www.malmitalo.fi/en/events/event/6BCDC1FD903250D2D64954BA82C49F33/Doc_Helios_Smoke_Sauna_Sisterhood_12_"
            },
            "description": {
                "fi": "<p>Savusaunan pimeydessä naiset jakavat sisimpiä salaisuuksiaan ja intiimejä kokemuksiaan, huuhtelevat pois kehonsa loukkuun jääneen häpeän ja saavat voimansa takaisin yhteisöllisyyden tunteen kautta.</p><p>Ohjaaja Anna Hints palkittiin Savusaunasisaruus-elokuvastaan Sundancen elokuvajuhlilla 2023 (Directing Award: World Cinema Documentary). Savusaunasisaruus oli Viron virallinen Oscar-ehdokas ja voitti vuoden parhaan dokumenttielokuvan European Film Awards -palkinnon.</p><p>Kesto 89 min<br>Ikäraja 12<br>Ensi-ilta 8.12.2023<br>Vapaa pääsy!</p><p>Doc Helios on Kino Helioksen uusi ilmaisnäytössarja, jossa nähdään tuoreimpia ja ajankohtaisimpia dokumentteja eri aiheista.</p>",
                "sv": "<p>I rökbastuns mörker delar kvinnor med sig av sina innersta hemligheter och intima upplevelser, sköljer bort den skam som finns instängd i kroppen och återfår sin styrka genom en känsla av gemenskap.</p><p>Regissören Anna Hints belönades för filmen Savusaunasisaruus på Sundance-filmfestivalen 2023 (Directing Award: World Cinema Documentary). Savusaunasisaruus var Estlands officiella Oscarsnominering och vann European Film Awards-priset för årets bästa dokumentärfilm.</p><p>Längd 89 min.<br>Åldersgräns 12 år<br>Premiär 8.12.2023<br>Fritt inträde!</p><p>Doc Helios är Kino Helios nya gratisvisningsserie, där vi får se de färskaste och mest aktuella dokumentärerna om olika ämnen.</p>",
                "en": "<p>In the darkness of the smoke sauna, women share their innermost secrets and intimate experiences, washing away the shame trapped in their bodies and regain their strength through a sense of community.</p><p>Director Anna Hints was awarded for her film, Smoke Sauna Sisterhood, at the Sundance Film Festival in 2023 (Directing Award: World Cinema Documentary). Smoke Sauna Sisters was the official Oscar nominee for Estonia and won the European Film Award for Best Documentary.</p><p>Duration: 89 mins.<br>Age limit 12<br>Premiere: 8 December 2023</p>"
            },
            "name": {
                "fi": "Doc Helios: Savusaunasisaruus (12) – Kino Helios",
                "sv": "Doc Helios: Savusaunasisaruus (Rökbastusysterskap) (12) – Kino Helios",
                "en": "Doc Helios: Smoke Sauna Sisterhood (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64293/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64300",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151909,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-26T07:14:27.480444Z",
                    "last_modified_time": "2024-07-26T07:14:27.480459Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753200.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151909/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T07:14:27.448997Z",
            "last_modified_time": "2024-12-20T01:13:52.340286Z",
            "date_published": null,
            "start_time": "2024-10-21T15:00:00Z",
            "end_time": "2024-10-21T16: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,
            "short_description": {
                "fi": "Aloita viikko menevällä meiningillä! Syksyn Juurilla-klubien ohjelmistossa vuorossa on laulaja-kitaristi Bryn Jones.",
                "sv": "Börja veckan med fullt hålligång! Sångaren och gitarristen Bryn Jones står i tur på Juurilla-klubbarnas höstprogram.",
                "en": "Start your week with some catchy tunes! Singer-guitarist Bryn Jones is a part of this autumn’s At the Roots Club’s repertoire."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/91A13FDF6D32754AE25FB0C1CB36B035/Juurilla_Bryn_Jones",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/91A13FDF6D32754AE25FB0C1CB36B035/Vid_rotterna_Bryn_Jones",
                "en": "http://www.kanneltalo.fi/en/events/event/91A13FDF6D32754AE25FB0C1CB36B035/At_the_Roots_Club_Bryn_Jones"
            },
            "description": {
                "fi": "<p>Aloita viikko menevällä meiningillä! Syksyn Juurilla-klubien ohjelmistossa vuorossa on laulaja-kitaristi Bryn Jones.</p><p>Lontoon rock-piireistä Suomeen rantautunut laulaja-lauluntekijä Bryn Jones tunnetaan Los Bastardos Finlandeses -bändin nokkamiehenä. Yli kolmekymmentä vuotta musisoinut Jones on kiertänyt bändeineen mm. Aerosmithin ja Motörheadin kanssa.</p><p>Jonesin trubaduuriesiintymiset ovat kuuluja intensiivisyydestään ja rouheasta kitarasoundistaan. Illan keikalla kuullaan artistin soolotuotantoa ja musiikkia pitkän uran varrelta.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Börja veckan med fullt hålligång! Sångaren och gitarristen Bryn Jones står i tur på Juurilla-klubbarnas höstprogram.</p><p>Sångaren och låtskrivaren Bryn Jones som anlänt till Finland från Londons rockkretsar är känd som frontfigur i bandet Los Bastardos Finlandeses. Jones har musicerat i över trettio år och turnerat med band såsom Aerosmith och Motörhead.</p><p>Jones trubadurframträdanden är kända för sin intensitet och sitt grova gitarrsound. På kvällens spelning får vi höra artistens soloproduktion och musik från hans långa karriär.</p>",
                "en": "<p>Start your week with some catchy tunes! Singer-guitarist Bryn Jones is a part of this autumn’s At the Roots Club’s repertoire.</p><p>Bryn Jones, a singer-songwriter who landed in Finland from London’s rock scene, is known as the front man of Los Bastardos Finlandeses. Jones, who has been playing music for over thirty years, and his band, have gone on tour with bands like Aerosmith and Motörhead.</p><p>Jones' troubadour performances are famous for their intensity and rugged guitar sounds. This evening's gig will feature the artist's solo works and music from a long career.</p><p>Start your week with some catchy tunes! Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "name": {
                "fi": "Juurilla: Bryn Jones – Maksuttomat maanantait",
                "sv": "Vid rötterna: Bryn Jones – Kostnadsfria måndagar",
                "en": "At the Roots Club: Bryn Jones – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64300/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64245",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151812,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T13:13:17.502289Z",
                    "last_modified_time": "2024-07-24T13:13:17.502305Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748952.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151812/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-24T13:13:17.475916Z",
            "last_modified_time": "2024-12-20T01:13:52.035504Z",
            "date_published": null,
            "start_time": "2024-10-07",
            "end_time": "2024-11-01",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kivenheiton päässä Vuotalosta, Aurinkolahdessa, sijaitsee Vuosaaren taiteilijatalo. Näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia.",
                "sv": "Ett stenkast från Nordhuset, i Solvik, ligger Nordsjö konstnärshus. Utställningen presenterar nya verk av husets bildkonstnärer.",
                "en": "A stone's throw away from Vuotalo, in Aurinkolahti, lies the Vuosaari Artist House. This exhibition showcases recent works by the house's visual artists."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F322A2E20442B061B43E0665541B04C6/Vuotalosta_Villaan_taiteilijatalo_sateilee",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/F322A2E20442B061B43E0665541B04C6/Fran_Nordhuset_till_Villan_konstnarshuset_skiner",
                "en": "http://www.vuotalo.fi/en/events/event/F322A2E20442B061B43E0665541B04C6/From_Vuotalo_to_Villa_the_artist_house_radiates"
            },
            "description": {
                "fi": "<p>Kivenheiton päässä Vuotalosta, Aurinkolahdessa, sijaitsee Vuosaaren taiteilijatalo. Näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia.</p><p>Taiteilijatalossa on 52 asuntoa ja toista sataa asukasta. Eri alojen taiteilijoista suuri joukko on kuvataiteilijoita, jotka käyttävät mitä moninaisimpia tekniikoita ja materiaaleja taideteoksissaan. Taiteilijatalon vieressä oleva vanha huvila, Villa Lill Kallvik, on osa taloa.</p><p>Vuotalosta Villaan – taiteilijatalo säteilee -näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia Vuotalon galleriassa ja Villa Lill Kallvikissa. Tervetuloa näkemään ja kokemaan paikallisten tekijöiden kuvataiteen laaja kirjo!</p><p>Näyttelyn taiteilijat: <br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme (performanssi)</p><p>Villa Lill Kallvikin aukioloajat: ke–pe 12–18 ja la–su 11–17</p><p><b>Tule mukaan myös näyttelykävelyille ja koe näyttelyyn liittyvä performanssi!</b></p><p>Performanssi to 10.10. klo 19, lähtö Vuotalon aulasta.</p><p>Näyttelykävelyt perjantaisin<br>18.10. / to 24.10. / pe 1.11. klo 17–18, lähtö Vuotalon galleriasta.</p><p>Tapahtumakuvan tiedot:<br>Vasemmalla: Rosalia Janovic: Monimuotoisuus, Diversity Keskellä: Tiina Heiska: Japanese room, kuvaaja Jussi Tiainen Oikealla: Pekka Sassi: Green, abstrakti värikertomus (video)</p>",
                "sv": "<p>Ett stenkast från Nordhuset, i Solvik, ligger Nordsjö konstnärshus. Utställningen presenterar nya verk av husets bildkonstnärer.</p><p>Konstnärshuset har 52 lägenheter och ett drygt hundratal boende. En stort del av konstnärerna som representerar olika konstarter är bildkonstnärer, som använder en mängd olika tekniker och material i sina konstverk. Den gamla villan som ligger invid konstnärshuset, Villa Lill Kallvik, är en del av huset.</p><p>Utställningen Från Nordhuset till Villan – konstnärshuset skiner presenterar nya verk av husets bildkonstnärer i Nordhusets galleri och Villa Lill Kallvik. Välkommen att se och uppleva mångsidig bildkonst av lokala konstnärer!</p><p>Konstnärerna:<br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme</p><p>Villa Lill Kallvik öppettider: ons–fre 12–18 och lör–sön 11–17</p>",
                "en": "<p>A stone's throw away from Vuotalo, in Aurinkolahti, lies the Vuosaari Artist House. This exhibition showcases recent works by the house's visual artists.</p><p>The Artist House has 52 apartments and over 100 residents. A large group of the artists, who are from different fields, are visual artists, who use diverse techniques and materials in their artworks. The old villa next to the Artist House, Villa Lill Kallvik, is a part of it.</p><p>The From Vuotalo to Villa – Artist House Radiates exhibition showcases the recent works of the house's visual artists at Vuotalo Gallery and Villa Lill Kallvik. Come and experience the vast array of visual arts by local creators!</p><p>Artists:<br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme</p><p>Villa Lill Kallvik opening hours: Wed–Fri 12–18 and Sat–Sun 11–17</p>"
            },
            "name": {
                "fi": "Vuotalosta Villaan – taiteilijatalo säteilee",
                "sv": "Från Nordhuset till Villan – konstnärshuset skiner",
                "en": "From Vuotalo to Villa – the artist house radiates"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64245/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65045",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/"
                    },
                    "description": null,
                    "price": {
                        "fi": "5 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153071,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-22T13:14:22.986124Z",
                    "last_modified_time": "2024-11-22T13:14:22.986141Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745802.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153071/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-22T13:14:22.939895Z",
            "last_modified_time": "2024-11-27T10:14:25.064719Z",
            "date_published": null,
            "start_time": "2024-11-30T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E77A4559CEDDF882883778A2A3173B3C/Vaiana_2_7_"
            },
            "description": {
                "fi": "<p>Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!</p><p>Vaiana kuulee odottamattoman kutsun ympäri Oseaniaa purjehtineilta esi-isiltään. Siihen vastatakseen hänen on matkattava merten ääriin, tuntemattomille ja vaarallisille vesille, missä häntä odottaa seikkailu, jollaista hän ei ole vielä kuunaan kokenut.</p><p>VAIANA 2 -elokuva sisältää kohtauksia, joissa esiintyy välkkyviä valoja, jotka voivat toimia ärsykkeinä niille, jotka ovat alttiita valoherkälle epilepsialle tai muille valoherkkyysoireille.</p><p>Ikäraja: 7<br>Kesto: 99 min.<br>Ensi-ilta: 29.11.2024<br>Elokuva on puhuttu ja tekstitetty suomeksi</p>"
            },
            "name": {
                "fi": "Vaiana 2 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65045/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64656",
            "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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/itaekuskus-stand-up-k-18-pikkujoulu-special-3690147/#calendar-start=2024-11"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 42 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152718,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-02T13:17:48.520045Z",
                    "last_modified_time": "2024-10-02T13:17:48.520058Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755961.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152718/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-02T13:17:48.496239Z",
            "last_modified_time": "2024-11-27T10:14:24.644686Z",
            "date_published": null,
            "start_time": "2024-11-29T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Nyt on ainutlaatuinen mahdollisuus kokea supersuosittu Itäkuskus stand-up-ilta maustettuna BOX Stoan illallisella."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C7132CE1CB1AB0E75E55B3F2E4806CE4/Itakuskus_show_dinner_K18_"
            },
            "description": {
                "fi": "<p>Nyt on ainutlaatuinen mahdollisuus kokea supersuosittu Itäkuskus stand-up-ilta maustettuna BOX Stoan illallisella.</p><p>Pöytiin tarjoiltu ja valkoisilta liinoilta nautittu maukas meze-menu höystettynä hulvattomalla huumorilla baarin hämyssä on takuuvarma tapa unohtaa murheet ja stressi ennen joulukiireitä.</p><p>Klubilla esiintyvät viihdetähti Fabe ja iltojen isäntänä toimii yksi suomen monipuolisimmista koomikoista: Koomikko Mebe! Heidän johdattelemana tämä ainutlaatuinen show vie katsojan idän matkalle ja tarjoaa hulvatonta komiikkaa, ainutlaatuisia havaintoja kulttuurieroista ja suomen kielestä.</p><p>Illassa on mukana DJ, useampi vaihtuva maahanmuuttajataustainen koomikko – ja totta kai joka illassa esiintyy myös vaihtuva nimekäs kiintiösuomalainen koomikko. <br> <br>”Tätä ei näe ja kuule muualla, hulvaton Itäkuskus-show on täynnä ullatuksia ja ainutlaatuisia vitsejä ja havaintoja. Tämä on kuin Fazerin maitosuklaa, kerrasta jää koukkuun! Tule ja koe ainutlaatuinen Itäkuskus-show, monet käy joka kerta.\" <br> <br>Tule kokemaan itse, kutsu kaverit mukaan tai työporukka pikkujouluillalliselle!</p><p>Huom! Klubia ei suositella herkkähipiäisille.</p><p><b>Illallispaikat (42 €) on loppuunmyyty, mutta vielä voit ostaa katsomopaikan ilman illallista hintaan 20 €. Muutama paikka jäljellä!</b></p><p><b>Aikataulu</b><br>DJn tahdittamana ovet ja baari auki klo 17.00<br>Alkupalatarjoilut 17.30 alkaen<br>Show time klo 18.00<br>Tauko ja pääruoka klo 19.00<br>Show time klo 20.00</p>"
            },
            "name": {
                "fi": "Itäkuskus show & dinner (K18) – Pikkujoulu Special!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64656/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "hko:2-2798",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": ""
                    },
                    "description": {
                        "fi": "Hinta",
                        "sv": "Priset",
                        "en": "Price"
                    },
                    "price": {
                        "fi": "6.50 - 41.00 €",
                        "sv": "6.50 - 41.00 €",
                        "en": "6.50 - 41.00 €"
                    }
                }
            ],
            "data_source": "hko",
            "publisher": "ahjo:u4804001030",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T09:05:47.350446Z",
            "last_modified_time": "2024-11-27T09:05:47.350469Z",
            "date_published": null,
            "start_time": "2024-12-08T08:00:00Z",
            "end_time": "2024-12-08T10: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,
            "short_description": {
                "fi": "Helsingin kaupunginorkesteri panee Vicki Rostin hyppimään ja Antti Tuiskun tuulettamaan, kun Musiikkitalon Konserttisali syttyy hehkuun kuumaan.\n\n...",
                "sv": "Beskrivning",
                "en": "Description"
            },
            "info_url": {
                "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/2798"
            },
            "description": {
                "fi": "<p>Helsingin kaupunginorkesteri panee Vicki Rostin hyppimään ja Antti Tuiskun tuulettamaan, kun Musiikkitalon Konserttisali syttyy hehkuun kuumaan....</p>"
            },
            "name": {
                "fi": "HKO: Sata salamaa"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Musiikkitalo Konserttisali",
                "en": "Musiikkitalo Concert Hall"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-2798/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "hko:2-2797",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": ""
                    },
                    "description": {
                        "fi": "Hinta",
                        "sv": "Priset",
                        "en": "Price"
                    },
                    "price": {
                        "fi": "6.50 - 41.00 €",
                        "sv": "6.50 - 41.00 €",
                        "en": "6.50 - 41.00 €"
                    }
                }
            ],
            "data_source": "hko",
            "publisher": "ahjo:u4804001030",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T09:05:46.230003Z",
            "last_modified_time": "2024-11-27T09:05:46.230025Z",
            "date_published": null,
            "start_time": "2024-12-07T08:00:00Z",
            "end_time": "2024-12-07T10: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,
            "short_description": {
                "fi": "Helsingin kaupunginorkesteri panee Vicki Rostin hyppimään ja Antti Tuiskun tuulettamaan, kun Musiikkitalon Konserttisali syttyy hehkuun kuumaan.\n\n...",
                "sv": "Helsingin kaupunginorkesteri panee Vicki Rostin hyppimään ja Antti Tuiskun tuulettamaan, kun Musiikkitalon Konserttisali syttyy hehkuun kuumaan.\n\n...",
                "en": "Helsingin kaupunginorkesteri panee Vicki Rostin hyppimään ja Antti Tuiskun tuulettamaan, kun Musiikkitalon Konserttisali syttyy hehkuun kuumaan.\n\n..."
            },
            "info_url": {
                "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/2797",
                "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/2797",
                "en": "https://helsinginkaupunginorkesteri.fi/en/node/2797"
            },
            "description": {
                "fi": "<p>Helsingin kaupunginorkesteri panee Vicki Rostin hyppimään ja Antti Tuiskun tuulettamaan, kun Musiikkitalon Konserttisali syttyy hehkuun kuumaan....</p>",
                "sv": "<p>Helsingin kaupunginorkesteri panee Vicki Rostin hyppimään ja Antti Tuiskun tuulettamaan, kun Musiikkitalon Konserttisali syttyy hehkuun kuumaan....</p>",
                "en": "<p>Helsingin kaupunginorkesteri panee Vicki Rostin hyppimään ja Antti Tuiskun tuulettamaan, kun Musiikkitalon Konserttisali syttyy hehkuun kuumaan....</p>"
            },
            "name": {
                "fi": "HKO: Sata salamaa",
                "sv": "HKO: Sata salamaa",
                "en": "HPO: Thousand Lightning"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Musiikkitalo Konserttisali",
                "en": "Musiikkitalo Concert Hall"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-2797/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:3021a9ad-125e-4103-a1c4-2624875e9e560",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?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:p12547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Tapahtuma_esimerkki_090920243683273210"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152354,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-09T12:20:33.712218Z",
                    "last_modified_time": "2024-09-09T12:20:33.712236Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/32de3280-3514-ef11-9f8a-000d3ab59432",
                    "name": "Tapahtuma esimerkki 09.09.2024",
                    "cropping": "",
                    "photographer_name": "Tapahtuma esimerkki 09.09.2024",
                    "alt_text": "Testi",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?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:p12547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                }
            ],
            "created_time": "2024-11-26T11:58:09.464722Z",
            "last_modified_time": "2024-11-26T11:58:09.464743Z",
            "date_published": "2024-09-09T12:19:25Z",
            "start_time": "2024-10-30T09:00:00Z",
            "end_time": "2024-12-30T21:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-08-23T08:00:00+03:00",
            "enrolment_end_time": "2024-10-25T10:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tapahtuma k-18 ikarajatieto testi 26.11"
            },
            "info_url": {
                "fi": "https://www.hel.fi"
            },
            "description": {
                "fi": "<div><p>Tapahtuma esimerkki vol.2 09.09.2024</p></div>"
            },
            "name": {
                "fi": "Tapahtuma k-18 ikarajatieto testi 26.11"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Helsinki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:3021a9ad-125e-4103-a1c4-2624875e9e560/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:3021a9ad-125e-4103-a1c4-2624875e9e559",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?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:p12547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Tapahtuma_esimerkki_090920243683273210"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152354,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-09T12:20:33.712218Z",
                    "last_modified_time": "2024-09-09T12:20:33.712236Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/32de3280-3514-ef11-9f8a-000d3ab59432",
                    "name": "Tapahtuma esimerkki 09.09.2024",
                    "cropping": "",
                    "photographer_name": "Tapahtuma esimerkki 09.09.2024",
                    "alt_text": "Testi",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?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:p12547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                }
            ],
            "created_time": "2024-11-26T11:50:56.615591Z",
            "last_modified_time": "2024-11-26T11:50:56.615611Z",
            "date_published": "2024-09-09T12:19:25Z",
            "start_time": "2024-10-30T09:00:00Z",
            "end_time": "2024-12-30T21:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-08-23T08:00:00+03:00",
            "enrolment_end_time": "2024-10-25T10:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tapahtuma ei ikarajatietoa testi 26.11"
            },
            "info_url": {
                "fi": "https://www.hel.fi"
            },
            "description": {
                "fi": "<div><p>Tapahtuma esimerkki vol.2 09.09.2024</p></div>"
            },
            "name": {
                "fi": "Tapahtuma ei ikarajatietoa testi 26.11"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Helsinki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:3021a9ad-125e-4103-a1c4-2624875e9e559/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:3021a9ad-125e-4103-a1c4-2624875e9e558",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?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:p12547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Tapahtuma_esimerkki_090920243683273210"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152354,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-09T12:20:33.712218Z",
                    "last_modified_time": "2024-09-09T12:20:33.712236Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/32de3280-3514-ef11-9f8a-000d3ab59432",
                    "name": "Tapahtuma esimerkki 09.09.2024",
                    "cropping": "",
                    "photographer_name": "Tapahtuma esimerkki 09.09.2024",
                    "alt_text": "Testi",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?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:p12547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                }
            ],
            "created_time": "2024-11-26T11:16:47.922673Z",
            "last_modified_time": "2024-11-26T11:16:47.922694Z",
            "date_published": "2024-09-09T12:19:25Z",
            "start_time": "2024-10-30T09:00:00Z",
            "end_time": "2024-12-30T21:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-08-23T08:00:00+03:00",
            "enrolment_end_time": "2024-10-25T10:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tapahtuma ikarajatieto testi 26.11"
            },
            "info_url": {
                "fi": "https://www.hel.fi"
            },
            "description": {
                "fi": "<div><p>Tapahtuma esimerkki vol.2 09.09.2024</p></div>"
            },
            "name": {
                "fi": "Tapahtuma ikarajatieto testi 26.11"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Helsinki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:3021a9ad-125e-4103-a1c4-2624875e9e558/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64522",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-19098615"
                    },
                    "description": null,
                    "price": {
                        "fi": "38,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152306,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-05T11:14:01.295327Z",
                    "last_modified_time": "2024-09-05T11:14:01.295347Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755076.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152306/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-05T11:14:01.271941Z",
            "last_modified_time": "2024-11-23T11:14:07.168597Z",
            "date_published": null,
            "start_time": "2024-11-26T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/135A41F5A03F7532F261962A4C607B8B/Sydamen_voimaa_-_Aki_Samulin_joulukonsertti"
            },
            "description": {
                "fi": "<p><b>Ti 26.11.2024 Aki Samuli - Sydämen voimaa konsertti siirtyy pidettäväksi ensi vuonna.<br>Uusi esitysajankohta on maanantai 8.12.2025 klo 19.00.</b></p><p>Jo hankitut liput kelpaavat sellaisenaan myös tulevaan konserttiin. Lippuja ei tarvitse vaihtaa.</p><p>Mikäli ajankohta ei syystä tai toisesta käy, maksetuista lipuista tulee hakea rahanpalautusta su 15.12.2024 mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelu- tai toimitusmaksuja.<br>Jo maksetut liput voi myös vaihtaa Savoy-teatterin lahjakorttiin. Lahjakortti on voimassa kaksi (2) vuotta myöntöhetkestä, ja sillä voi ostaa lippuja Savoy-teatterin tapahtumiin Savoy-teatterin lipunmyynnistä ja Lippupisteen täyden palvelun lippukaupoista. Lahjakortti toimitetaan postitse asiakkaan ilmoittamaan osoitteeseen.</p><p>OHJE LIPPUJEN VAIHTAMISEKSI LAHJAKORTTIIN:</p><p>Ilmoita lipun viivakoodinumero, rivi- ja paikkanumero sekä osoite johon lahjakortti postitetaan osoitteeseen raisa.ailio@hel.fi.</p><p>OHJE LIPPURAHOJEN PALAUTUKSIIN:<br> <br>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).</p><p>Tapahtumajärjestäjä Elevent Group Oy sekä Savoy-teatteri ja Lippupiste pahoittelevat muutoksesta aiheutuvaa vaivaa!</p><p>****</p><p>Tangon kultaista kruunua jo yhdeksän vuoden ajan kantanut Aki Samuli valloittaa Suomen kansaa niin tv:ssä kuin tanssilavoilla. Ensimmäinen joululevy ja konserttisalikiertue pitävät artistin kiireisenä.</p><p>Marraskuun lopulla saa ensi-iltansa laulaja Aki Samulin ensimmäinen oma joulukonserttikiertue. Tuotanto kulkee nimellä ”Sydämen voimaa” ja kokonaisuus rakentuu Akin oman elämäntarinan ja kokemusten ympärille. <br> <br><i>”Erinomaisesti onnistuneen kesäkiertueeni jatkoksi on aivan ihana lähteä kiertämään konserttisaleja upean porukan kanssa. Odotan innolla ensimmäistä omaa kiertuettani”</i> Aki kertoo. <i>” Sydämen Voimaa -kiertue on viihteellinen kokonaisuus, joka on aikamatka mun elämäni jouluihin. Mä haluan jakaa tärkeitä hetkiä ja tarinoita mun elämän varrelta”.</i><br> <br><i>”Se, miten nerokkaasti Sari Siikander on sitonut kappaleiden lyriikat ja henkilökohtaiset tarinani yhteen, on jotain aivan uutta, samaistuttavaa ja ihmeellistä konserttisaleissa” </i>hän jatkaa.<br> <br><i>”Meillä jokaisella on omat jouluperinteet ja kokemukset, traditiot ja odotukset. Mitä Akin joulut pitävät sisällään, millaisia kokemuksia ja tarinoita ja musiikkia. Näiden pohjalta olemme lähteneet työstämään kokonaisuutta”</i> valaisee Sari Siikander sisältöä. <i>”Emme ole tekemässä perinteistä joulukonserttia vaan seuraamme enemmän Akin matkaa erilaisten joulujen kautta tähän hetkeen”</i> Sari lisää.<br> <br>Aki Samuli kruunattiin Seinäjoen Tangomarkkinoilla tangokuninkaaksi 2015. Kolme pitkäsoittoa, Pauloissa Ep, Joulualbumi, ”Oman elämänsä Kuningas” -kirja, roolit kesäteatterissa sekä Mahdoton rakkaus musikaalissa ovat rakentaneet hänestä monipuolista viihdetaiteiljaa. Syksyllä 2024 Aki on mukana Ylen uudessa dokumentaarisessa tv-sarjassa ”Lomittajat”, jossa seurataan 3kk ajan Akin elämää<br> <br>Sydämen voimaa – konsertissa Akin kanssa lavalla on nelihenkinen orkesteri. Esityksen dramaturgiasta vastaa Sari Siikander. Kiertue kestää kolme viikkoa ja esityksiä tulee olemaan yhteensä 14 eri kaupungissa. Kiertueen info tulee löytymään www.sydämenvoimaa.fi nettisivulta ja somesta.</p><p>Kesto n. 2 h 10 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p>"
            },
            "name": {
                "fi": "Sydämen voimaa - Aki Samulin joulukonsertti – KONSERTTI SIIRTYY -> ma 8.12.2025"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Elevent Group Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64522/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "hko:2-2795",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:43117/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "hko",
            "publisher": "ahjo:u4804001030",
            "sub_events": [],
            "images": [
                {
                    "id": 153070,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-22T09:39:59.712358Z",
                    "last_modified_time": "2024-11-22T09:39:59.712386Z",
                    "url": "https://hko-staging.exove.eu/sites/default/files/2024-02/hko_05_logo_text_fin_black-kopio.png",
                    "name": "hko_05_logo_text_fin_black-kopio.png",
                    "cropping": "",
                    "photographer_name": "Helsingin kaupunginorkesteri",
                    "alt_text": null,
                    "data_source": "hko",
                    "publisher": "ahjo:u4804001030",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153070/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-22T09:40:22.295206Z",
            "last_modified_time": "2024-11-22T09:40:22.295229Z",
            "date_published": null,
            "start_time": "2024-11-25T09:37:19Z",
            "end_time": "2024-11-25T12:37:22Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Test summary",
                "sv": "Beskrivning",
                "en": "Description"
            },
            "info_url": {
                "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/2795"
            },
            "description": {
                "fi": "<p>Test summary</p>"
            },
            "name": {
                "fi": "Test concert for linked events"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kannelmäen kirkko",
                "sv": "Kårböle kyrka",
                "en": "Kannelmäki Church"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-2795/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "hko:2-72",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": ""
                    },
                    "description": {
                        "fi": "Hinta",
                        "sv": "Priset",
                        "en": "Price"
                    },
                    "price": {
                        "fi": "  -   €",
                        "sv": "  -   €",
                        "en": "  -   €"
                    }
                }
            ],
            "data_source": "hko",
            "publisher": "ahjo:u4804001030",
            "sub_events": [],
            "images": [
                {
                    "id": 21072,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-22T12:48:13.481488Z",
                    "last_modified_time": "2024-03-22T12:48:13.481506Z",
                    "url": "https://hko-staging.exove.eu/sites/default/files/2020-08/hko_2_c_maarit_kytoharju.jpg",
                    "name": "hko_2_c_maarit_kytoharju.jpg",
                    "cropping": "",
                    "photographer_name": "Helsingin kaupunginorkesteri",
                    "alt_text": null,
                    "data_source": "hko",
                    "publisher": "ahjo:u4804001030",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/21072/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-21T11:20:31.842235Z",
            "last_modified_time": "2024-11-22T08:50:28.937559Z",
            "date_published": null,
            "start_time": "2025-06-05T11:00:00Z",
            "end_time": "2025-06-05T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suora lähetys Musiikkitalon Paavo-salista: luvassa leikkiä, laulua ja kaunista musiikkia!\n\n\r\n\r\nHelsingin kaupunginorkesterin 2020 syntyneille kummil...",
                "sv": "Suora lähetys Musiikkitalon Paavo-salista: luvassa leikkiä, laulua ja kaunista musiikkia!\n\n\r\n\r\nHelsingin kaupunginorkesterin 2020 syntyneille kummil...",
                "en": "Suora lähetys Musiikkitalon Paavo-salista: luvassa leikkiä, laulua ja kaunista musiikkia!\n\n\r\n\r\nHelsingin kaupunginorkesterin 2020 syntyneille kummil..."
            },
            "info_url": {
                "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/72",
                "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/72",
                "en": "https://helsinginkaupunginorkesteri.fi/en/node/72"
            },
            "description": {
                "fi": "<p>Suora lähetys Musiikkitalon Paavo-salista: luvassa leikkiä, laulua ja kaunista musiikkia!\n\nHelsingin kaupunginorkesterin 2020 syntyneille kummil...</p>",
                "sv": "<p>Suora lähetys Musiikkitalon Paavo-salista: luvassa leikkiä, laulua ja kaunista musiikkia!\n\nHelsingin kaupunginorkesterin 2020 syntyneille kummil...</p>",
                "en": "<p>Suora lähetys Musiikkitalon Paavo-salista: luvassa leikkiä, laulua ja kaunista musiikkia!\n\nHelsingin kaupunginorkesterin 2020 syntyneille kummil...</p>"
            },
            "name": {
                "fi": "NALLE NAPPISILMÄN MUSIIKKIHETKI",
                "sv": "NALLE NAPPISILMÄN MUSIIKKIHETKI",
                "en": "NALLE NAPPISILMÄN MUSIIKKIHETKI"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Musiikkitalo Konserttisali",
                "en": "Musiikkitalo Concert Hall"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-72/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63799",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/18698501"
                    },
                    "description": null,
                    "price": {
                        "fi": "40 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151168,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-17T09:12:58.714304Z",
                    "last_modified_time": "2024-05-17T09:12:58.714318Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752517.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151168/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-17T09:12:58.696843Z",
            "last_modified_time": "2024-11-21T16:13:31.615065Z",
            "date_published": null,
            "start_time": "2024-11-27T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Konsertissa vierailijana Costello Hautamäki"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/409C3E6512CC2908B731DB4BE79C57CB/EINI_Mun_Vuosi_"
            },
            "description": {
                "fi": "<p>Konsertissa vierailijana Costello Hautamäki</p><p>Suomen ainoa ja oikea diskokuningatar, julkaisi debyyttinsä <i>Yes sir, alkaa polttaa</i> vain 17-vuotiaana. Pitkästä urastaan huolimatta artistin vauhti ei ole hidastumassa, vaan hän jatkaa uraansa entistäkin upeampana uuden musiikin siivittämänä. Artistin tulevan 16. studioalbumin ensimmäinen, joulukuussa julkaistu single <i>Mun vuosi</i>, enteili vuoden olevan \"Einin vuosi\", mistä todisteena oli mm. artistin uran ensimmäinen Emma Gaala -ehdokkuus.</p><p>Helmikuussa julkaistun <i>Sun vuoro olla vapaa</i> -singlen voimaantumisen teemaa jatkaa Tää kaikki ois voinut olla sun -single, joka julkaistiin 26.4.</p><p>Artistin alkuvuodesta startannut Mun Vuosi -kevätkiertue oli menestys ja loppuunmyyty, se piti sisällään lähes 30 keikkaa ympäri Suomen. Artisti kertoo, että uudet kappaleet on otettu yleisön puolesta avosylin vastaan.</p><p><i>”On ollut ilo huomata kuinka yleisö laulaa mukana täysillä uutta tuotantoa. Keikat ovat olleet kerrassaan riehakkaita ja uutta yleisöä on tullut paljon lisää. Mun vuosi -kevätkiertueen keikoista suurin osa on ollut loppuunmyytyjä”</i>, Eini kertoo. <br> <br>Mun Vuosi -kiertue jatkuu kesän ja syksyn. Syksyllä 40 -keikan kiertue strattaa syyskuun alussa. Konserttisaleissa saadaan kuulla nostalgiset -sekä uusimmat hitit. Lisäksi Einin ohjelmistossa kuullaan `Vain Elämää`-tuotantokauden tulkintoja kappaleista.</p><p>Einin myös tulevan albumin tuotannosta vastaa hittituottaja <b>Jonas Olsson</b>, joka palkittiin vuoden 2023 Emma Gaalassa Vuoden tuottajana sekä musiikintekijänä. Einin vuonna 2023 julkaistu <br>Pimeän jälkeen -albumi on kerännyt Spotifyssa reilut 4 miljoonaa streamia, ja albumin singlet ovat soineet Suomipopilla, Iskelmällä, Aito Iskelmällä sekä Radio Suomessa. Einin viimeisimmät, myöhemmin julkaistavan albumin singlet Mun vuosi, ja Sun vuoro olla vapaa ovat soineet radiossa yhteensä yli 2000 kertaa. Alkuvuodesta julkaistu Mun Vuosi single nousi parhaimmillaan Suomen virallisen radiolistan sijalle 25.<br> <br>Tämä on todellakin, EININ `Mun Vuosi`.</p><p>Popeda-ikoni, kitaristi <b>Costello Hautamäki</b> tekee soolokeikkoja silloin kun <b>Popeda</b>:n keikoilta ehtii. <br>Costellon settilista koostuu muun muassa Popedan sekä hänen omista jo ikivihreistä suomirock-klassikoistaan.<br>Ja saattaapa setistä löytyä myös materiaalia, jota kukaan ei ole osannut odottaa!<br>Vain Elämää -Ohjelmassa Einin kanssa Costello nousee lavalle ensimmäisen kerran yhdessä!<br>Mitä kaikkea kuullaan konsertissa Vain Elämää -ohjelman tiimoilta.</p><p>Tule ja koe tämä elämys.</p><p><b>Huom!</b> Esityksessä käytetään kirkkaita strobo -efektivaloja.</p><p>Kesto noin 75 min, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p>"
            },
            "name": {
                "fi": "EINI – Mun Vuosi – Special guest Costello Hautamäki"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Sony Music Entertainment Finland Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63799/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "hko:2-2793",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": ""
                    },
                    "description": {
                        "fi": "Hinta",
                        "sv": "Priset",
                        "en": "Price"
                    },
                    "price": {
                        "fi": "  -   €",
                        "sv": "  -   €",
                        "en": "  -   €"
                    }
                }
            ],
            "data_source": "hko",
            "publisher": "ahjo:u4804001030",
            "sub_events": [],
            "images": [
                {
                    "id": 21072,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-22T12:48:13.481488Z",
                    "last_modified_time": "2024-03-22T12:48:13.481506Z",
                    "url": "https://hko-staging.exove.eu/sites/default/files/2020-08/hko_2_c_maarit_kytoharju.jpg",
                    "name": "hko_2_c_maarit_kytoharju.jpg",
                    "cropping": "",
                    "photographer_name": "Helsingin kaupunginorkesteri",
                    "alt_text": null,
                    "data_source": "hko",
                    "publisher": "ahjo:u4804001030",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/21072/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-21T11:20:53.978835Z",
            "last_modified_time": "2024-11-21T11:20:53.978864Z",
            "date_published": null,
            "start_time": "2025-06-06T11:00:00Z",
            "end_time": "2025-06-06T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suora lähetys Musiikkitalon Paavo-salista: luvassa leikkiä, laulua ja kaunista musiikkia!",
                "sv": "Suora lähetys Musiikkitalon Paavo-salista: luvassa leikkiä, laulua ja kaunista musiikkia!\n\n\r\n\r\nHelsingin kaupunginorkesterin 2020 syntyneille kummil...",
                "en": "Suora lähetys Musiikkitalon Paavo-salista: luvassa leikkiä, laulua ja kaunista musiikkia!\n\n\r\n\r\nHelsingin kaupunginorkesterin 2020 syntyneille kummil..."
            },
            "info_url": {
                "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/2793",
                "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/2793",
                "en": "https://helsinginkaupunginorkesteri.fi/en/node/2793"
            },
            "description": {
                "fi": "<p>Suora lähetys Musiikkitalon Paavo-salista: luvassa leikkiä, laulua ja kaunista musiikkia!</p>",
                "sv": "<p>Suora lähetys Musiikkitalon Paavo-salista: luvassa leikkiä, laulua ja kaunista musiikkia!\n\nHelsingin kaupunginorkesterin 2020 syntyneille kummil...</p>",
                "en": "<p>Suora lähetys Musiikkitalon Paavo-salista: luvassa leikkiä, laulua ja kaunista musiikkia!\n\nHelsingin kaupunginorkesterin 2020 syntyneille kummil...</p>"
            },
            "name": {
                "fi": "NALLE NAPPISILMÄN MUSIIKKIHETKI",
                "sv": "NALLE NAPPISILMÄN MUSIIKKIHETKI",
                "en": "NALLE NAPPISILMÄN MUSIIKKIHETKI"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Musiikkitalo Konserttisali",
                "en": "Musiikkitalo Concert Hall"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-2793/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}