Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 27581,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=305",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=303"
    },
    "data": [
        {
            "id": "kulke:65294",
            "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: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: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/search/?affiliate=ADV&searchterm=kino+helios",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153455,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-13T14:14:14.453108Z",
                    "last_modified_time": "2024-12-13T14:14:14.453125Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758951.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153455/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-13T14:14:14.430349Z",
            "last_modified_time": "2025-01-17T10:14:30.156836Z",
            "date_published": null,
            "start_time": "2025-01-17T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EA6F529E094CD42F169908A032B3474F/Thelma_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EA6F529E094CD42F169908A032B3474F/Thelma_7_",
                "en": "http://www.malmitalo.fi/en/events/event/EA6F529E094CD42F169908A032B3474F/Thelma_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Thelma (7) – Kino Helios",
                "sv": "Thelma (7) – Kino Helios",
                "en": "Thelma (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa.</p><p>Kun 93-vuotias isoäiti Thelma joutuu puhelimessa hänen lapsenlapsekseen tekeytyvän huijarin uhriksi, hän päättää ottaa oikeuden omiin käsiinsä saadakseen omaisuutensa takaisin.</p><p>Ikäraja: (7)<br>Kesto: 98 min.</p><p>Ensi-ilta: 25.12.2024<br>Tekstitys: suomi ja ruotsi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65294/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65293",
            "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: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: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/search/?affiliate=ADV&searchterm=kino+helios",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153453,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-13T14:14:13.853525Z",
                    "last_modified_time": "2024-12-13T14:14:13.853546Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758947.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153453/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-13T14:14:13.830396Z",
            "last_modified_time": "2025-01-17T10:14:29.380960Z",
            "date_published": null,
            "start_time": "2025-01-15T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/560945E6114BC3FE5B6A3E8FAD8DB8FA/Thelma_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/560945E6114BC3FE5B6A3E8FAD8DB8FA/Thelma_7_",
                "en": "http://www.malmitalo.fi/en/events/event/560945E6114BC3FE5B6A3E8FAD8DB8FA/Thelma_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Thelma (7) – Kino Helios",
                "sv": "Thelma (7) – Kino Helios",
                "en": "Thelma (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa.</p><p>Kun 93-vuotias isoäiti Thelma joutuu puhelimessa hänen lapsenlapsekseen tekeytyvän huijarin uhriksi, hän päättää ottaa oikeuden omiin käsiinsä saadakseen omaisuutensa takaisin.</p><p>Ikäraja: (7)<br>Kesto: 98 min.</p><p>Ensi-ilta: 25.12.2024<br>Tekstitys: suomi ja ruotsi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65293/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65292",
            "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: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: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/search/?affiliate=ADV&searchterm=kino+helios",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153451,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-13T14:14:13.388289Z",
                    "last_modified_time": "2024-12-13T14:14:13.388303Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758944.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153451/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-13T14:14:13.364494Z",
            "last_modified_time": "2025-01-17T10:14:28.971145Z",
            "date_published": null,
            "start_time": "2025-01-11T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8CD75354117B607A2A5F7BFD4FF25BEA/Thelma_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8CD75354117B607A2A5F7BFD4FF25BEA/Thelma_7_",
                "en": "http://www.malmitalo.fi/en/events/event/8CD75354117B607A2A5F7BFD4FF25BEA/Thelma_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Thelma (7) – Kino Helios",
                "sv": "Thelma (7) – Kino Helios",
                "en": "Thelma (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa.</p><p>Kun 93-vuotias isoäiti Thelma joutuu puhelimessa hänen lapsenlapsekseen tekeytyvän huijarin uhriksi, hän päättää ottaa oikeuden omiin käsiinsä saadakseen omaisuutensa takaisin.</p><p>Ikäraja: (7)<br>Kesto: 98 min.</p><p>Ensi-ilta: 25.12.2024<br>Tekstitys: suomi ja ruotsi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65292/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65291",
            "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: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: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/search/?affiliate=ADV&searchterm=kino+helios",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153449,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-13T14:14:13.135820Z",
                    "last_modified_time": "2024-12-13T14:14:13.135835Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758941.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153449/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-13T14:14:13.109669Z",
            "last_modified_time": "2025-01-17T10:14:28.764230Z",
            "date_published": null,
            "start_time": "2025-01-10T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/81C1EF3CC6C50860A80BD8C5845C67C2/Thelma_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/81C1EF3CC6C50860A80BD8C5845C67C2/Thelma_7_",
                "en": "http://www.malmitalo.fi/en/events/event/81C1EF3CC6C50860A80BD8C5845C67C2/Thelma_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Thelma (7) – Kino Helios",
                "sv": "Thelma (7) – Kino Helios",
                "en": "Thelma (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa.</p><p>Kun 93-vuotias isoäiti Thelma joutuu puhelimessa hänen lapsenlapsekseen tekeytyvän huijarin uhriksi, hän päättää ottaa oikeuden omiin käsiinsä saadakseen omaisuutensa takaisin.</p><p>Ikäraja: (7)<br>Kesto: 98 min.</p><p>Ensi-ilta: 25.12.2024<br>Tekstitys: suomi ja ruotsi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65291/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23ehxm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eii4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 150450,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-17T07:59:13.420035Z",
                    "last_modified_time": "2024-01-17T07:59:13.420055Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/shakki.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "shakkinappuloita pelilaudalla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-01-17T09:39:39.314593Z",
            "last_modified_time": "2025-01-17T09:39:39.314622Z",
            "date_published": null,
            "start_time": "2025-05-27T14:00:00Z",
            "end_time": "2025-05-27T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nuorille suunnattu shakkiklubi.",
                "sv": "Schackklubben för unga.",
                "en": "Chess Club for teens."
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "name": {
                "fi": "Mr. Omarin Shakkiklubi",
                "sv": "Mr. Omar Schackklubb ",
                "en": "Mr. Omar's Chess Club"
            },
            "description": {
                "fi": "<p>Shakkiklubi Entressen kirjaston nuorten osasto Kibessä.</p><p>Tiistai 4. helmikuuta</p><p>Tiistai 18. helmikuuta</p><p>Tiistai 3. maaliskuuta</p><p>Tiistai 18. maaliskuuta</p><p>Tiistai 1. huhtikuuta</p><p>Tiistai 15. huhtikuuta</p><p>Tiistai 29. huhtikuuta</p><p>Tiistai 13. toukokuuta</p><p>Tiistai 27. toukokuuta</p>",
                "sv": "<p>Entresse Librarys ungdomsavdelning i Kibe.</p><p>Tisdag 4. februari</p><p>Tisdag 18. februari</p><p>Tisdag 3. mars</p><p>Tisdag 18. mars</p><p>Tisdag 1. april</p><p>Tisdag 15. april</p><p>Tisdag 29. april</p><p>Tisdag 13. maj</p><p>Tisdag 27. maj</p>",
                "en": "<p>Chess Club in Entresse Library's youth section Kibe.</p><p>Tuesday 4. February</p><p>Tuesday 18. February</p><p>Tuesday 4. March</p><p>Tuesday 18. March</p><p>Tuesday 1. April</p><p>Tuesday 15. April</p><p>Tuesday 29. April</p><p>Tuesday 13. May</p><p>Tuesday 27. May</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ehxm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23eii4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ehxm/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150450,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-17T07:59:13.420035Z",
                    "last_modified_time": "2024-01-17T07:59:13.420055Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/shakki.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "shakkinappuloita pelilaudalla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-01-17T09:39:29.270417Z",
            "last_modified_time": "2025-01-17T09:39:29.270437Z",
            "date_published": null,
            "start_time": "2025-02-04T15:00:00Z",
            "end_time": "2025-05-27T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nuorille suunnattu shakkiklubi.",
                "sv": "Schackklubben för unga.",
                "en": "Chess Club for teens."
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "name": {
                "fi": "Mr. Omarin Shakkiklubi",
                "sv": "Mr. Omar Schackklubb ",
                "en": "Mr. Omar's Chess Club"
            },
            "description": {
                "fi": "<p>Shakkiklubi Entressen kirjaston nuorten osasto Kibessä.</p><p>Tiistai 4. helmikuuta</p><p>Tiistai 18. helmikuuta</p><p>Tiistai 3. maaliskuuta</p><p>Tiistai 18. maaliskuuta</p><p>Tiistai 1. huhtikuuta</p><p>Tiistai 15. huhtikuuta</p><p>Tiistai 29. huhtikuuta</p><p>Tiistai 13. toukokuuta</p><p>Tiistai 27. toukokuuta</p>",
                "sv": "<p>Entresse Librarys ungdomsavdelning i Kibe.</p><p>Tisdag 4. februari</p><p>Tisdag 18. februari</p><p>Tisdag 3. mars</p><p>Tisdag 18. mars</p><p>Tisdag 1. april</p><p>Tisdag 15. april</p><p>Tisdag 29. april</p><p>Tisdag 13. maj</p><p>Tisdag 27. maj</p>",
                "en": "<p>Chess Club in Entresse Library's youth section Kibe.</p><p>Tuesday 4. February</p><p>Tuesday 18. February</p><p>Tuesday 4. March</p><p>Tuesday 18. March</p><p>Tuesday 1. April</p><p>Tuesday 15. April</p><p>Tuesday 29. April</p><p>Tuesday 13. May</p><p>Tuesday 27. May</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eii4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65018",
            "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:613/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 156103,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-17T09:14:55.776305Z",
                    "last_modified_time": "2025-01-17T09:14:55.776320Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763511.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156103/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-17T09:14:55.748551Z",
            "last_modified_time": "2025-01-17T09:14:55.845131Z",
            "date_published": null,
            "start_time": "2025-03-31T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjassa kahvilan stagella vuorossa vieraileva muusikko Arto Pajukallio.",
                "sv": "Börja veckan med fullt hålligång! I vårens serie för klubben Juurilla står musikern Arto Pajukallio i turen på kaféets stage.",
                "en": "Start your week with some catchy tunes! In this spring's At the Roots Club series, guest musician Arto Pajukallio takes the stage at the café."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/948F86C5A44BF594663FA585A2E4BE97/Juurilla_Arto_Pajukallio",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/948F86C5A44BF594663FA585A2E4BE97/Vid_rotterna_Arto_Pajukallio",
                "en": "http://www.kanneltalo.fi/en/events/event/948F86C5A44BF594663FA585A2E4BE97/At_the_Roots_Arto_Pajukallio"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Juurilla: Arto Pajukallio – Maksuttomat maanantait",
                "sv": "Vid rötterna: Arto Pajukallio – Kostnadsfria måndagar",
                "en": "At the Roots: Arto Pajukallio – Free Mondays"
            },
            "description": {
                "fi": "<p>Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjassa kahvilan stagella vuorossa vieraileva muusikko Arto Pajukallio.</p><p>Arto Pajukallio on päätyönään työskennellyt toimittajana ja tehnyt toisen uran soittajana mm. Freud Marx Engels & Jungissa.</p><p>”En ole solistinen laulaja tai soittaja, ja hyppään suoraan oman epämukavuusalueeni syvään päätyyn astumalla Juurilla-klubin bändin vieraaksi. Koen kuitenkin vallan tehtäväkseni tuoda esille myös vähemmän tunnettua suomenkielistä rootsmusiikkia eri tekijöiltä, ehkä itseltänikin. Tehtäköön siis musiikillinen aikamatka lauluihin, joista monia ei osata toivoa.”</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><b>The Rooty Toot Toot Band:</b> <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>Kesto: 1 tunti</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! I vårens serie för klubben Juurilla står musikern Arto Pajukallio i turen på kaféets stage.</p><p>Arto Pajukallios huvudsakliga yrke är journalist och han har haft en andra karriär som musiker i bland annat Freud Marx Engels & Jung.</p><p>“Jag är inte en solistisk sångare eller musiker, och jag hoppar direkt utanför mitt bekvämlighetsområde och ner i den djupa änden genom att komma som gäst till Juurilla-klubbens band. Jag upplever det dock som min uppgift att hämta fram mindre känd finländsk rootsmusik av olika upphovsmän, kanske även av mig själv. Låt oss alltså göra en musikalisk tidsresa till sånger, varav många är sådana som man inte vet att man kan önska sig.”</p><p>Den pulserande kärnan i måndagskvällens favoritklubb är jazz, blues, country, folk, rhythm and blues, bluegrass och americana-rootsmusik. Som förut är Juki Välipakka och The Rooty Toot Toot Band värdar för Juurilla-klubben.</p><p><b>The Rooty Toot Toot Band:</b> <br>Juki Välipakka – sång & gitarr<br>Lasse Sirkko – bas <br>Tommi Lievemaa – gitarr <br>Olli Haavisto – pedalstål<br>Sirpa Suomalainen – saxofon <br>Kepa Kettunen – trummor</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Start your week with some catchy tunes! In this spring's At the Roots Club series, guest musician Arto Pajukallio takes the stage at the café.</p><p>Arto Pajukallio has mainly worked as a journalist but has had a second career as a musician with Freud Marx Engels & Jung, among others.</p><p>“I’m not a lead singer or guitarist, and I’m jumping right into the deep end of my discomfort zone by joining the At the Roots Club band as their guest. But I feel like it’s totally my duty to showcase lesser-known Finnish roots music by different artists, maybe even myself. So let’s take a time-travelling musical journey through some songs that many of us don’t even know to request.”</p><p>The pulsating heart of everyone’s favourite Monday night club is made of jazz, blues, country, folk, rhythm and blues, bluegrass and Americana roots music. As usual, the club hosts are Juki Välipakka and The Rooty Toot Toot Band.</p><p><b>The Rooty Toot Toot Band:</b> <br>Juki Välipakka – vocals & guitar<br>Lasse Sirkko – bass <br>Tommi Lievemaa – guitar <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saxophone <br>Kepa Kettunen – drums</p><p>Duration: 1 hour</p><p>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>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65018/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65416",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 156102,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-17T09:14:53.069743Z",
                    "last_modified_time": "2025-01-17T09:14:53.069760Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764722.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156102/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-17T09:14:53.027951Z",
            "last_modified_time": "2025-01-17T09:14:53.151805Z",
            "date_published": null,
            "start_time": "2025-03-15T08:00:00Z",
            "end_time": "2025-03-15T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule ostoksille tai varaa oma myyntipöytä!",
                "sv": "Kom och handla eller reservera ett eget bord!",
                "en": "Come shop or book your own sales table!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/255666201EB35F2F8C2E0D158B1CCF76/MLL_Kannelmaki_Lastenvaate_ja_-tarvikekirppis",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/255666201EB35F2F8C2E0D158B1CCF76/MLL_Gamlas_Loppis_for_barnklader_och_barnutrustning",
                "en": "http://www.kanneltalo.fi/en/events/event/255666201EB35F2F8C2E0D158B1CCF76/MLL_Kannelmaki_Flea_market_for_children_s_clothing_and_equipment"
            },
            "location_extra_info": null,
            "name": {
                "fi": "MLL Kannelmäki: Lastenvaate ja -tarvikekirppis",
                "sv": "MLL Gamlas: Loppis för barnkläder och barnutrustning",
                "en": "MLL Kannelmäki: Flea market for children’s clothing and equipment"
            },
            "description": {
                "fi": "<p>Tule ostoksille tai varaa oma myyntipöytä!</p><p>Kirppis järjestetään Kanneltalon aulassa.</p><p>Pöydän hinta yhdistyksen jäseniltä 7 €, muilta 10 €.</p><p>Pöytävaraukset: https://kannelmaki.mll.fi/kirpputori/</p><p>Vapaa pääsy</p>",
                "sv": "<p>Kom och handla eller reservera ett eget bord!</p><p>Loppmarknaden ordnas i Gamlasgårdens lobby.<br>Ett bord kostar 7 € för föreningens medlemmar, 10 € för andra.</p><p>Bordsbokningar: https://kannelmaki.mll.fi/kirpputori/</p>",
                "en": "<p>Come shop or book your own sales table!</p><p>The flea market is held in the lobby of Kanneltalo.<br>Tables are priced at €7 for members, €10 for others.</p><p>Table reservations: https://kannelmaki.mll.fi/kirpputori/</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65416/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64913",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?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/stella-polaris-kanneltalo-kanneltalo-19431042/",
                        "sv": "https://www.lippu.fi/event/stella-polaris-kanneltalo-kanneltalo-19431042/",
                        "en": "https://www.lippu.fi/event/stella-polaris-kanneltalo-kanneltalo-19431042/"
                    },
                    "price": {
                        "fi": "29,90 € / 24,80 €",
                        "sv": "29,90 € / 24,80 €",
                        "en": "29,90 € / 24,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153358,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T12:14:42.633981Z",
                    "last_modified_time": "2024-12-10T12:14:42.634003Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761632.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153358/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-10T12:14:42.608019Z",
            "last_modified_time": "2025-01-17T09:14:47.910178Z",
            "date_published": null,
            "start_time": "2025-02-15T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Stella Polariksen taitavat improvisoijat luovat ennennäkemättömän ja ainutlaatuisen musikaalin yleisön silmien edessä!",
                "sv": "Stella Polaris skickliga improvisatörer skapar en originell musikal utan like framför ögonen på publiken!",
                "en": "The talented improvisers of Stella Polaris create unprecedented and unique musicals right in front of their audience!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9B337B5F096F1FC8C6CED7A783D358B2/Stella_Polaris_Prima_vista_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9B337B5F096F1FC8C6CED7A783D358B2/Stella_Polaris_Prima_vista_",
                "en": "http://www.kanneltalo.fi/en/events/event/9B337B5F096F1FC8C6CED7A783D358B2/Stella_Polaris_Prima_vista_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Stella Polaris: Prima vista – improvisoitu musikaaliesitys",
                "sv": "Stella Polaris: Prima vista – improviserad musikalföreställning",
                "en": "Stella Polaris: Prima vista – an improvised musical performance"
            },
            "description": {
                "fi": "<p>Stella Polariksen taitavat improvisoijat luovat ennennäkemättömän ja ainutlaatuisen musikaalin yleisön silmien edessä!</p><p>Esitykset ovat täynnä hauskoja hahmoja, upeita tanssinumeroita sekä lauluja ja tarinoita, joiden aiheina vilisee elämän koko kirjo.<br> <br>Jokainen musikaali-ilta on ensi-ilta, joka syntyy yhdessä yleisön kanssa, ja joka ei tule koskaan enää toistumaan täsmälleen samanlaisena.<br> <br>Tule luomaan kanssamme uusi musikaalihitti — vain 6000 kilometrin päässä Broadwaysta!</p><p>Kesto: 2 tuntia, sisältäen väliajan.<br>Ikäsuositus: 13+</p><p><b>Työryhmä</b><br>Näyttelijät: Sari Siikander, Tiina Pirhonen, Ushma Olava, Elina Stirkkinen<br>Muusikot: Hannu Risku ja Topi Korhonen<br>Valot: Jyri Suominen</p>",
                "sv": "<p>Stella Polaris skickliga improvisatörer skapar en originell musikal utan like framför ögonen på publiken!</p><p>Föreställningarna är fulla av skojiga figurer, fantastiska dansnummer och sånger och berättelser, vars ämnen vimlar av livet i all dess brokiga mångfald.<br> <br>Varje musikalkväll är en premiär, som skapas i samarbete med publiken, och som aldrig mer kommer att upprepas i precis samma form.<br> <br>Kom och skapa en ny musikalhit med oss – bara 6 000 kilometer från Broadway!</p><p>I rollerna<br>De som uppträder varierar mellan föreställningarna.</p><p>Längd: 2 timmar, inklusive en paus.<br>Åldersrekommendation: 13+</p><p>I rollerna  Sari Siikander, Tiina Pirhonen, Ushma Olava, Elina Stirkkinen<br>Musiker: Hannu Risku ja Topi Korhonen<br>Ljusdesign: Jyri Suominen</p>",
                "en": "<p>The talented improvisers of Stella Polaris create unprecedented and unique musicals right in front of their audience!</p><p>The performances are full of funny characters, fantastic dance numbers, songs and stories about the full spectrum of life.<br> <br>Every night of this musical is a premiere, created together with the audience, and will never be exactly the same again.<br> <br>Join us to create a new hit musical – just 6000 kilometres away from Broadway!</p><p>Performers<br>The performers change between shows.</p><p>Duration:  2 hours, including an intermission.<br>Age recommendation: 13+</p><p>Performers Sari Siikander, Tiina Pirhonen, Ushma Olava, Elina Stirkkinen<br>Musicians: Hannu Risku ja Topi Korhonen<br>Lighting design: Jyri Suominen</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64913/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64912",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/stella-polaris-kanneltalo-kanneltalo-19431041/",
                        "sv": "https://www.lippu.fi/event/stella-polaris-kanneltalo-kanneltalo-19431041/",
                        "en": "https://www.lippu.fi/event/stella-polaris-kanneltalo-kanneltalo-19431041/"
                    },
                    "price": {
                        "fi": "16,30 €",
                        "sv": "16,30 €",
                        "en": "16,30 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153357,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T12:14:42.415717Z",
                    "last_modified_time": "2024-12-10T12:14:42.415736Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761631.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153357/?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-12-10T12:14:42.388539Z",
            "last_modified_time": "2025-01-17T09:14:47.711068Z",
            "date_published": null,
            "start_time": "2025-02-15T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Stella Polariksen improvisoidussa koko perheen näytelmässä lapset saavat vaikuttaa esityksen kulkuun – millainen tarina tehdään ja ketkä siinä seikkailevat.",
                "sv": "I Stella Polaris improviserade pjäs för hela familjen får barnen påverka föreställningens förlopp; den historia man gör och vem som är med om äventyr i den.",
                "en": "In Stella Polaris’ improvised play for the whole family, children can influence the course of the performance; how the story unfolds and who the characters are."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7585ADE4D2217C939E079774307B8D10/Stella_Polaris_Maaginen_matka_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7585ADE4D2217C939E079774307B8D10/Stella_Polaris_En_magisk_resa",
                "en": "http://www.kanneltalo.fi/en/events/event/7585ADE4D2217C939E079774307B8D10/Stella_Polaris_A_magical_journey"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Stella Polaris: Maaginen matka – koko perheen improvisoitu seikkailu",
                "sv": "Stella Polaris: En magisk resa – improviserat äventyr för hela familjen",
                "en": "Stella Polaris: A magical journey – an improvised adventure for the whole family"
            },
            "description": {
                "fi": "<p>Stella Polariksen improvisoidussa koko perheen näytelmässä lapset saavat vaikuttaa esityksen kulkuun – millainen tarina tehdään ja ketkä siinä seikkailevat.</p><p>Improvisoidussa näytelmässä ei ole käsikirjoitusta, vaan näyttelijät, muusikko ja valosuunnittelija improvisoivat kaiken lapsilta saatujen ehdotusten pohjalta. Tulkaa viihtymään kanssamme ja ihmettelemään, kuinka lukuisat roolihahmot, laulut, tarinat ja lopulta kokonainen näytelmä syntyy yleisön silmien edessä. Taitavat improvisoijat venyvät mitä yllätyksellisimpiin tilanteisiin ja varmaa on, ettei naurun pyrskähdyksiltä ja pähkähulluilta käänteiltä vältytä.</p><p>Kesto: noin 45 min.<br>Ikäsuositus: 6+</p><p><b>Työryhmä:</b><br>Näyttelijät: Mikael Rejström, Teijo Eloranta, Antti Laukkarinen<br>Muusikko: Iiro Ollila<br>Valot: Jyri Suominen</p>",
                "sv": "<p>I Stella Polaris improviserade pjäs för hela familjen får barnen påverka föreställningens förlopp; den historia man gör och vem som är med om äventyr i den.</p><p>Det finns inget manus i föreställningen, utan skådespelarna, musikern och ljusdesignern improviserar allt utgående från förslag som de får av barnen. Kom och trivs med oss och förundras över hur talrika rollfigurer, låtar, berättelser och till slut ett helt skådespel uppstår framför publikens ögon. De skickliga improvisatörerna klarar av de mest överraskande situationerna, och det är säkert att vi får skratta högt och se vettlösa vändningar.</p><p>Längd: cirka 45 min.<br>Åldersrekommendation: 6+</p><p><b>Arbetsgrup:</b><br>I rollerna: Mikael Rejström, Teijo Eloranta, Antti Laukkarinen<br>musiker: Iiro Ollila<br>ljusdesign: Jyri Suominen</p>",
                "en": "<p>In Stella Polaris’ improvised play for the whole family, children can influence the course of the performance; how the story unfolds and who the characters are.</p><p>The improvised performance has no script: the actors, musician and lighting designer improvise everything based on suggestions from the children. Come have fun with us and witness how numerous roles, songs, stories and, ultimately, the entire play are created right in front of the audience. The skilled improvisers can adapt to the most surprising situations, and what’s certain is there will be no shortage of laughs and crazy twists.</p><p>Duration: approx. 45 min<br>Age recommendation: 6+</p><p>Performers Mikael Rejström, Teijo Eloranta, Antti Laukkarinen<br>Musician: Iiro Ollila<br>Lighting design: Jyri Suominen</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64912/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64593",
            "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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/19161234",
                        "en": "https://www.lippu.fi/event/19161234"
                    },
                    "price": {
                        "fi": "38 €",
                        "en": "38 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152603,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-25T09:15:14.983859Z",
                    "last_modified_time": "2024-09-25T09:15:14.983875Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758277.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152603/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-25T09:15:14.922929Z",
            "last_modified_time": "2025-01-16T15:15:16.506261Z",
            "date_published": null,
            "start_time": "2025-01-23T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Italialaisartisti Alessandro Cortini Suomeen tammikuussa"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7A03A9606B4F82116977488EC27C7D07/Alessandro_Cortini_IT_",
                "en": "http://www.savoyteatteri.fi/en/events/event/7A03A9606B4F82116977488EC27C7D07/Alessandro_Cortini_IT_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Alessandro Cortini (IT) – + Meriheini Luoto",
                "en": "Alessandro Cortini (IT) – + Meriheini Luoto"
            },
            "description": {
                "fi": "<p>Italialaisartisti Alessandro Cortini Suomeen tammikuussa</p><p>Elektronisen musiikin edelläkävijä Alessandro Cortini saapuu Suomeen ensi talvena. Arvostettu säveltäjä-tuottaja konsertoi Helsingin Savoy-teatterissa torstaina 23. tammikuuta. <br> <br>Elokuvallisen ja tummasävyisen ambientin värittämällä musiikillaan laajaa kansainvälistä suosiota nauttivan Alessandro Cortini on yli vuosikymmenen kestäneen uransa aikana julkaissut kahdeksan sooloalbumia. Viimeisin studioalbumi, vuonna 2021 ilmestynyt ”SCURO CHIARO” keräsi ylistäviä arvioita yllättävästä ja samalla hypnoottiseksi luonnehditusta soundimaailmastaan. Tuottelias artisti on tehnyt vuosien saatossa yhteistyötä mm. Depeche Moden, Mogwain, Lawrence Englishin ja Ladytronin kanssa ja hänen musiikkiaan on kuultu muun muassa huippusuositussa tv-sarjassa The Bear lukuisten muiden sarjojen, dokumenttien ja elokuvien sekä pelien lisäksi. Ahkerasti kautta maailman konsertoivan Cortinin säveltaidetta on nautittu myös Alexander McQueenin, Diorin ja Fendin muotinäytöksissä. Cortinin kymmenes studioalbumi ”NATI INFINITI” ilmestyy 4. lokakuuta Mute-levymerkillä.<br> <br>Illan aikataulu:<br>18:30–19:10 Meriheini Luoto<br>19:10–19:30 Väliaika<br>19:30–20:15 Alessandro Cortini</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>https://cortini.bandcamp.com/<br>https://open.spotify.com/artist/6cGVZq9WhCCRkTnn4cJYOg</p>",
                "en": "<p>Alessandro Cortini is an Italian talent whose solo instrumental production consists of dark ambient and smoky rhythmic compositions, blending hypnotic melodies. Best known as a longtime member of Nine Inch Nails, Cortini has dabbled in various musical realms, but recently, the composer-producer has been exploring cinematic synth music.</p><p>Evening schedule:<br>18:30-19:10 Meriheini Luoto<br>19:10-19:30 Intermission<br>19:30-20:15 Alessandro Cortini</p>"
            },
            "provider": {
                "fi": "Fullsteam Agency",
                "en": "Fullsteam Agency"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64593/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65370",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@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/pikku-papun-orkesteri-umo-helsinki-jazz-orchestra-vuotalo-19566925/",
                        "sv": "https://www.lippu.fi/event/pikku-papun-orkesteri-umo-helsinki-jazz-orchestra-vuotalo-19566925/",
                        "en": "https://www.lippu.fi/event/pikku-papun-orkesteri-umo-helsinki-jazz-orchestra-vuotalo-19566925/"
                    },
                    "price": {
                        "fi": "Lapset 7 €, aikuiset 16 € + tilausmaksu",
                        "sv": "Lapset 7 €, aikuiset 16 € + tilausmaksu",
                        "en": "Lapset 7 €, aikuiset 16 € + tilausmaksu"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153646,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-02T10:14:27.030034Z",
                    "last_modified_time": "2025-01-02T10:14:27.030050Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761792.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153646/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-02T10:14:27.004426Z",
            "last_modified_time": "2025-01-16T14:15:39.257573Z",
            "date_published": null,
            "start_time": "2025-05-15T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Pikku Papun Orkesterin ja UMO Helsinki Jazz Orchestran yhteiskonsertti kuullaan toukokuussa Lastenkulttuurin juhlaviikolla Vuotalossa!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F92D7E4F19CE46B6DB1AB18837C4DB75/LOPPUUNMYYTY_Pikku_Papun_Orkesteri_UMO_Helsinki_Jazz_Orchestra",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/F92D7E4F19CE46B6DB1AB18837C4DB75/SLUTSALD_Pikku_Papun_Orkesteri_UMO_Helsinki_Jazz_Orchestra",
                "en": "http://www.vuotalo.fi/en/events/event/F92D7E4F19CE46B6DB1AB18837C4DB75/SOLD_OUT_Pikku_Papun_Orkesteri_UMO_Helsinki_Jazz_Orchestra"
            },
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Pikku Papun Orkesteri & UMO Helsinki Jazz Orchestra",
                "sv": "SLUTSÅLD Pikku Papun Orkesteri & UMO Helsinki Jazz Orchestra",
                "en": "SOLD OUT Pikku Papun Orkesteri & UMO Helsinki Jazz Orchestra"
            },
            "description": {
                "fi": "<p>Pikku Papun Orkesterin ja UMO Helsinki Jazz Orchestran yhteiskonsertti kuullaan toukokuussa Lastenkulttuurin juhlaviikolla Vuotalossa!</p><p>Luvassa on iiiiiiiso koko perheen lastenmusiikkikonsertti, joka yhdistelee taidokkaasti eri musiikkigenrejä tarjoten elämyksiä niin lapsille kuin aikuisillekin. Pikku Papun supersuositut hitit kuullaan tuttuina mutta uudenlaisina versioina sovitettuna isolle, yli 20-henkiselle kokoonpanolle.</p><p>Konsertissa riittää kiinnostavaa kuunneltavaa ja katseltavaa, kun orkesterissa soivat trumpetit, pasuunat ja saksofonit, ja rytmiä ryhdittävät piano, basso, kitara ja rummut. Perheen pienimmätkin pääsevät mukaan lauluihin ja leikkeihin. Myös riemunkiljahtelu ja tanssiminen on sallittua – jopa toivottavaa!</p><p>Monipuolisesti ja lapsiystävällisesti ison jazzorkesterin soundia esittelevistä sovituksista vastaa Mikko Hassinen, joka toimii myös konsertin kapellimestarina.</p><p>Huom! Puhallinorkesterimme sointi on välillä äänekäs. Etenkin pienimpien konserttikävijöiden kanssa suosittelemme varautumaan koviin äänenvoimakkuuksiin.</p><p>Konsertin kesto n. 40 min.</p><p><b>Pikku Papun Orkesteri</b><br>Heli Kajo, laulu<br>Maiju Kopra, laulu, ksylofoni <br>Juho Puronaho, kitara, viulu, mandola <br>Tarmo Anttila, kontrabasso<br>UMO Helsinki Jazz Orchestra<br>Mikko Hassinen, kapellimestari ja sovitukset</p><p>Jokavuotinen Lastenkulttuurin juhlaviikko levittäytyy kaikkialle Suomeen aina toukokuussa. Juhlaviikkoa vietetään taas 12.–18.5.2025. Viikon aikana juhlitaan lastenkulttuuria ja nautitaan runsaasta lastenkulttuurin ohjelmasta ympäri Suomea. www.lastenkulttuurinjuhlaviikko.fi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65370/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64743",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/ilkka-rantamaeki-60s-british-blues-night-john-mayall-special-malmitalo-19422558/",
                        "sv": "https://www.lippu.fi/event/ilkka-rantamaeki-60s-british-blues-night-john-mayall-special-malmitalo-19422558/",
                        "en": "https://www.lippu.fi/event/ilkka-rantamaeki-60s-british-blues-night-john-mayall-special-malmitalo-19422558/"
                    },
                    "price": {
                        "fi": "22,80 € / 18,10 €",
                        "sv": "22,80 € / 18,10 €",
                        "en": "22,80 € / 18,10 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153391,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-12T09:14:25.788295Z",
                    "last_modified_time": "2024-12-12T09:14:25.788314Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759645.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153391/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-12T09:14:25.753443Z",
            "last_modified_time": "2025-01-16T13:15:16.584241Z",
            "date_published": null,
            "start_time": "2025-02-08T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ilkka Rantamäki $ The Bluesbrokers vie kuulijansa 60-luvun lopun sumuisen Lontoon psykedeelisille klubeille!",
                "sv": "Ilkka Rantamäki $ The Bluesbrokers tar sina åhörare till det dimmiga Londons psykedeliska klubbar i mitten av 60-talet!",
                "en": "Ilkka Rantamäki & The Bluesbrokers transport their audience to the psychedelic clubs of foggy late-1960s London!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/11F935E451857A94917F31EB26B9B822/60_s_British_Blues_Night_John_Mayall_Special",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/11F935E451857A94917F31EB26B9B822/60_s_British_Blues_Night_John_Mayall_Special",
                "en": "http://www.malmitalo.fi/en/events/event/11F935E451857A94917F31EB26B9B822/60_s_British_Blues_Night_John_Mayall_Special"
            },
            "location_extra_info": null,
            "name": {
                "fi": "60's British Blues Night: John Mayall Special – Ilkka Rantamäki $ The Bluesbrokers",
                "sv": "60's British Blues Night: John Mayall Special – Ilkka Rantamäki $ The Bluesbrokers",
                "en": "60's British Blues Night: John Mayall Special – Ilkka Rantamäki $ The Bluesbrokers"
            },
            "description": {
                "fi": "<p>Ilkka Rantamäki $ The Bluesbrokers vie kuulijansa 60-luvun lopun sumuisen Lontoon psykedeelisille klubeille!</p><p>Yhtye kuljettaa autenttisella soundilla ja otteella aikakauden ikoniset brittiblues-yhtyeet kuten John Mayall’s Bluesbreakers, Peter Green’s Fleetwood Mac ja Juicy Lucy tuotannon Malmitalon lavalle.</p><p>Konsertin ensimmäinen puolisko koostuu John Mayallin kolmelta levyltä With Eric Clapton, Crusade ja Hard Road ja toinen puolisko laajemmin 60-luvun brittiblues-klassikoista.</p><p><b>Kokoonpano:</b><br>Ilkka Rantamäki: kitara, lap-steel, laulu<br>Hannu Sorsa: urku, piano, laulu<br>Harri Vainikka: basso, laulu<br>Erik Nickull: rummut, laulu</p><p>Kesto: 2 tuntia, sisältää 20 min väliajan.</p>",
                "sv": "<p>Ilkka Rantamäki $ The Bluesbrokers tar sina åhörare till det dimmiga Londons psykedeliska klubbar i mitten av 60-talet!</p><p>Med sitt autentiska sound och grepp hämtar bandet tidsperiodens produktion av ikoniska brittiska bluesband, såsom John Mayall’s Bluesbreakers, Peter Green’s Fleetwood Mac och Juicy Lucy till scenen i Malms kulturhus.</p><p>Den första hälften av konserten består av låtar från John Mayalls tre album With Eric Clapton, Crusade och Hard Road, och den andra hälften mer omfattande av brittiska bluesklassiker från 60-talet.</p><p><b>Ensemble</b><br>Ilkka Rantamäki: gitarr, lap-steel, sång<br>Hannu Sorsa: orgel, piano, sång<br>Harri Vainikka: bas, sång<br>Erik Nickull: trummor, sång</p><p>Längd: 1 h 30 min., inklusive en paus på 20 minuter</p>",
                "en": "<p>Ilkka Rantamäki & The Bluesbrokers transport their audience to the psychedelic clubs of foggy late-1960s London!</p><p>With their authentic sound and style, the band brings the music of iconic British blues bands of the era – such as John Mayall’s Bluesbreakers, Peter Green’s Fleetwood Mac and Juicy Lucy – to the Malmitalo stage.</p><p>The first half of the concert will consist of John Mayall’s three albums – Blues Breakers with Eric Clapton, Crusade and Hard Road – and the second half of a broader selection of '60s British blues classics.</p><p><b>Ensemble:</b><br>Ilkka Rantamäki: guitar, lap-steel, vocals<br>Hannu Sorsa: organ, piano, vocals<br>Harri Vainikka: bass, vocals<br>Erik Nickull: drums, vocals</p><p>Duration: 1 h 30 min, includes 20 min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64743/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65460",
            "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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 154892,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-16T09:15:15.381407Z",
                    "last_modified_time": "2025-01-16T09:15:15.381425Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764815.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/154892/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-16T09:15:15.352975Z",
            "last_modified_time": "2025-01-16T09:15:15.460681Z",
            "date_published": null,
            "start_time": "2025-05-03T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.",
                "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B76419C7743B6D198FAEC891F4C714C3/Lasten_inklusiivinen_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/B76419C7743B6D198FAEC891F4C714C3/Inkluderande_danslektion_for_barn_",
                "en": "http://www.annantalo.fi/en/events/event/B76419C7743B6D198FAEC891F4C714C3/Children_s_Inclusive_Dance_Class_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lasten inklusiivinen tanssitunti",
                "sv": "Inkluderande danslektion för barn",
                "en": "Children’s Inclusive Dance Class"
            },
            "description": {
                "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen. <br> <br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä)  <br>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi  <br>www.kaaoscompany.fi</p>",
                "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme.</p><p>Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning. <br> <br>Antal deltagare: max 18 (barn och vuxna tillsammans) <br>Anmäl dig på förhand via e-post: info@kaaoscompany.fi <br>Lokal: Dansklassrummet <br>Undervisningsspråk: Finska, engelska</p>",
                "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability. The lesson lasts one hour.</p><p>The space is accessible. The lessons are free.</p><p>Number of participants: max 18 (children and adults together)</p><p>Enrolment: info@kaaoscompany.fi  <br>www.kaaoscompany.fi  <br> <br>Class: Danceclass <br>Language: Finnish/english</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65460/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65458",
            "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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 154890,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-16T09:15:11.004754Z",
                    "last_modified_time": "2025-01-16T09:15:11.004771Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764811.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/154890/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-16T09:15:10.973766Z",
            "last_modified_time": "2025-01-16T09:15:11.072257Z",
            "date_published": null,
            "start_time": "2025-04-05T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.",
                "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2886114EA0AF623DD20960CE189DA399/Lasten_inklusiivinen_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/2886114EA0AF623DD20960CE189DA399/Inkluderande_danslektion_for_barn_",
                "en": "http://www.annantalo.fi/en/events/event/2886114EA0AF623DD20960CE189DA399/Children_s_Inclusive_Dance_Class_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lasten inklusiivinen tanssitunti",
                "sv": "Inkluderande danslektion för barn",
                "en": "Children’s Inclusive Dance Class"
            },
            "description": {
                "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen. <br> <br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä)  <br>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi  <br>www.kaaoscompany.fi</p>",
                "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme.</p><p>Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning. <br> <br>Antal deltagare: max 18 (barn och vuxna tillsammans) <br>Anmäl dig på förhand via e-post: info@kaaoscompany.fi <br>Lokal: Dansklassrummet <br>Undervisningsspråk: Finska, engelska</p>",
                "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability. The lesson lasts one hour.</p><p>The space is accessible. The lessons are free.</p><p>Number of participants: max 18 (children and adults together)</p><p>Enrolment: info@kaaoscompany.fi  <br>www.kaaoscompany.fi  <br> <br>Class: Danceclass <br>Language: Finnish/english</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65458/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65457",
            "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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 154889,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-16T09:15:06.013725Z",
                    "last_modified_time": "2025-01-16T09:15:06.013744Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764809.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/154889/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-16T09:15:05.973448Z",
            "last_modified_time": "2025-01-16T09:15:06.087503Z",
            "date_published": null,
            "start_time": "2025-03-08T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.",
                "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9D826BACA5E5077952E9E581E66F2C1D/Lasten_inklusiivinen_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9D826BACA5E5077952E9E581E66F2C1D/Inkluderande_danslektion_for_barn_",
                "en": "http://www.annantalo.fi/en/events/event/9D826BACA5E5077952E9E581E66F2C1D/Children_s_Inclusive_Dance_Class_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lasten inklusiivinen tanssitunti",
                "sv": "Inkluderande danslektion för barn",
                "en": "Children’s Inclusive Dance Class"
            },
            "description": {
                "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen. <br> <br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä)  <br>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi  <br>www.kaaoscompany.fi</p>",
                "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme.</p><p>Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning. <br> <br>Antal deltagare: max 18 (barn och vuxna tillsammans) <br>Anmäl dig på förhand via e-post: info@kaaoscompany.fi <br>Lokal: Dansklassrummet <br>Undervisningsspråk: Finska, engelska</p>",
                "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability. The lesson lasts one hour.</p><p>The space is accessible. The lessons are free.</p><p>Number of participants: max 18 (children and adults together)</p><p>Enrolment: info@kaaoscompany.fi  <br>www.kaaoscompany.fi  <br> <br>Class: Danceclass <br>Language: Finnish/english</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65457/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65456",
            "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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 154888,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-16T09:15:02.523656Z",
                    "last_modified_time": "2025-01-16T09:15:02.523676Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764807.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/154888/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-16T09:15:02.489138Z",
            "last_modified_time": "2025-01-16T09:15:02.588262Z",
            "date_published": null,
            "start_time": "2025-02-22T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.",
                "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0A3BD8E1BB7517341FFC44C67C7E799E/Lasten_inklusiivinen_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0A3BD8E1BB7517341FFC44C67C7E799E/Inkluderande_danslektion_for_barn_",
                "en": "http://www.annantalo.fi/en/events/event/0A3BD8E1BB7517341FFC44C67C7E799E/Children_s_Inclusive_Dance_Class_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lasten inklusiivinen tanssitunti",
                "sv": "Inkluderande danslektion för barn",
                "en": "Children’s Inclusive Dance Class"
            },
            "description": {
                "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen. <br> <br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä)  <br>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi  <br>www.kaaoscompany.fi</p>",
                "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme.</p><p>Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning. <br> <br>Antal deltagare: max 18 (barn och vuxna tillsammans) <br>Anmäl dig på förhand via e-post: info@kaaoscompany.fi <br>Lokal: Dansklassrummet <br>Undervisningsspråk: Finska, engelska</p>",
                "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability. The lesson lasts one hour.</p><p>The space is accessible. The lessons are free.</p><p>Number of participants: max 18 (children and adults together)</p><p>Enrolment: info@kaaoscompany.fi  <br>www.kaaoscompany.fi  <br> <br>Class: Danceclass <br>Language: Finnish/english</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65456/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65454",
            "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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 154885,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-16T09:14:54.028494Z",
                    "last_modified_time": "2025-01-16T09:14:54.028521Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764803.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/154885/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-16T09:14:53.978874Z",
            "last_modified_time": "2025-01-16T09:14:54.126069Z",
            "date_published": null,
            "start_time": "2025-01-25T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.",
                "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E9845EA1782BA8531983BC3CB310E877/Lasten_inklusiivinen_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/E9845EA1782BA8531983BC3CB310E877/Inkluderande_danslektion_for_barn_",
                "en": "http://www.annantalo.fi/en/events/event/E9845EA1782BA8531983BC3CB310E877/Children_s_Inclusive_Dance_Class_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lasten inklusiivinen tanssitunti",
                "sv": "Inkluderande danslektion för barn",
                "en": "Children’s Inclusive Dance Class"
            },
            "description": {
                "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen. <br> <br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä)  <br>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi  <br>www.kaaoscompany.fi</p>",
                "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme.</p><p>Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning. <br> <br>Antal deltagare: max 18 (barn och vuxna tillsammans) <br>Anmäl dig på förhand via e-post: info@kaaoscompany.fi <br>Lokal: Dansklassrummet <br>Undervisningsspråk: Finska, engelska</p>",
                "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability. The lesson lasts one hour.</p><p>The space is accessible. The lessons are free.</p><p>Number of participants: max 18 (children and adults together)</p><p>Enrolment: info@kaaoscompany.fi  <br>www.kaaoscompany.fi  <br> <br>Class: Danceclass <br>Language: Finnish/english</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65454/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64823",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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/malmitalo/attitude-esittaeae-kolmen-tanssiteoksen-yhteisilta-3764226/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/attitude-esittaeae-kolmen-tanssiteoksen-yhteisilta-3764226/",
                        "en": "https://www.lippu.fi/artist/malmitalo/attitude-esittaeae-kolmen-tanssiteoksen-yhteisilta-3764226/"
                    },
                    "price": {
                        "fi": "22,80 € / 14,80 €",
                        "sv": "22,80 € / 14,80 €",
                        "en": "22,80 € / 14,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153393,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-12T09:14:26.264638Z",
                    "last_modified_time": "2024-12-12T09:14:26.264656Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760319.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153393/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-12T09:14:26.237598Z",
            "last_modified_time": "2025-01-15T15:15:07.766428Z",
            "date_published": null,
            "start_time": "2025-02-11T17:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tanssikoulu Attitude esittää Malmitalossa mm. Liisa ihmemaassa-balettisadun. Lisäksi nähdään teokset ”The Balloon” ja ”Become a Light”.",
                "sv": "Dansskolan Attitude framför bland annat balettsagan Alice i underlandet i Malms kulturhus. Dessutom får vi se verken “The Balloon” och “Become a light”.",
                "en": "Dance school Attitude Helsinki performs at Malmitalo, including an Alice in Wonderland ballet fairy tale. We’ll also see the works “The Balloon” and “Become a Light”."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8D82E87278356EE771B487A14B5F2C9F/Attitude_esittaa_kolmen_tanssiteoksen_yhteisilta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8D82E87278356EE771B487A14B5F2C9F/Attitude_presenterar_gemensam_kvall_for_tre_dansverk",
                "en": "http://www.malmitalo.fi/en/events/event/8D82E87278356EE771B487A14B5F2C9F/Attitude_presents_a_joint_evening_of_three_dance_works"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Attitude esittää: kolmen tanssiteoksen yhteisilta",
                "sv": "Attitude presenterar: gemensam kväll för tre dansverk",
                "en": "Attitude presents: a joint evening of three dance works"
            },
            "description": {
                "fi": "<p>Tanssikoulu Attitude esittää Malmitalossa mm. Liisa ihmemaassa-balettisadun. Lisäksi nähdään teokset ”The Balloon” ja ”Become a Light”.</p><p>Liisa ihmemaassa-balettisadun koreografiasta vastaa Tiia Lehtinen.<br>”The Balloon” on syntynyt monipäisen koreografijoukon yhteistyönä. <br>Kolmantena nähdään Kristina Norri Seurasen koreografioima ”Become a Light”.</p><p>Kesto: 1 tunti 20 min, sis. 20min väliajan</p>",
                "sv": "<p>Dansskolan Attitude framför bland annat balettsagan Alice i underlandet i Malms kulturhus. Dessutom får vi se verken “The Balloon” och “Become a light”.</p><p>Tiia Lehtinen svarar för koreografin i balettsagan Alice i underlandet.<br>“The Balloon” har fötts genom ett samarbete mellan en månghövdad grupp koreografer. <br>Som tredje får vi se “Become a light” med koreografi av Kristina Norri Seuranen.</p><p>Längd: 1 h 20 min., inklusive en paus på 20 minuter</p>",
                "en": "<p>Dance school Attitude Helsinki performs at Malmitalo, including an Alice in Wonderland ballet fairy tale. We’ll also see the works “The Balloon” and “Become a Light”.</p><p>Tiia Lehtinen is in charge of choreography for the Alice in Wonderland ballet fairy tale.<br>“The Balloon” is the result of collaboration between a multidisciplinary team of choreographers. <br>The third performance will be “Become a light”, choreographed by Kristina Norri Seuranen.</p><p>Duration: 1 h 20 min, incl. 20 min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64823/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64822",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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/malmitalo/attitude-esittaeae-kolmen-tanssiteoksen-yhteisilta-3764226/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/attitude-esittaeae-kolmen-tanssiteoksen-yhteisilta-3764226/",
                        "en": "https://www.lippu.fi/artist/malmitalo/attitude-esittaeae-kolmen-tanssiteoksen-yhteisilta-3764226/"
                    },
                    "price": {
                        "fi": "22,80 € / 14,80 €",
                        "sv": "22,80 € / 14,80 €",
                        "en": "22,80 € / 14,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153392,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-12T09:14:26.055055Z",
                    "last_modified_time": "2024-12-12T09:14:26.055077Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760318.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153392/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-12T09:14:26.024268Z",
            "last_modified_time": "2025-01-15T15:15:07.598824Z",
            "date_published": null,
            "start_time": "2025-02-11T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tanssikoulu Attitude esittää Malmitalossa mm. Liisa ihmemaassa-balettisadun. Lisäksi nähdään teokset ”The Balloon” ja ”Become a Light”.",
                "sv": "Dansskolan Attitude framför bland annat balettsagan Alice i underlandet i Malms kulturhus. Dessutom får vi se verken “The Balloon” och “Become a light”.",
                "en": "Dance school Attitude Helsinki performs at Malmitalo, including an Alice in Wonderland ballet fairy tale. We’ll also see the works “The Balloon” and “Become a Light”."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3D7484AE669E05EE1DE8044BE0C9F63D/Attitude_esittaa_kolmen_tanssiteoksen_yhteisilta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3D7484AE669E05EE1DE8044BE0C9F63D/Attitude_presenterar_gemensam_kvall_for_tre_dansverk",
                "en": "http://www.malmitalo.fi/en/events/event/3D7484AE669E05EE1DE8044BE0C9F63D/Attitude_presents_a_joint_evening_of_three_dance_works"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Attitude esittää: kolmen tanssiteoksen yhteisilta",
                "sv": "Attitude presenterar: gemensam kväll för tre dansverk",
                "en": "Attitude presents: a joint evening of three dance works"
            },
            "description": {
                "fi": "<p>Tanssikoulu Attitude esittää Malmitalossa mm. Liisa ihmemaassa-balettisadun. Lisäksi nähdään teokset ”The Balloon” ja ”Become a Light”.</p><p>Liisa ihmemaassa-balettisadun koreografiasta vastaa Tiia Lehtinen.<br>”The Balloon” on syntynyt monipäisen koreografijoukon yhteistyönä. <br>Kolmantena nähdään Kristina Norri Seurasen koreografioima ”Become a Light”.</p><p>Kesto: 1 tunti 20 min, sis. 20min väliajan</p>",
                "sv": "<p>Dansskolan Attitude framför bland annat balettsagan Alice i underlandet i Malms kulturhus. Dessutom får vi se verken “The Balloon” och “Become a light”.</p><p>Tiia Lehtinen svarar för koreografin i balettsagan Alice i underlandet.<br>“The Balloon” har fötts genom ett samarbete mellan en månghövdad grupp koreografer. <br>Som tredje får vi se “Become a light” med koreografi av Kristina Norri Seuranen.</p><p>Längd: 1 h 20 min., inklusive en paus på 20 minuter</p>",
                "en": "<p>Dance school Attitude Helsinki performs at Malmitalo, including an Alice in Wonderland ballet fairy tale. We’ll also see the works “The Balloon” and “Become a Light”.</p><p>Tiia Lehtinen is in charge of choreography for the Alice in Wonderland ballet fairy tale.<br>“The Balloon” is the result of collaboration between a multidisciplinary team of choreographers. <br>The third performance will be “Become a light”, choreographed by Kristina Norri Seuranen.</p><p>Duration: 1 h 20 min, incl. 20 min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64822/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}