Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 19291,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=157",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=155"
    },
    "data": [
        {
            "id": "espoo_le:agje3k2rsq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agje3k2re4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agje3k2rou/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-02T11:49:44.357675Z",
            "last_modified_time": "2024-10-02T11:49:44.357696Z",
            "date_published": null,
            "start_time": "2024-10-28T15:00:00Z",
            "end_time": "2024-10-29T17: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,
            "name": {
                "fi": "Rytmimusiikkiopisto Taukon Matineat ",
                "sv": "Rytmmusikinstitutet Tauko Matinéer",
                "en": "Rhythmic Music Institute Tauko Matinees"
            },
            "description": {
                "fi": "<p><br></p><p>Maanantaina 28.10. klo 17.00 - 19.00 instrumentteina piano, kitara, ukulele ja viulu</p><p>Tiistaina 29.10. klo 17.00 - 19.00 rumpaleita, laulajia ja bändiesityksiä</p><p>Tervetuloa mukaan nauttimaan musiikista!</p>",
                "sv": "<p>Måndag 28.10 kl. 17.00 - 19.00 med instrumenten piano, gitarr, ukulele och fiol</p><p>Tisdag 29.10 kl. 17.00 - 19.00 trummisar, sångare och bandframträdanden</p><p>Välkommen att njuta av musiken!</p>",
                "en": "<p>Monday 28.10 from 17:00 to 19:00 with instruments piano, guitar, ukulele, and violin</p><p>Tuesday 29.10 from 17:00 to 19:00 drummers, singers, and band performances</p><p>Welcome to enjoy the music!</p>"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": null,
            "short_description": {
                "fi": "Taukon oppilaiden musiikkiesityksiä",
                "sv": "Musikuppträdanden av Taukos elever",
                "en": "Musical performances by the students of Tauko"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agje3k2rsq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64606",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-perhoset-3735786/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152576,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-23T14:15:32.130138Z",
                    "last_modified_time": "2024-09-23T14:15:32.130166Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745737.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152576/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-23T14:15:32.111471Z",
            "last_modified_time": "2024-10-02T10:32:38.304097Z",
            "date_published": null,
            "start_time": "2024-10-11T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Perhoset (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Perhoset on Anna Brotkinin (Aikuiset-sarja) käsikirjoittama moderni ja äkkiväärä komedia ylisuorittavasta milleniaalityttärestä Siiristä (Aksa Korttila) ja tämän yltiöoptimistisesta isästä Petristä (Jani Volanen).</p><p>Kovan paineen alla omaa suuntaansa etsivä tytär ja todellisuutta erittäin tehokkaasti välttelevä isä kohtaavat toisensa pitkästä aikaa kesäyössä Seinäjoen Tangomarkkinoilla. Kotikaupunkiinsa palannut Siiri ei ole enää isän pieni perhonen, vaan uranainen.</p><p>Hän työskentelee äkkipikaisen elinkeinoministerin (Leea Klemola) erityisavustajana yhdessä kaikessa onnistuvan avustajakollegansa (Alex Anton) kanssa. Isä, takavuosien tangoprinssi, etsii edelleen elämänsä kiinnekohtia. Molemmilla menee lujaa, mutta eri tavoin – ja vääjäämättä päin seinää.</p><p>Yhdessä kesäviikonlopussa hommat lähtevät lapasesta. Lopulta kulissit kaatuvat tangon soidessa keskiyön auringossa.<br>Viikonlopun kujanjuoksussa karaokesta aurinkopaneelipuiston kautta broileritehtaalle kohdataan lisäksi herkkähipiäinen liittymämyyjä (Miro Lopperi), itsevaltainen autokauppias (Hannu-Pekka Björkman), hurmaavan ujo terveyskeskuslääkäri (Samuli Niittymäki) ja elämän tähtihetkiä metsästävä tangopariskunta (Jarkko Pajunen ja Katja Küttner).</p><p>Jenni Toivoniemen (Seurapeli) ohjaama Perhoset nähdään elokuvateattereissa kautta maan perjantaina 27. syyskuuta.</p><p>Ikäraja 7<br>Kesto 98 min<br>Ensi-ilta 27.9.<br>Elokuva on tekstitetty suomeksi</p>"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/10733513C2E2C4D00A761DEACFB9672D/Perhoset_7_"
            },
            "short_description": {
                "fi": "Perhoset on Anna Brotkinin (Aikuiset-sarja) käsikirjoittama moderni ja äkkiväärä komedia ylisuorittavasta milleniaalityttärestä Siiristä (Aksa Korttila) ja tämän yltiöoptimistisesta isästä Petristä (Jani Volanen)."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64606/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64605",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-perhoset-3735786/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152571,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-23T14:15:29.982928Z",
                    "last_modified_time": "2024-09-23T14:15:29.982949Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745728.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152571/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-23T14:15:29.965117Z",
            "last_modified_time": "2024-10-02T10:32:37.024028Z",
            "date_published": null,
            "start_time": "2024-10-04T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Perhoset (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Perhoset on Anna Brotkinin (Aikuiset-sarja) käsikirjoittama moderni ja äkkiväärä komedia ylisuorittavasta milleniaalityttärestä Siiristä (Aksa Korttila) ja tämän yltiöoptimistisesta isästä Petristä (Jani Volanen).</p><p>Kovan paineen alla omaa suuntaansa etsivä tytär ja todellisuutta erittäin tehokkaasti välttelevä isä kohtaavat toisensa pitkästä aikaa kesäyössä Seinäjoen Tangomarkkinoilla. Kotikaupunkiinsa palannut Siiri ei ole enää isän pieni perhonen, vaan uranainen.</p><p>Hän työskentelee äkkipikaisen elinkeinoministerin (Leea Klemola) erityisavustajana yhdessä kaikessa onnistuvan avustajakollegansa (Alex Anton) kanssa. Isä, takavuosien tangoprinssi, etsii edelleen elämänsä kiinnekohtia. Molemmilla menee lujaa, mutta eri tavoin – ja vääjäämättä päin seinää.</p><p>Yhdessä kesäviikonlopussa hommat lähtevät lapasesta. Lopulta kulissit kaatuvat tangon soidessa keskiyön auringossa.<br>Viikonlopun kujanjuoksussa karaokesta aurinkopaneelipuiston kautta broileritehtaalle kohdataan lisäksi herkkähipiäinen liittymämyyjä (Miro Lopperi), itsevaltainen autokauppias (Hannu-Pekka Björkman), hurmaavan ujo terveyskeskuslääkäri (Samuli Niittymäki) ja elämän tähtihetkiä metsästävä tangopariskunta (Jarkko Pajunen ja Katja Küttner).</p><p>Jenni Toivoniemen (Seurapeli) ohjaama Perhoset nähdään elokuvateattereissa kautta maan perjantaina 27. syyskuuta.</p><p>Ikäraja 7<br>Kesto 98 min<br>Ensi-ilta 27.9.<br>Elokuva on tekstitetty suomeksi</p>"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/13C5AB4AE87BFA2F0539C32D3945FBB2/Perhoset_7_"
            },
            "short_description": {
                "fi": "Perhoset on Anna Brotkinin (Aikuiset-sarja) käsikirjoittama moderni ja äkkiväärä komedia ylisuorittavasta milleniaalityttärestä Siiristä (Aksa Korttila) ja tämän yltiöoptimistisesta isästä Petristä (Jani Volanen)."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64605/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64604",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-perhoset-3735786/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152570,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-23T14:15:29.282745Z",
                    "last_modified_time": "2024-09-23T14:15:29.282766Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745724.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152570/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-23T14:15:29.260961Z",
            "last_modified_time": "2024-10-02T10:32:36.565668Z",
            "date_published": null,
            "start_time": "2024-10-02T12: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,
            "name": {
                "fi": "Perhoset (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Perhoset on Anna Brotkinin (Aikuiset-sarja) käsikirjoittama moderni ja äkkiväärä komedia ylisuorittavasta milleniaalityttärestä Siiristä (Aksa Korttila) ja tämän yltiöoptimistisesta isästä Petristä (Jani Volanen).</p><p>Kovan paineen alla omaa suuntaansa etsivä tytär ja todellisuutta erittäin tehokkaasti välttelevä isä kohtaavat toisensa pitkästä aikaa kesäyössä Seinäjoen Tangomarkkinoilla. Kotikaupunkiinsa palannut Siiri ei ole enää isän pieni perhonen, vaan uranainen.</p><p>Hän työskentelee äkkipikaisen elinkeinoministerin (Leea Klemola) erityisavustajana yhdessä kaikessa onnistuvan avustajakollegansa (Alex Anton) kanssa. Isä, takavuosien tangoprinssi, etsii edelleen elämänsä kiinnekohtia. Molemmilla menee lujaa, mutta eri tavoin – ja vääjäämättä päin seinää.</p><p>Yhdessä kesäviikonlopussa hommat lähtevät lapasesta. Lopulta kulissit kaatuvat tangon soidessa keskiyön auringossa.<br>Viikonlopun kujanjuoksussa karaokesta aurinkopaneelipuiston kautta broileritehtaalle kohdataan lisäksi herkkähipiäinen liittymämyyjä (Miro Lopperi), itsevaltainen autokauppias (Hannu-Pekka Björkman), hurmaavan ujo terveyskeskuslääkäri (Samuli Niittymäki) ja elämän tähtihetkiä metsästävä tangopariskunta (Jarkko Pajunen ja Katja Küttner).</p><p>Jenni Toivoniemen (Seurapeli) ohjaama Perhoset nähdään elokuvateattereissa kautta maan perjantaina 27. syyskuuta.</p><p>Ikäraja 7<br>Kesto 98 min<br>Ensi-ilta 27.9.<br>Elokuva on tekstitetty suomeksi</p>"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/32E435241E2C7933A0A36039DBF4D5D1/Perhoset_7_"
            },
            "short_description": {
                "fi": "Perhoset on Anna Brotkinin (Aikuiset-sarja) käsikirjoittama moderni ja äkkiväärä komedia ylisuorittavasta milleniaalityttärestä Siiristä (Aksa Korttila) ja tämän yltiöoptimistisesta isästä Petristä (Jani Volanen)."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64604/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64312",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/global-club-nights-kulttuurikeskus-caisa-18805295/",
                        "sv": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805295/",
                        "en": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805295/"
                    },
                    "description": null,
                    "price": {
                        "fi": "11 € / 6 €",
                        "sv": "11 € / 6 €",
                        "en": "11 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151961,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T09:13:56.677326Z",
                    "last_modified_time": "2024-07-30T09:13:56.677340Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753180.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151961/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-30T09:13:56.658885Z",
            "last_modified_time": "2024-10-02T10:17:04.627087Z",
            "date_published": null,
            "start_time": "2024-10-18T16: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,
            "name": {
                "fi": "The Song of Steppes | Bronze Silver and Brass – Global Club Nights",
                "sv": "The Song of Steppes | Bronze Silver and Brass – Global Club Nights",
                "en": "The Song of Steppes | Bronze Silver and Brass – Global Club Nights"
            },
            "description": {
                "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p><b>The Song of Steppes</b> on omia ja perinteisiä sävellyksiä sekoittava konsertti, jossa soivat sähköpiano, basso, kitara ja shan-kobyz (munniharppu). Musiikkisävellykset ovat saaneet inspiraationsa kazakstanilaisesta kansanmusiikista ja nykymusiikista. Konsertin päätavoitteena on tuoda Keski-Aasian, erityisesti Kazakstanin, musiikkia ja taidetta suomalaisen ja kansainvälisen yleisön ulottuville.</p><p>Säveltäjä ja laulaja Aizhan Sultan tutustuttaa suomalaista yleisöä kazakstanilaisten taiteeseen ja historiaan. Teos kertoo rakkaudesta ja tuskasta, huolesta ja kaipuusta kotimaahan. Se käsittelee myös vaikean historian voittamista ja oman identiteetin kehittämistä siitä huolimatta, että tuntee olevansa juureton ja kaukana kotoa.</p><p>Aizhan Sultan – laulu, shan-kobyz<br>Marko Annala – basso<br>Victoria Sergeenko – piano</p><p><b>Bronze Silver & Brass</b> on uusi kahdeksanhenkinen puhallinorkesteri, joka on saanut vaikutteita muun muassa Kashmere Stage Bandin, Young Blood Brass Bandin ja Hypnotic Brass Ensemblen kaltaisilta yhtyeiltä. Lämpimän soulin, jazzin, hiphopin ja afrobeatin rytmejä yhdistelevät kappaleet ovat keulakuva Joose Kyyrön säveltämiä. Joose tunnetaan useista soul- ja funk-yhtyeistä, joita ovat muun muassa The Funky Sound Foundation, Emilia Sisco ja Frankosun & The Family. Timmion Records julkaisee bändin ensimmäisen 7-tuumaisen singlen kesällä 2024.</p><p>Bändin kokoonpano:<br>Joose Kyyrö – saksofonit<br>Eero Savela – trumpetti<br>Joona Kilponen – trumpetti<br>Jay Kortehisto – pasuuna<br>Erno Haukkala – pasuuna<br>Jussi Nykänen – kitara<br>Kenneth Ojutkangas – sousafoni<br>Elias Ojutkangas – rummut</p><p>Kesto: 3,5 h <br>Kieli: englanti, suomi, portugali, espanja</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa.</p><p>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista täältä: <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">Helsinki Missio – Kulttuurikaveri</a></u></p><p>Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.</p><p><b>The Song of Steppes</b> är en blandning av originell och traditionell komposition inbäddad i en konsert med instrumenten elektroniskt piano, basgitarr, gitarr och shan-qobyz (munharpa). Musikkompositionerna är inspirerade av kazakstansk folkmusik och samtida musik. Konsertens huvudsakliga mål är att presentera och göra centralasiatisk, och i synnerhet kazakstansk, musik och konst tillgänglig för såväl den finska som den internationella publiken.</p><p>Författaren Aizhan Sultan berättar och ger den finska publiken möjlighet att upptäcka mer av det kazakstanska folkets historia och konst. Projektet handlar om kärlek och smärta, oro och längtan efter fosterlandet. Det handlar även om att övervinna en smärtsam historia och att utveckla en identitet, trots en upplevd känsla av rotlöshet och ett långt avstånd hemifrån.</p><p>Aizhan Sultan – sång, shan-qobyz<br>Marko Annala – basgitarr<br>Victoria Sergeenko – piano</p><p><b>Bronze Silver & Brass</b> är ett nytt brass-band med åtta medlemmar som influerats av grupper som Kashmere Stage Band, Young Blood Brass Band och Hypnotic Brass Ensemble. Sångerna väver samman varm soul, jazz, hip-hop och afrobeat-rytmer komponerade av frontmannen Joose Kyrrö. Joose är känd från flera soul- och funk-band som The Funky Sound Foundation, Emilia Sisco och Frankosun & The Family. Bandets första singel 7\" släpps på Timmion Records sommaren 2024.</p><p>Bandmedlemmar:<br>Joose Kyyrö – saxofon<br>Eero Savela – trumpet<br>Joona Kilponen – trumpet<br>Jay Kortehisto – trombon<br>Erno Haukkala – trombon<br>Jussi Nykänen – gitarr<br>Kenneth Ojutkangas – sousafon<br>Elias Ojutkangas – trummor</p><p>Längd: 3,5 h <br>Språk: Engelska, finska, portugisiska och spanska</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper. Global Club Nights (GCN) anordnas i samarbete med Globala musikinstitutionen vid Sibeliusakademin och Kulturcentret Caisa.</p>",
                "en": "<p>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment.</p><p><b>The Song of Steppes</b> is a mix between original and traditional composition embedded in a concert featuring electronic piano, bass, guitar and shan-qobyz (jaw harp). The musical compositions derive their inspiration from Kazakh folk and contemporary music. The main goal of this concert is to represent and make accessible Central Asian, in particular Kazakh, music and art to a Finnish and international audience. The author Aizhan Sultan is telling and giving the Finnish audience the opportunity to discover more the art and history of the Kazakhs. This project is about love and pain, worry and longing for one’s native land. It’s also to overcome a harsh history, to develop an identity despite feeling unrooted and far from home.</p><p>Aizhan Sultan – vocal, shan-qobyz<br>Marko Annala – bass<br>Victoria Sergeenko – piano</p><p><b>Bronze Silver & Brass</b> is a new eight-piece brass band. which has absorbed influences from groups such as Kashmere Stage Band, Young Blood Brass Band and Hypnotic Brass Ensemble. The songs that weave together warm soul, jazz, hip-hop and afrobeat rhythms are written by frontman Joose Kyyrö. Joose is known for several soul and funk bands such as The Funky Sound Foundation, Emilia Sisco and Frankosun & The Family. Timmion Records will release the band's first 7\" single in the summer of 2024.</p><p>Band composition:<br>Joose Kyyrö – saxophones<br>Eero Savela – trumpet<br>Joona Kilponen – trumpet<br>Jay Kortehisto – trombone<br>Erno Haukkala – trombone<br>Jussi Nykänen – guitar<br>Kenneth Ojutkangas – sousaphone<br>Elias Ojutkangas – drums</p><p>Duration: 3,5 h <br>Language: English, Finnish, Portuguese, Spanish</p><p>Global Club Nights is produced in collaboration with the Global music Department of Sibelius Academy and Cultural Centre Caisa. With live music, radio shows, seminars and workshops, the events attempt to build bridges between all music lovers and their communities.</p>"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/47F621BDFFB7A2D11C09AA83CB0FCF14/The_Song_of_Steppes_Bronze_Silver_and_Brass",
                "sv": "http://www.caisa.fi/sv/evenemang/event/47F621BDFFB7A2D11C09AA83CB0FCF14/The_Song_of_Steppes_Bronze_Silver_and_Brass",
                "en": "http://www.caisa.fi/en/events/event/47F621BDFFB7A2D11C09AA83CB0FCF14/The_Song_of_Steppes_Bronze_Silver_and_Brass"
            },
            "short_description": {
                "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.",
                "sv": "Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.",
                "en": "Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64312/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:6671b3dd-44f4-4b1c-acc4-1737c19341c6",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/4b57da54-af12-ef11-9f89-000d3ab0fc3c?readableEventId=Tapahtuma_esimerkki_vol11_021020243117017051"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152705,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-02T10:13:55.185341Z",
                    "last_modified_time": "2024-10-02T10:13:55.185357Z",
                    "name": "Tapahtuma esimerkki 09.09.2024",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/32de3280-3514-ef11-9f8a-000d3ab59432",
                    "cropping": "",
                    "photographer_name": "Tapahtuma esimerkki 09.09.2024",
                    "alt_text": "Testi",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152705/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                }
            ],
            "created_time": "2024-10-02T10:13:55.789891Z",
            "last_modified_time": "2024-10-02T10:13:55.789928Z",
            "date_published": "2024-10-02T10:13:04Z",
            "start_time": "2024-10-31T06:10:00Z",
            "end_time": "2024-10-31T06:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-08-23T08:00:00+03:00",
            "enrolment_end_time": "2024-10-25T10:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Tapahtuma esimerkki vol.12 02.10.2024"
            },
            "description": {
                "fi": "<div><p>Tapahtuma esimerkki vol.12 02.10.2024</p></div>"
            },
            "provider": {
                "fi": "Helsinki"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.hel.fi"
            },
            "short_description": {
                "fi": "Tapahtuma esimerkki vol.12 02.10.2024"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:6671b3dd-44f4-4b1c-acc4-1737c19341c6/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:83b3b83a-458d-49d9-8d27-65e8daf24f2d",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/4b57da54-af12-ef11-9f89-000d3ab0fc3c?readableEventId=Tapahtuma_esimerkki_vol10_0210202418099675"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152704,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-02T10:12:31.508625Z",
                    "last_modified_time": "2024-10-02T10:12:31.508642Z",
                    "name": "Tapahtuma esimerkki 09.09.2024",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/32de3280-3514-ef11-9f8a-000d3ab59432",
                    "cropping": "",
                    "photographer_name": "Tapahtuma esimerkki 09.09.2024",
                    "alt_text": "Testi",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152704/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                }
            ],
            "created_time": "2024-10-02T10:12:32.077080Z",
            "last_modified_time": "2024-10-02T10:12:32.077100Z",
            "date_published": "2024-10-02T10:11:28Z",
            "start_time": "2024-10-31T06:10:00Z",
            "end_time": "2024-10-31T06:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-08-23T08:00:00+03:00",
            "enrolment_end_time": "2024-10-25T10:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Tapahtuma esimerkki vol.11 02.10.2024"
            },
            "description": {
                "fi": "<div><p>Tapahtuma esimerkki vol.11 02.10.2024</p></div>"
            },
            "provider": {
                "fi": "Helsinki"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.hel.fi"
            },
            "short_description": {
                "fi": "Tapahtuma esimerkki vol.11 02.10.2024"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:83b3b83a-458d-49d9-8d27-65e8daf24f2d/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:b22ada7b-c246-4bc7-a1da-864a3c5e76af",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/4b57da54-af12-ef11-9f89-000d3ab0fc3c?readableEventId=Tapahtuma_esimerkki_vol9_021020244280822727"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152702,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-02T10:09:11.773772Z",
                    "last_modified_time": "2024-10-02T10:09:11.773796Z",
                    "name": "Tapahtuma esimerkki 09.09.2024",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/32de3280-3514-ef11-9f8a-000d3ab59432",
                    "cropping": "",
                    "photographer_name": "Tapahtuma esimerkki 09.09.2024",
                    "alt_text": "Testi",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152702/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                }
            ],
            "created_time": "2024-10-02T10:09:12.314228Z",
            "last_modified_time": "2024-10-02T10:09:12.314249Z",
            "date_published": "2024-10-02T10:08:25Z",
            "start_time": "2024-10-31T06:10:00Z",
            "end_time": "2024-10-31T06:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-08-23T08:00:00+03:00",
            "enrolment_end_time": "2024-10-25T10:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Tapahtuma esimerkki vol.10 02.10.2024"
            },
            "description": {
                "fi": "<div><p>Tapahtuma esimerkki vol.10 02.10.2024</p></div>"
            },
            "provider": {
                "fi": "Helsinki"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.hel.fi"
            },
            "short_description": {
                "fi": "Tapahtuma esimerkki vol.10 02.10.2024"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:b22ada7b-c246-4bc7-a1da-864a3c5e76af/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:337fe6ce-aa37-4756-b30f-3b4b4369b92e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/4b57da54-af12-ef11-9f89-000d3ab0fc3c?readableEventId=Tapahtuma_esimerkki_vol8_021020241378824725"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152701,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-02T10:07:24.853266Z",
                    "last_modified_time": "2024-10-02T10:07:24.853286Z",
                    "name": "Tapahtuma esimerkki 09.09.2024",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/32de3280-3514-ef11-9f8a-000d3ab59432",
                    "cropping": "",
                    "photographer_name": "Tapahtuma esimerkki 09.09.2024",
                    "alt_text": "Testi",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152701/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                }
            ],
            "created_time": "2024-10-02T10:07:25.527081Z",
            "last_modified_time": "2024-10-02T10:07:25.527099Z",
            "date_published": "2024-10-02T10:06:07Z",
            "start_time": "2024-10-31T06:10:00Z",
            "end_time": "2024-10-31T06:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-08-23T08:00:00+03:00",
            "enrolment_end_time": "2024-10-25T10:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Tapahtuma esimerkki vol.9 02.10.2024"
            },
            "description": {
                "fi": "<div><p>Tapahtuma esimerkki vol.9 02.10.2024</p></div>"
            },
            "provider": {
                "fi": "Helsinki"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.hel.fi"
            },
            "short_description": {
                "fi": "Tapahtuma esimerkki vol.9 02.10.2024"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:337fe6ce-aa37-4756-b30f-3b4b4369b92e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:1d94dc57-d0ec-4349-94d5-149fc3e5d540",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/4b57da54-af12-ef11-9f89-000d3ab0fc3c?readableEventId=Tapahtuma_esimerkki_vol7_120920243294267272"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152700,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-02T10:03:34.727703Z",
                    "last_modified_time": "2024-10-02T10:03:34.727723Z",
                    "name": "Tapahtuma esimerkki 09.09.2024",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/32de3280-3514-ef11-9f8a-000d3ab59432",
                    "cropping": "",
                    "photographer_name": "Tapahtuma esimerkki 09.09.2024",
                    "alt_text": "Testi",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152700/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                }
            ],
            "created_time": "2024-10-02T10:03:32.154590Z",
            "last_modified_time": "2024-10-02T10:03:35.529506Z",
            "date_published": "2024-10-02T10:00:01Z",
            "start_time": "2024-10-31T06:10:00Z",
            "end_time": "2024-10-31T06:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-08-23T08:00:00+03:00",
            "enrolment_end_time": "2024-10-25T10:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Tapahtuma esimerkki vol.8 02.10.2024"
            },
            "description": {
                "fi": "<div><p>Tapahtuma esimerkki vol.8 02.10.2024</p></div>"
            },
            "provider": {
                "fi": "Helsinki"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.hel.fi"
            },
            "short_description": {
                "fi": "Tapahtuma esimerkki vol.8 02.10.2024"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:1d94dc57-d0ec-4349-94d5-149fc3e5d540/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agje3k2siy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-02T09:56:30.527404Z",
            "last_modified_time": "2024-10-02T09:56:30.527424Z",
            "date_published": null,
            "start_time": "2024-10-13T10:00:00Z",
            "end_time": "2024-10-13T12: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,
            "name": {
                "fi": "Kirjan julkaisutilaisuus: Karoliina Oksanen \"Uudet ääriviivat\"",
                "sv": "Boklansering: Karoliina Oksanen \"Uudet ääriviivat\"",
                "en": "Book launch: Karoliina Oksanen \"Uudet ääriviivat\""
            },
            "description": {
                "fi": "<p>Tervetuloa kirjajulkkareihin!</p><p>Tule tutustumaan Uudet ääriviivat-romaaniin, tapaamaan romaanin tekijöitä ja kuulemaan musiikkiesityksiä. Tarjolla on myös pientä purtavaa. Tilaisuus on kaikille avoin.</p>",
                "sv": "<p>Välkommen till boklanseringsevenemanget!</p><p>Kom och upptäck romanen Uudet ääriviivat, träffa författarna till romanen och lyssna på musikframträdanden.&nbsp;</p>",
                "en": "<p>Welcome to the book launch event!</p><p>Come and discover the novel Uudet ääriviivat, meet the authors of the novel and listen to musical performances.</p>"
            },
            "provider": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "info_url": null,
            "short_description": {
                "fi": "Tervetuloa kirjajulkkareihin!\n\nTule tutustumaan Uudet ääriviivat-romaaniin, tapaamaan romaanin tekijöitä ja kuulemaan musiikkiesityksiä. ",
                "sv": "Välkommen till boklanseringsevenemanget!\n\nKom och upptäck romanen Uudet ääriviivat, träffa författarna till romanen och lyssna på musikframträdanden. ",
                "en": "Welcome to the book launch event!\n\nCome and discover the novel Uudet ääriviivat, meet the authors of the novel and listen to musical performances. "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agje3k2siy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63687",
            "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:104/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151906,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-26T06:15:25.815805Z",
                    "last_modified_time": "2024-07-26T06:15:25.815824Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752030.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151906/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T06:15:25.786324Z",
            "last_modified_time": "2024-10-02T09:35:11.602509Z",
            "date_published": null,
            "start_time": "2024-10-07T15: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,
            "name": {
                "fi": "PERUTTU Kirjailijavieraana Katja Kettu – Maksuttomat maanantait",
                "sv": "INSTÄLLT Gästförfattare Katja Kettu – Maksuttomat maanantait",
                "en": "CANCELLED Author guest Katja Kettu – Maksuttomat maanantait"
            },
            "description": {
                "fi": "<p>7.10. tapahtuma on valitettavasti peruttu. Uusi ajankohta on 2.12. klo 18, jolloin Katja Kettu saapuu kirjailijavieraaksi Kanneltalon kahvilaan.</p><p>Moneen kertaan palkittu ja usealle kielelle käännetty kirjailija Katja Kettu vierailee Kanneltalossa keskustelemassa tuoreesta kirjastaan Erään kissan tutkimuksia (Otava 2023).</p><p>Katja Kettua haastattelee kirjailija, toimittaja Esa Mäkijärvi.</p><p>Katja Ketun huikaiseva romaani Erään kissan tutkimuksia kieppuu aikojen lävitse ja antautuu villille luonnolle ja perillistä ikävöivän veren kutsulle.</p><p>Kirjailija saa keskenmenon ja menettää kykynsä puhua ja kirjoittaa. Paikalle lähetetään Taivaiden Tutkimustoimistosta Etsivä, mutta jokin menee pieleen, ja tuvan nurkkaan ilmestyykin Kissa, joka käy tutkimaan vintin lattialuukusta löytynyttä Isoisoäidin päiväkirjaa. Kun uusi elämä on menetetty, kääntää Kirjailija katseensa menneisyyteen ja ikiaikaisiin syntysanoihin. Niiden taitajalla, Isoisoäidillä, on suomen kielen väessä ja voimassa parantajien mahti. Voiko menneestä löytää lohdun ja tarkoituksen elämälle, kun tulevaisuutta ei ole?</p><p>Katja Kettu (s. 1978) on Rovaniemeltä kotoisin oleva kirjailija ja animaatio-ohjaaja. Hänen läpimurtoteoksensa Kätilö (2011) sai Kalevi Jäntin palkinnon, Runeberg-palkinnon ja Kiitos kirjasta -mitalin. Teoksen käännösoikeudet on myyty 19 maahan ja sitä on myyty Suomessa yli 160 000 kappaletta. Kirjasta on tehty myös elokuva.</p><p>Yhteistyössä Kannelmäen kirjaston ja Helsingin työväenopiston kanssa.<br>Kieli: suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Den mångfaldigt prisbelönta författaren Katja Kettus verk har översatts till många språk. Hon besöker Gamlasgården för att diskutera sin senaste bok Erään kissan tutkimuksia (Otava 2023).</p><p>Katja Kettu intervjuas av författare och journalist Esa Mäkijärvi.</p><p>Katja Kettus fantastiska roman Erään kissan tutkimuksia susar genom tiden och ger sig hän sig till den vilda naturen och blodets längtan efter en arvinge.</p><p>Författaren får missfall och förlorar förmågan att tala och skriva. En detektiv från den himmelska undersökningsbyrån skickas till platsen, men något går fel och istället dyker det upp en katt vid stughörnet. Katten börjar undersöka gammelmormors dagbok, som hittats i en golvlucka på vinden. När ett nytt liv har gått förlorat vänder Författaren blicken mot det förflutna och eviga ursprungsord. Gammelmormor, som kan dessa ord, har kraften att läka bland det finska folket och de finska krafterna. Kan man finna tröst och mening i det förflutna när det inte finns någon framtid?</p><p>Katja Kettu (f. 1978) är en författare och animationsregissör från Rovaniemi. Hennes genombrottsverk Barnmorskan (2011) belönades med Kalevi Jäntti-priset, Runebergspriset och Kiitos kirjasta-medaljen. Översättningsrättigheterna till verket har sålts till 19 länder och mer än 160 000 exemplar har sålts i Finland. Boken har också filmatiserats.</p><p>I samarbete med Gamlas bibliotek och Helsingfors finska arbetarinstitut.<br>Språk: finska<br>Fritt inträde</p>",
                "en": "<p>Katja Kettu, an author who has received several awards and has been translated into several languages, visits Kanneltalo to talk about her recent book, The Investigations of a Certain Cat (Otava 2023).</p><p>Katja Kettu will be interviewed by author and editor Esa Mäkijärvi.</p><p>Katja Kettu's fabulous novel The Investigations of a Certain Cat passes through the ages like a whirlwind, surrendering to wild nature and the call of blood longing for an heir.</p><p>The writer suffers a miscarriage and loses the ability to speak and write. From the Investigative Bureau of Heavens, a Detective is sent to the scene, but something goes awry. Soon, in the corner of the room, there appears Cat who starts examining a mysterious diary that once belonged to the Author’s Great Grandmother. When a new life has been lost, the Author turns their gaze to the past and to the age-old words of creation in the old Finnish outskirts. The one who knows them, Great Grandmother, has the power of healers. Is there comfort and meaning in the past when there is no future?</p><p>Katja Kettu (b. 1978) is a writer and animation director from Rovaniemi. His breakthrough work, The Midwife (2011), received the Kalevi Jäntti Prize, the Runeberg Prize and the Kiitos kirjasta Medal. The translation rights to the work have been sold to 19 countries and more than 160,000 copies have been sold in Finland. The book has also been made into a movie.</p><p>In cooperation with the Kannelmäki Library and the Helsinki Adult Education Centre.<br>Language: Finnish<br>Free of charge</p>"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B316F66BB5965D7F38C938F3560426A0/PERUTTU_Kirjailijavieraana_Katja_Kettu",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B316F66BB5965D7F38C938F3560426A0/INSTALLT_Gastforfattare_Katja_Kettu",
                "en": "http://www.kanneltalo.fi/en/events/event/B316F66BB5965D7F38C938F3560426A0/CANCELLED_Author_guest_Katja_Kettu"
            },
            "short_description": {
                "fi": "7.10. tapahtuma on valitettavasti peruttu. Uusi ajankohta on 2.12. klo 18, jolloin Katja Kettu saapuu kirjailijavieraaksi Kanneltalon kahvilaan.",
                "sv": "Den mångfaldigt prisbelönta författaren Katja Kettus verk har översatts till många språk. Hon besöker Gamlasgården för att diskutera sin senaste bok Erään kissan tutkimuksia (Otava 2023).",
                "en": "Katja Kettu, an author who has received several awards and has been translated into several languages, visits Kanneltalo to talk about her recent book, The Investigations of a Certain Cat (Otava 2023)."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63687/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63432",
            "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: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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151570,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-27T15:13:43.526450Z",
                    "last_modified_time": "2024-06-27T15:13:43.526463Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749895.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151570/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-27T15:13:43.500603Z",
            "last_modified_time": "2024-10-02T08:13:38.660988Z",
            "date_published": null,
            "start_time": "2024-10-14T07:15:00Z",
            "end_time": "2024-10-14T07:45: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,
            "name": {
                "fi": "Musiikillinen taideseikkailu – vauvoille",
                "sv": "Musikaliskt konstäventyr – för bebisar",
                "en": "Musical Art Adventure – for babies"
            },
            "description": {
                "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 30 min <br>Ikäryhmä: 3–12 kk<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä on noin 12 osallistujaa, 6 lasta ja 6 aikuista.</p><p>Varaa yksi paikka per lapsi + aikuinen.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 14.10.2024 klo 10.15–10.45</b><br>Ilmoittaudu tästä: https://link.webropolsurveys.com/EP/B24D7C03E5372B53</p><p><b>ma 28.10.2024 klo 10.15–10.45</b><br>Ilmoittaudu tästä: https://link.webropolsurveys.com/EP/4A058F13AB1237A0</p><p><b>ma 11.11.2024 klo 10.15–10.45</b><br>Ilmoittaudu tästä: https://link.webropolsurveys.com/EP/D9C86698E3D648E2</p><p><b>ma 25.11. klo 10.15–10.45</b><br>Ilmoittaudu tästä: https://link.webropolsurveys.com/EP/1202B0C4CA650569</p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p>Ilmoittaudu jonoon tämän linkin kautta: https://link.webropol.com/s/Taideseikkailunjono</p>",
                "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama. Konstäventyren ordnas två måndagar i månaden.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 3–12 mån.<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har ca 12 deltagare, 6 barn och 6 vuxna.<br>Boka en plats per barn + vuxen.</p><p><b>Anmälningslänkar:</b></p><p><b>Mån 2 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">anmäl dig här</u></a></p><p><b>Mån 19 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">anmäl dig här</u></a></p><p><b>Mån 30 september 2024 kl 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">anmäl dig här</u></a></p><p><b>Mån 14 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">anmäl dig här</u></a></p><p><b>Mån 28 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">anmäl dig här</u></a></p><p><b>Mån 11 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">anmäl dig här</u></a></p><p><b>Mån 25 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">anmäl dig här</u></a></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: https://link.webropol.com/s/Taideseikkailunjono</p>",
                "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 30 min <br>Age group: 3–12 months<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p>Mon 2 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">Register here</u></a></p><p>Mon 16 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">Register here</u></a></p><p>Mon 30 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">Register here</u></a></p><p>Mon 14 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">Register here</u></a></p><p>Mon 28 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">Register here</u></a></p><p>Mon 11 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">Register here</u></a></p><p>Mon 25 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">Register her</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6F0ED2F6650E62EDE5F854D439E3D18A/Musiikillinen_taideseikkailu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/6F0ED2F6650E62EDE5F854D439E3D18A/Musikaliskt_konstaventyr",
                "en": "http://www.annantalo.fi/en/events/event/6F0ED2F6650E62EDE5F854D439E3D18A/Musical_Art_Adventure"
            },
            "short_description": {
                "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.",
                "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.",
                "en": "We explore and interpret the world through imagination, music and other arts."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63432/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agjcrcp67e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/3UyT88beV",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-09-25T08:32:58.773561Z",
            "last_modified_time": "2024-10-02T07:58:49.590045Z",
            "date_published": "2024-09-25T07:25:34.784000Z",
            "start_time": "2024-10-23T14:00:00Z",
            "end_time": "2024-10-23T15: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,
            "name": {
                "fi": "Yhteislaulua! Mukana Espoon Laulu- kuoro"
            },
            "description": {
                "fi": "<p>Tervetuloa laulamaan yhdessä tuttuja suomenkielisiä lauluja. Esilaulajina toimivat Espoon Laulu- kuoron jäsenet, jotka myös esiintyvät tapahtumassa. Luvassa mm. kansanlauluja, tuttuja iskelmiä ja syksyisiä lauluja: Olavi Virtaa, Tapio Rautavaaraa, Katri Helenaa, Kaj Chydeniusta.</p><p>Mukana myös kaupunginkirjaston musiikkipedagogit Lauri Iljin ja Sakari Heikka.</p><p>Espoon Laulu on vuonna 1986 perustettu espoolainen sekakuoro.</p><p>Lisätietoa kuorosta:</p><p><a href=\"https://www.espoonlaulu.fi/\">Espoon Laulu | sekakuoro</a></p>"
            },
            "provider": null,
            "location_extra_info": {
                "fi": "Salonki"
            },
            "info_url": null,
            "short_description": {
                "fi": "Tervetuloa laulamaan yhdessä tuttuja lauluja. Esilaulajina Espoon Laulu- kuoro. "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcrcp67e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agje3k2swm",
            "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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p3466/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-02T07:23:04.331146Z",
            "last_modified_time": "2024-10-02T07:24:09.450552Z",
            "date_published": null,
            "start_time": "2024-10-18T13:00:00Z",
            "end_time": "2024-10-18T15: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,
            "name": {
                "fi": "SYYSLOMA: Heijastava paja Entressen kirjastossa",
                "sv": "HÖSTLOV: Reflex verkstad i Entresse bibliotek",
                "en": "FALL BREAK: Reflecting Workshop At Entresse Library"
            },
            "description": {
                "fi": "<p>Syyslomalla on luvassa hauskaa ja luovaa tekemistä kirjastossa!</p><p>Järjestämme kaikille avoimen pajan, jossa voit painattaa pimeässä hohtavia heijastavia kuvia vaatteisiin, asusteisiin tai kankaisiin heijastavasta vinyylistä. Parasta on, että voit tuoda omat silitettävät vaatteesi tai asusteesi ja tehdä niistä juuri itsesi näköiset!</p><p>Kirjasto tulostaa valmiiksi laajan valikoiman erilaisia kuvioita ja kirjaimia – voit valita juuri sinulle sopivan. Lisäksi tarjoamme heijastavat materiaalit ja mahdollisuuden valmistaa roikkuvia tai vaatteeseen kiinnitettäviä heijastavia tuotteita huopakankaalle. Tule siis mukaan ja anna vaatteillesi uusi loistava ilme!</p>",
                "sv": "<p>Kom med under höstlovet till bibliotekets öppna verkstad och gör dina kläder lysande. Vi kommer att skapa reflekterande bilder på tyg med reflekterande vinyl. Ta med egna strykbara kläder eller accessoarer och gör dem unika. Biblioteket står för material och ett brett urval av mönsteralternativ.</p>",
                "en": "<p>Join us during the autumn brake for an open workshop at the library and make your clothes shine! We will create reflective images on fabric using reflective vinyl. Bring your own ironable clothes or accessories and turn them into unique pieces. The library will provide the materials and a wide selection of design options.</p>"
            },
            "provider": null,
            "location_extra_info": {
                "fi": "Paja"
            },
            "info_url": null,
            "short_description": {
                "fi": "Pajassa painatetaan omiin vaatteisiin heijastavia kuvia.",
                "sv": "I verkstaden trycks reflekterande bilder på egna kläder.",
                "en": "In the workshop, reflecting images are printed onto personal clothing."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agje3k2swm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:41455eee-7e7f-409d-9b14-133e794f790c",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/4b57da54-af12-ef11-9f89-000d3ab0fc3c?readableEventId=MKtest_27092024_user_story_556task_624_uusi_custom_kentt_fi700531331"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152691,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-02T07:06:50.171605Z",
                    "last_modified_time": "2024-10-02T07:06:50.171625Z",
                    "name": "asdf",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/0d239403-950b-ef11-9f89-000d3a668452",
                    "cropping": "",
                    "photographer_name": "asdf",
                    "alt_text": "asdf",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152691/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "created_time": "2024-10-01T13:04:25.014906Z",
            "last_modified_time": "2024-10-02T07:06:50.989033Z",
            "date_published": "2024-10-01T11:29:32Z",
            "start_time": "2024-10-08T10:00:00Z",
            "end_time": "2024-10-08T10:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 2,
            "minimum_attendee_capacity": 1,
            "enrolment_start_time": "2024-09-02T08:00:00+03:00",
            "enrolment_end_time": "2024-10-03T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "MKtest 01102024 (user story 556/task 624) uusi custom kenttä fi &lt;muutos3&gt;"
            },
            "description": {
                "fi": "<div><p>asdf yy</p></div>"
            },
            "provider": {
                "fi": "asdf Helsinki"
            },
            "location_extra_info": null,
            "info_url": null,
            "short_description": {
                "fi": "asdf gg"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:41455eee-7e7f-409d-9b14-133e794f790c/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64329",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151994,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T16:15:55.131345Z",
                    "last_modified_time": "2024-07-30T16:15:55.131364Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751751.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151994/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-30T16:15:55.097981Z",
            "last_modified_time": "2024-10-02T06:29:52.753936Z",
            "date_published": null,
            "start_time": "2024-10-16T10: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,
            "name": {
                "fi": "Satukino | Dumbo (Live Action) (7) – Satumainen syysloma",
                "sv": "Satukino | Dumbo (Live Action) (7) – Ett sagolikt höstlov",
                "en": "Satukino | Dumbo (Live Action) (7) – Fabulous autumn holiday"
            },
            "description": {
                "fi": "<p>Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Viikko jatkuu Disneyn live-action seikkailulla DUMBO (2019)!</p><p>Mielikuvituksen mestari Tim Burton tuo valkokankaille uuden Dumbon. Elokuva laajentaa rakastetun klassikkoelokuvan tarinaa juhlistaen erilaisuutta, vaalien perhettä ja antaen unelmille siivet. <br>Sirkuksen omistaja Max Medici antaa entiselle tähdelle Holt Ferrierille ja hänen lapsilleen, Millylle ja Joelle, tehtäväksi hoitaa vastasyntynyttä elefanttia, jonka valtavat korvat saavat sen kuitenkin pilkan kohteeksi. Sirkus kärsii taloushuolista, mutta kun selviää, että Dumbo osaa lentää, tekee sirkus häikäisevän paluun.</p><p>Juhlasalin iltapäivän elokuvanäytöksissä hahmot puhuvat englantia. Tekstitys suomeksi.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Tulethan kuitenkin hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuviin mahtuu 74 katsojaa.</p><p>Elokuvan kesto: 112min<br>Ikäsuositus 7+</p>",
                "sv": "<p>Under höstlovet tittar vi på filmer med sagotema på Satukino. Veckan fortsätter med Disneys live-action-äventyr DUMBO (2019).</p><p>Fantasins mästare Tim Burton hämtar en ny version av Dumbo till den vita duken. Filmen bygger på den älskade filmklassikerns berättelse, som hyllar mångfald, värnar om familjen och ger drömmarna vingar. <br>Cirkusägaren Max Medici ger den tidigare stjärnan Holt Ferrier och hans barn Milly och Joe i uppdrag att ta hand om en nyfödd elefant, vars enorma öron gör den till föremål för åtlöje. Cirkusen kämpar med ekonomin, men när man upptäcker att Dumbo kan flyga gör cirkusen en fantastisk comeback.</p><p>Karaktärerna i eftermiddagsfilmvisningarna i festsalen talar engelska. Textning på finska.</p><p>Fritt inträde, ingen förhandsanmälan. Kom på plats i god tid, vi tar in publiken i ankomstordning. Det finns plats för 74 personer att se filmerna.</p><p>Filmens längd: 112 min.<br>Åldersrekommendation: 7+<br>Språk: Finska, engelska</p>",
                "en": "<p>During the autumn holiday, Satukino will feature fairytale-themed films. The week continues with Disney's live-action adventure DUMBO (2019).</p><p>The master of imagination, Tim Burton, has re-imagined Dumbo for the big screen. The film expands on the story of the beloved classic film, celebrating diversity, nurturing family and giving dreams wings. <br>Circus ringleader Max Medici entrusts former star Holt Ferrier and his children, Milly and Joe, with the task of caring for a newborn elephant whose huge ears, however, make it a laughing stock. The circus suffers financially, but when it turns out that Dumbo can fly, the circus makes a dazzling return.</p><p>The characters in the afternoon movie screenings in the ballroom speak English. Subtitles are in Finnish.</p><p>Free admission, no advance registration. Please arrive on time as entry is on a first-come, first-served basis. The cinema can accommodate 74 spectators.</p><p>Movie duration: 112min<br>Age recommendation: +7<br>Language: Finnish, English</p>"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/599A267798A768D5F6A39AE430DE38E3/Satukino_Dumbo_Live_Action_7_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/599A267798A768D5F6A39AE430DE38E3/Satukino_Dumbo_Live_Action_7_",
                "en": "http://www.annantalo.fi/en/events/event/599A267798A768D5F6A39AE430DE38E3/Satukino_Dumbo_Live_Action_7_"
            },
            "short_description": {
                "fi": "Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Viikko jatkuu Disneyn live-action seikkailulla DUMBO (2019)!",
                "sv": "Under höstlovet tittar vi på filmer med sagotema på Satukino. Veckan fortsätter med Disneys live-action-äventyr DUMBO (2019).",
                "en": "During the autumn holiday, Satukino will feature fairytale-themed films. The week continues with Disney's live-action adventure DUMBO (2019)."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64329/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi4d47h4m",
            "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:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47fde/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47fnq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47fqm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47fs4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47fwa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47fyq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47f3e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47f5u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47gai/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47gc4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47gfq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47gh4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47gki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47gni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47gpy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47gse/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47guy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47gxe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47g6y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hbq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hee/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hgu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hji/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hl4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hpu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hse/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47huy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hxi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hzy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5t3i/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-09-05T10:46:36.790647Z",
            "last_modified_time": "2024-10-02T05:14:35.987821Z",
            "date_published": null,
            "start_time": "2024-09-05T13:00:00Z",
            "end_time": "2024-12-19T15: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,
            "name": {
                "fi": "HeroClix-pelin opetusta ja demopelejä "
            },
            "description": {
                "fi": "<p>&nbsp;</p><p>HeroClix-pelin opetusta ja demopelejä toistaiseksi&nbsp;keskiviikkoisin ja torstaisin klo 16–17 Nuortenosasto Kibessä varhaisnuorille ja nuorille!</p><p>&nbsp;</p><p>Ohjaaja tuo peliin tarvittavat miniatyyrifiguureista kootut tiimit, pelikartan, kortit sekä ohjeet ja kertoo pelistä sekä opettaa sen pelaamista.</p><p>&nbsp;</p><p>\"HeroClix is a tactical combat game where you put heroes and villains from your favorite comics, movies and TV shows in head to head combat.</p><p>If you’ve never played HeroClix before or just want to play the simplest version of the game, you’ll need to learn the basics.\"</p><p><br></p><p>Ohjaaja: vapaaehtoinen</p>"
            },
            "provider": {
                "fi": "Ohjaaja: vapaaehtoinen"
            },
            "location_extra_info": {
                "fi": "Kibe"
            },
            "info_url": null,
            "short_description": {
                "fi": "HeroClix-pelin opetusta ja demopelejä "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47h4m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agitdprxw4",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprwgq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprwou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprwqy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprws4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprwuy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprwxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprwzm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprw3q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprw5q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprw7q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprxea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprxgm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprxiq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprxky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprxmy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprxoy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprxrm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprxui/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150472,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T07:34:03.349624Z",
                    "last_modified_time": "2024-03-13T07:34:03.349649Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Entressen_lukukoirat.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Kaksi mäyräkoiraa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150472/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-08-08T11:10:44.432341Z",
            "last_modified_time": "2024-10-02T05:13:24.034751Z",
            "date_published": null,
            "start_time": "2024-08-15T10:00:00Z",
            "end_time": "2024-12-19T13: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,
            "name": {
                "fi": "Lukukoirat Nekku ja Pätkis tavattavissa",
                "sv": "Läshundarna Nekku och Pätkis kan träffas",
                "en": "Meet the reading dogs Nekku and Pätkis"
            },
            "description": {
                "fi": "<p>Hei,</p><p>Olemme Nekku ja Pätkis, Entressen lukukoirat. Tykkäämme rapsuttelusta ja kuuntelemisesta. Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.</p><p>Kaikki ovat tervetulleita rapsuttamaan!</p><p>Nekku ja Pätkis ovat tavattavissa Entressen lastenosastolla torstaisin 15.8.2024 lähtien.</p><p>Tervetuloa!</p>",
                "sv": "<p>Hej på er,</p><p>Vi är Nekku och Pätkis, Entresses läshundar. Vi gillar att bli klappade och lyssnade på. Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.</p><p>Alla är välkomna att klösa!</p><p>Nekku och Pätkis finns på barnavdelningen Entresse på torsdagar från den 15 augusti 2024.</p><p>Varmt välkomna!</p>",
                "en": "<p>Hello,</p><p>We are Nekku and Pätkis, Entresse's reading dogs. We like to be petted and listened to. If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader.</p><p>Everyone is welcome to scratch!</p><p>Nekku and Pätkis can be found in the Entresse children's section on Thursdays from 15.8.2024.</p>"
            },
            "provider": null,
            "location_extra_info": {
                "fi": "Lastenosasto",
                "sv": "barnavdelningen",
                "en": "children's department"
            },
            "info_url": null,
            "short_description": {
                "fi": " Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.",
                "sv": " Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.",
                "en": " If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitdprxw4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:ce5bc0b1-599b-4f4f-89bf-76cc782acc97",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/4b57da54-af12-ef11-9f89-000d3ab0fc3c?readableEventId=MKtest_01102024_T4A_luontisanoma_SYYSLOMA3921971505"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152673,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-10-01T12:49:34.663695Z",
                    "last_modified_time": "2024-10-01T12:49:34.663713Z",
                    "name": "Sama kuva kuvateksti",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e377da3e-2609-ef11-9f8a-000d3ab363c5",
                    "cropping": "",
                    "photographer_name": "Lars Linssi",
                    "alt_text": "Sama kuva alta",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152673/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-10-01T12:44:03.324688Z",
            "last_modified_time": "2024-10-01T12:49:35.274004Z",
            "date_published": "2024-10-01T12:40:32Z",
            "start_time": "2024-10-12T05:00:00Z",
            "end_time": "2024-10-20T20:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 4,
            "minimum_attendee_capacity": 2,
            "enrolment_start_time": "2024-09-30T08:00:00+03:00",
            "enrolment_end_time": "2024-10-11T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "MKtest 01102024 T4A -päivitys X- KESKEYTETTY JA JULKAISTU UUDELLEEN"
            },
            "description": {
                "fi": "<div><p>asdf long</p></div>"
            },
            "provider": {
                "fi": "Business Business ja kolmas kerta Business_asdf ja sama vielä yhden kerran Business Business ja kolm"
            },
            "location_extra_info": null,
            "info_url": null,
            "short_description": {
                "fi": "asdf short"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:ce5bc0b1-599b-4f4f-89bf-76cc782acc97/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}