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/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=1172
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 23895,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=1173",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=1171"
    },
    "data": [
        {
            "id": "kulke:60257",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3947,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:51.629592Z",
                    "last_modified_time": "2023-09-07T14:18:51.629612Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730522.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3947/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:50.953708Z",
            "last_modified_time": "2023-09-11T21:16:02.675282Z",
            "date_published": null,
            "start_time": "2023-07-18T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Open Stage: Sambaki band",
                "sv": "Open Stage: Sambaki band",
                "en": "Open Stage: Sambaki band"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Sambakin iloiset rytmit saavat hymyn huulille ja tempaavat kuulijan mukaansa tanssimaan!",
                "sv": "Sambakis glada rytmer åstadkommer ett leendet på läpparna och rycker med åhöraren till dans!",
                "en": "Sambaki's cheerful rhythms put a smile on your face and make you dance!"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/322D0F0643C55D46C77965DE998F3D25/Open_Stage_Sambaki_band",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/322D0F0643C55D46C77965DE998F3D25/Open_Stage_Sambaki_band",
                "en": "http://www.espanlava.fi/en/events/event/322D0F0643C55D46C77965DE998F3D25/Open_Stage_Sambaki_band"
            },
            "description": {
                "fi": "<p>Sambakin iloiset rytmit saavat hymyn huulille ja tempaavat kuulijan mukaansa tanssimaan!</p><p>Sambaki on tänä vuonna 10-vuotisjuhlavuottaan juhliva bändi, joka soittaa suosittua brasilialaista musiikkia.</p>",
                "sv": "<p>Sambakis glada rytmer åstadkommer ett leendet på läpparna och rycker med åhöraren till dans!</p><p>Sambaki är ett band som i år firar 10 års jubileum och spelar populär brasiliansk musik.</p>",
                "en": "<p>Sambaki's cheerful rhythms put a smile on your face and make you dance!</p><p>Sambaki is a band celebrating its 10th anniversary this year that plays popular Brazilian music.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60257/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60256",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3946,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:50.419501Z",
                    "last_modified_time": "2023-09-07T14:18:50.419537Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730521.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3946/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:50.248790Z",
            "last_modified_time": "2023-09-11T21:16:02.493841Z",
            "date_published": null,
            "start_time": "2023-07-18T13: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,
            "name": {
                "fi": "Open Stage: Duo Cantares",
                "sv": "Open Stage: Duo Cantares",
                "en": "Open Stage: Duo Cantares"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Cantares on venezuelalaisen laulajan Nathaly Gómezin ja perulaisen multi-instrumentalistin ja musiikkitieteilijän Camilo Pajuelon muodostama duo.",
                "sv": "Cantares är en duo bestående av den venezuelanska sångerskan Nathaly Gómez och peruanska multi-instrumentalisten och musikforskaren Camilo Pajuelo.",
                "en": "Cantares is a duo formed by Venezuelan singer Nathaly Gómez and Peruvian multi-instrumentalist and musicologist Camilo Pajuelo."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/174B5F28D091BF206193DE71213600D8/Open_Stage_Duo_Cantares",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/174B5F28D091BF206193DE71213600D8/Open_Stage_Duo_Cantares",
                "en": "http://www.espanlava.fi/en/events/event/174B5F28D091BF206193DE71213600D8/Open_Stage_Duo_Cantares"
            },
            "description": {
                "fi": "<p>Cantares on venezuelalaisen laulajan Nathaly Gómezin ja perulaisen multi-instrumentalistin ja musiikkitieteilijän Camilo Pajuelon muodostama duo.</p><p><b>Nathaly Gómez Martínez</b> (Venezuela, 1973) on laulaja, joogaohjaaja ja asianajaja. Lapsesta asti laulaminen ja cuatron soittaminen on johtanut hänet osallistumaan erilaisiin esityksiin koulussa ja yliopistossa. Hän on opiskellut laulua kotimaassaan ja Suomessa. Täällä hetkellä hän opiskelee laulua & cuatroa Escuela Contemporánea de la voz -konservatoriossa ja esiintyy Duo Cantares ja Hola Helsinki Salsa -bändien laulajana.</p><p><b>Camilo Pajuelo Valdez</b> (Peru, 1973) on muusikko ja musiikintutkija. Valdez opiskeli Perun kansallisessa konservatoriossa Limassa solistista kitaransoittoa. Hän on suorittanut maisterintutkinnon Helsingin yliopiston musiikkitieteen laitoksella ja valmistelee siellä parhaillaan tohtorintutkintoa. Sooloesiintymisien lisäksi hän esiintyy tällä hetkellä Duo Cantares ja Ensemble Wirakocha -yhtyeiden kanssa. Hän opettaa kitaraa Sibelius-Akatemiassa, International School of Music Finlandissa, Sävelmetsässä ja Espoon Steinerkoulussa.</p>",
                "sv": "<p>Cantares är en duo bestående av den venezuelanska sångerskan Nathaly Gómez och peruanska multi-instrumentalisten och musikforskaren Camilo Pajuelo.</p>",
                "en": "<p>Cantares is a duo formed by Venezuelan singer Nathaly Gómez and Peruvian multi-instrumentalist and musicologist Camilo Pajuelo.</p><p>The duo was born in 2017, in Helsinki, inspired by a common passion for the music of its own cultural background and the desire to promote it in the Nordic countries. Its repertoire consists of own arrangements of songs composed by remarkable composers, including a rich variety of Latin American genres and styles. Cantares has offered its first official concert at the church of Leppävaara, Espoo in Finland, in November 2017. Since then, performs on a regular basis, sharing the stage also with local artists from different nationalities. Cantares has also performed in France, Peru, and Spain.</p><p>Nathaly Gómez Martínez (Venezuela, 1973) is a singer, yoga instructor and lawyer. Singing and playing the cuatro since childhood has led him to participate in various performances at school and university. He has studied singing in his home country and in Finland. Currently, he is studying singing & cuatro at the Escuela Contemporánea de la voz conservatory and performs as a singer in the Duo Cantares and Hola Helsinki Salsa band.</p><p>Camilo Pajuelo Valdez (Peru, 1973) is a musician and musicologist. Valdez studied solo guitar at the National Conservatory of Peru in Lima. He has completed his master's degree at the Department of Musicology at the University of Helsinki and is currently preparing his doctoral degree there. In addition to solo performances, he currently performs with Duo Cantares and Ensemble Wirakocha. He teaches guitar at Sibelius Academy, International School of Music Finland, Sävelmetsä and Steinerkoulu in Espoo.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60256/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60255",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3945,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:50.018299Z",
                    "last_modified_time": "2023-09-07T14:18:50.018368Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730697.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3945/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:49.866911Z",
            "last_modified_time": "2023-09-11T21:16:02.302904Z",
            "date_published": null,
            "start_time": "2023-07-18T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Open Stage: Machu Picchu",
                "sv": "Open Stage: Machu Picchu",
                "en": "Open Stage: Machu Picchu"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Jo 30-vuotias Machu Picchu jatkaa konserttien, kurssien ja työpajojen sarjaa, joka ovat kuljettanut yhtyettä läpi vuosikymmenten eri puolille Suomea.",
                "sv": "Det redan 30-åriga Machu Picchu fortsätter med en serie konserter, kurser och workshoppar som har fört bandet runt om i Finland i flera årtionden.",
                "en": "At the age of 30, Machu Picchu are still continuing their series of concerts, courses and workshops that has taken the band to all corners of Finland over the decades."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/FCA28D71EA9BE712F62B3C4E2FEA46F4/Open_Stage_Machu_Picchu",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/FCA28D71EA9BE712F62B3C4E2FEA46F4/Open_Stage_Machu_Picchu",
                "en": "http://www.espanlava.fi/en/events/event/FCA28D71EA9BE712F62B3C4E2FEA46F4/Open_Stage_Machu_Picchu"
            },
            "description": {
                "fi": "<p>Jo 30-vuotias Machu Picchu jatkaa konserttien, kurssien ja työpajojen sarjaa, joka ovat kuljettanut yhtyettä läpi vuosikymmenten eri puolille Suomea.</p><p>Machu Picchu- yhtye perustettiin Tukholmassa Ruotsissa 1986 ja sai hyvän vastaanoton pohjoismaiden kiertueellaan. Suurta huomiota he herättivät Suomessa ja erityisesti sen pääkaupungissa Helsingissä, jonne yhtye lopullisesti kotiutui ja asettautui.</p><p>Moninaiset instrumentit ja rytmit tutustuttavat kuulijansa latinalaisamerikkalaisen – ja erityisesti Andien alueiden kulttuurien eri variaatioihin ja vivahteisiin.</p><p>--</p><p>Machu Picchu se creó en el año 1986 en Estocolmo. Logró una buena acogida viajando por los países nórdicos durante un par de años, despertando un interés especial en Finlandia, se instaló definitivamente en su capital Helsinki.</p><p>Conciertos, diversas presentaciones, algunas en la televisión, talleres de música y unos cuantos discos grabados, más de treinta años en Finlandia difundiendo a través de sus interpretaciones musicales la diversidad de las culturas de América Latina y en especial de la zona andina.</p>",
                "sv": "<p>Det redan 30-åriga Machu Picchu fortsätter med en serie konserter, kurser och workshoppar som har fört bandet runt om i Finland i flera årtionden.</p><p>Bandet Machu Picchu grundades i Stockholm i Sverige 1986 och fick ett gott mottagande under sin nordiska turné. Det väckte stor uppmärksamhet i Finland och särskilt i huvudstaden Helsingfors, där bandet slutligen gjorde sig hemmastadda och etablerade sig.</p><p>Mångfaldiga instrument och rytmer lär åhörarna att känna igen olika variationer och nyanser i de latinamerikanska, och särskilt de andinska kulturerna.</p>",
                "en": "<p>At the age of 30, Machu Picchu are still continuing their series of concerts, courses and workshops that has taken the band to all corners of Finland over the decades.</p><p>Machu Picchu were formed in 1986 in Stockholm, Sweden, and were positively received during their Nordic tour. They attracted a great deal of attention in Finland and especially in its capital Helsinki, where the band finally settled and now operates out of.</p><p>The band's diverse instruments and rhythms introduce listeners to the different variations and nuances of the cultures of Latin America, especially those found around the Andes.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60255/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60254",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3944,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:49.631921Z",
                    "last_modified_time": "2023-09-07T14:18:49.631943Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730421.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3944/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:49.487058Z",
            "last_modified_time": "2023-09-11T21:16:02.102108Z",
            "date_published": null,
            "start_time": "2023-07-17T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Open Stage: HEROINES",
                "sv": "Open Stage: HEROINES",
                "en": "Open Stage: HEROINES"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "HEROINES on kansainväliseen suosioon tähtäävä poptrio. Yhtye esittää omien kappaleidensa lisäksi nostalgisia 2000-luvun alun pop/rnb-hittejä.",
                "sv": "HEROINES är en poptrio som siktar på internationell popularitet. Utöver sina egna låtar framför bandet nostalgiska pop-/r'n'b-hitar från början av 2000-talet.",
                "en": "HEROINES is a pop trio aiming for international fame. In addition to original songs, the band perform nostalgic pop/R&B hits from the early 2000s."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A9506CD5CE300C1C82C4EBB30567A269/Open_Stage_HEROINES",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/A9506CD5CE300C1C82C4EBB30567A269/Open_Stage_HEROINES",
                "en": "http://www.espanlava.fi/en/events/event/A9506CD5CE300C1C82C4EBB30567A269/Open_Stage_HEROINES"
            },
            "description": {
                "fi": "<p>HEROINES on kansainväliseen suosioon tähtäävä poptrio. Yhtye esittää omien kappaleidensa lisäksi nostalgisia 2000-luvun alun pop/rnb-hittejä.</p>",
                "sv": "<p>HEROINES är en poptrio som siktar på internationell popularitet. Utöver sina egna låtar framför bandet nostalgiska pop-/r'n'b-hitar från början av 2000-talet.</p>",
                "en": "<p>HEROINES is a pop trio aiming for international fame. In addition to original songs, the band perform nostalgic pop/R&B hits from the early 2000s.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60254/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59753",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3943,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:49.232418Z",
                    "last_modified_time": "2023-09-07T14:18:49.232464Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728747.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3943/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:48.975045Z",
            "last_modified_time": "2023-09-11T21:16:01.268541Z",
            "date_published": null,
            "start_time": "2023-07-17T14: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,
            "name": {
                "fi": "Kaupunkitanssit Malminkartanossa",
                "sv": "Stadsdans i Malmgård",
                "en": "City Dances in Malminkartano"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Kesällä 2023 opetellaan jälleen paritansseja! Kaupunkitanssikesä tuo ilmaiset tanssituokiot ilahduttamaan ja virkistämään pääkaupunkiseudun asukkaiden elämää.",
                "sv": "Rörelsen börjar i höfterna!",
                "en": "Movement starts from the hips!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/DA30AD7672E7E18EA3F663C28A518190/Kaupunkitanssit_Malminkartanossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/DA30AD7672E7E18EA3F663C28A518190/Stadsdans_i_Malmgard",
                "en": "http://www.kanneltalo.fi/en/events/event/DA30AD7672E7E18EA3F663C28A518190/City_Dances_in_Malminkartano"
            },
            "description": {
                "fi": "<p>Kesällä 2023 opetellaan jälleen paritansseja! Kaupunkitanssikesä tuo ilmaiset tanssituokiot ilahduttamaan ja virkistämään pääkaupunkiseudun asukkaiden elämää.</p><p>Mukaan tanssimaan voi tulla milloin vain. Ennakkoilmoittautumista ei tarvita. Opetuksesta vastaavat koulutetut tanssinopettajat. Seuraathan tanssipäivän säätä: kovalla sateella tanssit peruuntuvat. Peruutuksesta kerrotaan Kaupunkitanssien Facebookissa (www.facebook.com/Kaupunkitanssit)<br> <br>Kesän 2023 tanssit: <br>ma 5.6. foksi<br>ma 12.6. valssi<br>ma 19.6. samba<br>ma 26.6. bugg<br>ma 3.7.  humppa<br>ma 10.7. fusku<br>ma 17.7.  tango<br>ma 24.7. jenkka <br>ma 31.7. cha cha<br>ma 7.8. masurkka</p><p>Yhteistyössä: Tanssiteatteri Tsuumi  <br>Opetuskieli: suomi</p>",
                "sv": "<p>Rörelsen börjar i höfterna!</p><p>Tanssiteatteri Tsuumi leder dansövningarna där vem som helst kan delta och prova på olika dansstilar och njuta av rörelseglädjen i det fria.</p><p>Den exakta platsen kommer att bekräftas senare.</p>",
                "en": "<p>Movement starts from the hips!</p><p>Under Dance Theatre Tsuumi’s guidance, everyone can try out various types of dance and enjoy the joy of motion outdoors.</p><p>The exact location will be confirmed later.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59753/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60253",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3942,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:48.233373Z",
                    "last_modified_time": "2023-09-07T14:18:48.233399Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730420.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3942/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:47.898846Z",
            "last_modified_time": "2023-09-11T21:15:58.566110Z",
            "date_published": null,
            "start_time": "2023-07-17T14: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,
            "name": {
                "fi": "Open Stage: Sharyn Hope",
                "sv": "Open Stage: Sharyn Hope",
                "en": "Open Stage: Sharyn Hope"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Sharyn Hope luo kipeistä kokemuksistaan raikasta indie-poppia. Herkät laulut kuljettavat kuulijan maailmaan, jossa kaikille tunteille on tilaa.",
                "sv": "Sharyn Hope skapar fräsch indie-pop av sina smärtsamma erfarenheter. De sensibla låtarna för åhöraren till en värld, där det finns plats för alla känslor.",
                "en": "Sharyn Hope creates fresh indie pop from her own painful experiences. Her emotive songs take listeners to a world where there is room for all emotions."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/45886D200F636FD760CF3A8A36917425/Open_Stage_Sharyn_Hope",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/45886D200F636FD760CF3A8A36917425/Open_Stage_Sharyn_Hope",
                "en": "http://www.espanlava.fi/en/events/event/45886D200F636FD760CF3A8A36917425/Open_Stage_Sharyn_Hope"
            },
            "description": {
                "fi": "<p>Sharyn Hope luo kipeistä kokemuksistaan raikasta indie-poppia. Herkät laulut kuljettavat kuulijan maailmaan, jossa kaikille tunteille on tilaa.</p>",
                "sv": "<p>Sharyn Hope skapar fräsch indie-pop av sina smärtsamma erfarenheter. De sensibla låtarna för åhöraren till en värld, där det finns plats för alla känslor.</p>",
                "en": "<p>Sharyn Hope creates fresh indie pop from her own painful experiences. Her emotive songs take listeners to a world where there is room for all emotions.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60253/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60252",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3941,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:47.653055Z",
                    "last_modified_time": "2023-09-07T14:18:47.653087Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732111.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3941/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:47.505334Z",
            "last_modified_time": "2023-09-11T21:15:57.517042Z",
            "date_published": null,
            "start_time": "2023-07-16T14: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,
            "name": {
                "fi": "Maja Mannila Trio",
                "sv": "Maja Mannila Trio",
                "en": "Maja Mannila Trio"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Maja Mannila on Suomen jazz-kentän suuriin lupauksiin kuuluva nuori jazz/soul-laulaja, pianisti ja säveltäjä.",
                "sv": "Maja Mannila är en ung jazz/soul-sångare, pianist och kompositör som tillhör de stora löftena inom Finlands jazzfält.",
                "en": "Maja Mannila is one of the most promising young artists in the Finnish jazz scene as a jazz/soul singer, pianist and composer."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/FB4B9DCD3AECEA15F01F91CC8EFB16B4/Maja_Mannila_Trio",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/FB4B9DCD3AECEA15F01F91CC8EFB16B4/Maja_Mannila_Trio",
                "en": "http://www.espanlava.fi/en/events/event/FB4B9DCD3AECEA15F01F91CC8EFB16B4/Maja_Mannila_Trio"
            },
            "description": {
                "fi": "<p>Maja Mannila on Suomen jazz-kentän suuriin lupauksiin kuuluva nuori jazz/soul-laulaja, pianisti ja säveltäjä.</p><p>Yhtyeensä kanssa hän esittää omia, englanninkielisiä kappaleitaan, jotka ovat tyyliltään sekoitus r'n'b-tä, soulia, jazzia ja gospel-musiikkia. Maja Mannila Triossa Mannilan kanssa musisoivat Severi Sorjonen (rummut) ja Johannes Granroth (basso). Yhtye valittiin vuoden 2023 Nordic Jazz Comets -tapahtumaan edustamaan suomalaista uutta jazzia. Majan esikoisalbumi \"Up and Down\" julkaistiin kesäkuussa 2022 ja seuraava albumi on tulossa syksyllä 2023.</p>",
                "sv": "<p>Maja Mannila är en ung jazz/soul-sångare, pianist och kompositör som tillhör de stora löftena inom Finlands jazzfält.</p>",
                "en": "<p>Maja Mannila is one of the most promising young artists in the Finnish jazz scene as a jazz/soul singer, pianist and composer.</p><p>Together with her band she performs her own songs in English, in a style combining r'n'b, soul, jazz and gospel. In Maja Mannila Trio she plays together with Severi Sorjonen (drums) and Johannes Granroth (bass). Maja Mannila Trio was selected for the 2023 Nordic Jazz Comets event to represent Finnish new jazz. Maja's debut album \"Up and Down\" was released in June 2022 and the next album will be out in autumn 2023.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60252/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60251",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3940,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:47.272455Z",
                    "last_modified_time": "2023-09-07T14:18:47.272484Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730250.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3940/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:47.112410Z",
            "last_modified_time": "2023-09-11T21:15:57.334949Z",
            "date_published": null,
            "start_time": "2023-07-16T11: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,
            "name": {
                "fi": "Jesse van Ruller Trio (NED)",
                "sv": "Jesse van Ruller Trio (NED)",
                "en": "Jesse van Ruller Trio (NED)"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Jesse van Ruller on empaattisesta ja virtuoottisesta soittotyylistään tunnettu hollantilainen jazzkitaristi ja säveltäjä.",
                "sv": "Jesse van Ruller är en empatisk holländsk jazzgitarrist och kompositör som är känd för sin virtuosa spelstil.",
                "en": "Jesse van Ruller is a Dutch jazz guitarist and composer known for his empathetic and virtuosic playing style."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/132B1295EDF2C50A9D7A0CE37590CE49/Jesse_van_Ruller_Trio_NED_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/132B1295EDF2C50A9D7A0CE37590CE49/Jesse_van_Ruller_Trio_NED_",
                "en": "http://www.espanlava.fi/en/events/event/132B1295EDF2C50A9D7A0CE37590CE49/Jesse_van_Ruller_Trio_NED_"
            },
            "description": {
                "fi": "<p>Jesse van Ruller on empaattisesta ja virtuoottisesta soittotyylistään tunnettu hollantilainen jazzkitaristi ja säveltäjä.</p><p>Hän voitti arvostetun Thelonious Monk -palkinnon ensimmäisenä eurooppalaisena vuonna 1995. Van Ruller on soittanut omassa yhtyeessään Jesse van Ruller Triossa sekä muiden jazzsuuruuksien, kuten Pat Methenyn, Toots Thielemansin, Peter Erskinen, Joe Lovanon, Mike Sternin, Roy Hargroven ja Christian McBriden yhtyeissä.</p><p>Jesse van Ruller - kitara<br>Kaisa Mäensivu - basso<br>Joe Peri - rummut</p>",
                "sv": "<p>Jesse van Ruller är en empatisk holländsk jazzgitarrist och kompositör som är känd för sin virtuosa spelstil.</p><p>Han vann det ansedda Thelonious Monk-priset 1995 som första europé. Van Ruller har spelat i sitt eget band Jesse van Ruller Trio och med andra jazzstorheters band såsom Pat Metheny, Toots Thielemans, Peter Erskinen, Joe Lovano, Mike Sterni, Roy Hargrove och Christian McBride.</p>",
                "en": "<p>Jesse van Ruller is a Dutch jazz guitarist and composer known for his empathetic and virtuosic playing style.</p><p>He is the first European to win the prestigious Thelonious Monk Award in 1995. He has become familiar through his own group, the Jesse van Ruller Trio, as well as collaborations with other jazz greats such as Pat Metheny, Toots Thielemans, Peter Erskine, Joe Lovano, Mike Stern, Roy Hargrove, and Christian McBride.</p><p>Jesse van Ruller - guitar<br>Kaisa Mäensivu - bass<br>Joe Peri - drums.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60251/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60250",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3939,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:46.826505Z",
                    "last_modified_time": "2023-09-07T14:18:46.826532Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732105.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3939/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:46.613998Z",
            "last_modified_time": "2023-09-11T21:15:57.137127Z",
            "date_published": null,
            "start_time": "2023-07-14T14: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,
            "name": {
                "fi": "Aleksi Heinola Quartet",
                "sv": "Aleksi Heinola Quartet",
                "en": "Aleksi Heinola Quartet"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Aleksi Heinola on koonnut kvartettinsa kansainvälisistä, nimekkäistä huippumuusikoista.",
                "sv": "Aleksi Heinola har sammanställt sin kvartett av internationella, ryktbara toppmusiker.",
                "en": "The Aleksi Heinola Quartet consists of top-of-the-line players from Scandinavia and Europe."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3E845D712A4A3A0380662AAA44B850DC/Aleksi_Heinola_Quartet",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/3E845D712A4A3A0380662AAA44B850DC/Aleksi_Heinola_Quartet",
                "en": "http://www.espanlava.fi/en/events/event/3E845D712A4A3A0380662AAA44B850DC/Aleksi_Heinola_Quartet"
            },
            "description": {
                "fi": "<p>Aleksi Heinola on koonnut kvartettinsa kansainvälisistä, nimekkäistä huippumuusikoista.</p><p>Yhtyeen soundi on rikas, energinen ja upean elegantti. Soitossa on svengaavaa groovea ja muusikoiden välistä vuorovaikutusta. Kvartetin musiikissa vahvat juuret ovat 60-luvun ajattoman trendikkäässä hard bop -perinteessä, modernilla twistillä. Kokoonpanon ohjelmisto muodostuu omista sävellyksistä sekä harvemmin kuulluista jazz-klassikoista.</p><p>Muusikoiden joustavuus ja huikea taito mahdollistavat musiikillisen repertuaarin laajuuden, mikä luo keikoille vapaan ja spontaanin tunteen tehden esiintymisestä ainutlaatuisen kokemuksen kuulijoille.</p><p>Gabor Bolla – tenor sax<br>Jukkis Uotila – piano<br>Daniel Franck – bass<br>Aleksi Heinola – drums</p>",
                "sv": "<p>Aleksi Heinola har sammanställt sin kvartett av internationella, ryktbara toppmusiker.</p><p>Bandets sound är rikt, energiskt och underbart elegant. Spelandet består av svängande groove och interaktion mellan musikerna. Kvartettens musik har starka rötter i 60-talets tidlösa trendiga hard bop-tradition, med en modern twist. Sammansättningens programutbud består av egna kompositioner och mera sällan hörda jazz-klassiker.</p>",
                "en": "<p>The Aleksi Heinola Quartet consists of top-of-the-line players from Scandinavia and Europe.</p><p>The sound of the group is rich and energetic, yet elegant, packed with lots of swingin’ groove and fine interplay based on the firm roots of the timeless & hip 60’s Hard Bop tradition with a modern twist. The quartet recorded it’s first album in September 2021. The albumreleased by Jazzaggression Records in April 2023, consists of both original compositions by the members of the band, as well as tunes by legendary masters of the music, such as Wayne Shorter, Joe Henderson and Thelonious Monk. This combination of musical flavors is exactly what you would hear in a live performance by this group. The flexibility and knowledge of the musicians allows the quartet to have a wide repertoire of music at hand, which gives the group a sense of freedom and spontaneity to make every concert a unique experience for both the musicians and the audience.</p><p>Gabor Bolla – tenor sax<br>Jukkis Uotila – piano<br>Daniel Franck – bass<br>Aleksi Heinola – drums</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60250/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60249",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-1/?format=api"
            },
            "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:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3938,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:46.227668Z",
                    "last_modified_time": "2023-09-07T14:18:46.227692Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728530.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3938/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:45.508389Z",
            "last_modified_time": "2023-09-11T21:15:56.918301Z",
            "date_published": null,
            "start_time": "2023-07-14T11: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,
            "name": {
                "fi": "MIL-Espa: Laivaston soittokunnan varusmiesbändi"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "MIL-Espa-puistokonsertit ovat viihdyttäneet yleisöjä kesäisin vuodesta 1927 lähtien Esplanadin puistossa."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/2FF84B5BCF7F30BE108E5FB02F61D109/MIL-Espa_Laivaston_soittokunnan_varusmiesbandi"
            },
            "description": {
                "fi": "<p>MIL-Espa-puistokonsertit ovat viihdyttäneet yleisöjä kesäisin vuodesta 1927 lähtien Esplanadin puistossa.</p><p>Viihteelliset konsertit järjestetään Espan lavalla kesäperjantaisin ja lavan ottavat vuorollaan haltuun sotilassoittokuntien eri kokoonpanot ympäri Suomen. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60249/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59785",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3922,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:34.007086Z",
                    "last_modified_time": "2023-09-07T14:18:34.007121Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729178.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3922/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:33.392530Z",
            "last_modified_time": "2023-09-11T21:15:56.148835Z",
            "date_published": null,
            "start_time": "2023-05-20",
            "end_time": "2023-09-30",
            "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,
            "name": {
                "fi": "Stoan aukion Kadonnut lehto",
                "sv": "Den försvunna lunden på Stoaplatsen",
                "en": "The Lost Grove of Stoa Square"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Stoan aukiolle nousee kadonnut tammilehto, jossa laulavat sukupuuttoon kuolleet linnut.",
                "sv": "På Stoaplatsen reser sig en försvunnen eklund där utrotade fåglar sjunger.",
                "en": "A lost oak grove will be set up on Stoa Square, where you will be able to hear the song of extinct birds."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/FAD258986DB0F984B6EF1F93EFCF282D/Stoan_aukion_Kadonnut_lehto_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/FAD258986DB0F984B6EF1F93EFCF282D/Den_forsvunna_lunden_pa_Stoaplatsen_",
                "en": "http://www.stoa.fi/en/events/event/FAD258986DB0F984B6EF1F93EFCF282D/The_Lost_Grove_of_Stoa_Square"
            },
            "description": {
                "fi": "<p>Stoan aukiolle nousee kadonnut tammilehto, jossa laulavat sukupuuttoon kuolleet linnut.</p><p>Kadonneessa lehdossa kasvaa suomalaisista metsistä vähentyneitä lehtipuita kuten tammia, lehmuksia, jalavia ja pähkinäpensaita. Maannosta peittää kuivan lehdon aluskasvillisuus sekä karike ja lahopuu.</p><p>Maisemaa elävöittää metsäympäristön äänistä koostuva ääni-installaatio, jonka pääosaa esittää eri sukupuuttoon kuolleiden lintulajien taltioidut laulut. Lintujen laulua säestää metsän eri vuorokauden aikoja ja niiden tunnelmia mukaileva sävellys, joka on <b>Kasperi Laineen</b> käsialaa. Voit nauttia äänimaisemasta myös kupolikasvihuoneen rauhassa leväten.</p><p>Stoan miniatyyrilehto on palapelin pala menneestä ajasta ja mahdollisesta tulevasta. Se on kriittinen kannanotto tämänhetkiseen luontokatoon ja aikakauteen, jota kutsutaan myös antroposeeniksi.</p><p>Syksyn saapuessa lehdon puut ja kasvillisuus lahjoitetaan kohteisiin, joista lähimetsä puuttuu. Voit ehdottaa kohteita laittamalla viestiä osoitteeseen hanna.westerholm@hel.fi.</p><p><b>Antti Annanpalo</b> (s. 1982) on helsinkiläinen taiteilija, viherartesaani ja hortonomiopiskelija. Hän on toiminut rakentajana lukuisilla festivaaleilla, eri teattereissa ja koulupuutarhoissa. Annanpalo on taiteilijayhdistys Yö ry:n perustajajäseniä ja toimii aktiivisesti kulttuurin eri kentillä.</p><p><b>Kasperi Laine</b> (TEM) on opiskellut äänisuunnittelua Teatterikorkeakoulun Valo- ja äänisuunnittelun laitoksella vuosina 2001–2006. Hän on toteuttanut vastaavanlaisia julkisen tilan ääniteoksia mm. Helsingin Senaatintorille (Reflections 2010), Prahan Ovocny-aukiolle ja Mansdeld Palatsiin (Praque Quadriennale 2015) sekä Unkarin Budapestiin, Tonavan varrelle vuonna 2017 (osana Suomi 100 -juhlaa).</p><p>Laine on palkittu sävellys- ja äänisuunnittelutöistään mm. Suomi-palkinnolla 2015, Light Moves Festival of Screendance-festivaaleilla 2017, Tampereen, Ederan ja Chhatrapati Shijavin Filmifestivaaleilla, Jussi-Palkinnolla vuonna 2020 (Kaksi Ruumista Rannalla, parhaan lyhytelokuvan palkinto), sekä hän on ollut ehdolla Teosto-palkinnon saajaksi sooloalbumillaan Vihapuheita ja Rakkauslauluja, vuonna 2018.</p>",
                "sv": "<p>På Stoaplatsen reser sig en försvunnen eklund där utrotade fåglar sjunger.</p><p>I den försvunna lunden växer lövträd som blir allt färre i de finländska skogarna, såsom ekar, lindar, almar och hasselbuskar. Ljudinstallationen med skogens ljud, där inspelningar av utdöda fågelarters sång spelar huvudrollen, väcker landskapet till liv. Fågelsången ackompanjeras av en komposition av Kasperi Laine som följer i spåren av de olika årstiderna och stämningen under dem i skogen. Du kan också lägga dig i kupolväxthuset för att vila och njuta av ljudlandskapet där.<br> <br>När hösten kommer doneras träden och växterna i lunden till platser som saknar närskog. Föreslå en plats genom att skicka ett meddelande till hanna.westerholm@hel.fi.<br> <br>Antti Annanpalo (f. 1982) är en konstnär, grönartesan och hortonomstuderande från Helsingfors. Kasperi Laine (magister i teatervetenskap) har studerat ljuddesign på Teaterhögskolans avdelning för ljus- och ljuddesign och skapat motsvarande offentliga ljudverk bland annat på Senatstorget i Helsingfors.</p>",
                "en": "<p>A lost oak grove will be set up on Stoa Square, where you will be able to hear the song of extinct birds.</p><p>The lost grove will feature deciduous trees that have become scarcer in Finnish forests, such as oaks, lindens, elms and hazel. The landscape will be brought to life by a sound installation consisting of forest sounds in which the focus is on recordings of the song of various extinct birds. The bird song will be accompanied by a composition by Kasperi Laine, which will shift with the various seasons of the forest and mirror their atmosphere. You can also enjoy the soundscape in the restful calm of the greenhouse dome.<br> <br>With the arrival of autumn, the trees and plants of the grove will be donated to locations that lack local forests. You can suggest locations by sending a message to hanna.westerholm@hel.fi.<br> <br>Antti Annanpalo (born 1982) Helsinki-based artist, greenery artisan and student of horticulture. Kasperi Laine (Master of Theatre Arts) studied audio design at the Theatre Academy’s Department of Lighting and Sound Design and provided similar public sound installations for Senate Square in Helsinki, for example.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59785/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264713",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8308/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2907,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:34:27.702812Z",
                    "last_modified_time": "2023-08-15T15:34:27.702833Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{FEDE6E3D-4ABD-4058-AAC2-2A3A76F2A4FF}/104707",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2907/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:34:27.582660Z",
            "last_modified_time": "2023-09-11T18:24:26.409257Z",
            "date_published": "2023-08-02T21:00:00Z",
            "start_time": "2023-09-11T15:00:00Z",
            "end_time": "2023-09-11T16: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,
            "name": {
                "fi": "Euroopan kuohuva vuosisata 1848-1945 -esitelmällinen konsertti"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Sellotaiteilija Olli Varonen"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Musiikkia ja historiaa esitelmällisen konsertin muodossa <strong>Viikin kirjastossa ma 11.9. klo 18.</strong> Kuulemme sellotaiteilija<strong> Olli Varosen</strong> esittämänä musiikkia säveltäjiltä, jotka ovat eläneet lapsuuttaan tai nuoruuttaan vuosina 1848-1945. Säveltäjänimistä mainittakoon Britten, Reger, Cassado sekä oma mestarimme Jean Sibelius. Myös unkarilaisella ja katalonialaisella kansanmusiikilla on konsertissa sijansa.</p><p>Sellotaiteilija Olli Varonen haluaa yhdistää keskenään historiaa ja musiikkia – näin syntyi formaatti ”Esitelmällinen konsertti”. Olli Varonen on opiskellut Sibelius-akatemiassa ja Budapestin Liszt-akatemiassa. Hän on esittänyt kaiken kaikkiaan noin 1500 soolo- ja kamarimusiikkikonserttia 14 maassa ja neljässä maanosassa.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264713/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265283",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2908,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:34:28.395551Z",
                    "last_modified_time": "2023-08-15T15:34:28.395573Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{4AEE60FC-1CE2-4259-A169-E3C1D69B40C8}/104891",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2908/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:34:28.274589Z",
            "last_modified_time": "2023-09-11T17:24:28.273839Z",
            "date_published": "2023-08-14T11:56:06.643000Z",
            "start_time": "2023-09-11T15:00:00Z",
            "end_time": "2023-09-11T16: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,
            "name": {
                "fi": "Alkoholismi ja läheiset - Näkökulmia, kokemuksia ja keskustelua"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Kaija"
            },
            "short_description": {
                "fi": "Ei minulla ole mitään ongelmaa – voiko alkoholismista pelastaa? on sisarusten Nelli Niemelä ja Aki Saariaho kirjoittama kirja, jonka aiheena on päihderiippuvuus. Kirja ilmestyy elokuussa 2023."
            },
            "info_url": null,
            "description": {
                "fi": "<h3>Maanantaina 11.9. klo 18 Tapahtumatila Kaijassa</h3><p>Ei minulla ole mitään ongelmaa – voiko alkoholismista pelastaa? on sisarusten Nelli Niemelä ja Aki Saariaho kirjoittama kirja, jonka aiheena on päihderiippuvuus. Kirja ilmestyy elokuussa 2023.</p><p>Kirjailijat ovat paikalla kertomassa kokemuksiaan ja keskustelemassa aiheesta. ”Päihderiippuvaisen vääristynyt todellisuus. Sisarusten koskettava vuoropuhelu elämänpituisesta matkasta päihderiippuvuuden kanssa. Ymmärtääkö alkoholisti sitä tuskaa, jota hän muille tuottaa? Miltä alkoholistin läheisestä tuntuu? Voiko viinan vankia auttaa? Sisarukset käyvät läpi päihteiden tuhoamaa elämää ja sitä, voiko päihderiippuvuudesta parantua.” Nelli Niemelä on kaupunginvaltuutettu Keravalla. Aki Saariaho toimii opettajana Espoossa sekä on paikallispolitiikassa mukana.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265283/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267627",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3853,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-04T10:24:38.285710Z",
                    "last_modified_time": "2023-09-04T10:24:38.285741Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{8BBEB419-DDF3-41A4-81B1-D93D24AE9D13}/105523",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3853/?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:p2433/?format=api"
                }
            ],
            "created_time": "2023-09-04T10:24:37.102694Z",
            "last_modified_time": "2023-09-11T17:24:07.035589Z",
            "date_published": "2023-09-04T09:22:26.693000Z",
            "start_time": "2023-09-11T07:00:00Z",
            "end_time": "2023-09-11T09: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,
            "name": {
                "fi": "Vapaaehtoiseksi Uudenmaan Muistiluotsille – info"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Akseli-sali"
            },
            "short_description": {
                "fi": "Kiinnostaisiko sinua monipuoliset vapaaehtoistehtävät, jotka liittyvät muistisairaiden ja heidän läheistensä tukemiseen tai muistin huoltoon liittyviin tehtäviin?"
            },
            "info_url": null,
            "description": {
                "fi": "<h3>Maanantaina 11.9. klo 10 Akseli-salissa</h3><p>Kiinnostaisiko sinua monipuoliset vapaaehtoistehtävät, jotka liittyvät muistisairaiden ja heidän läheistensä tukemiseen tai muistin huoltoon liittyviin tehtäviin?</p><p>Tule kuuntelemaan kaikille avointa infoa Uudenmaan Muistiluotsin toiminnasta sekä vapaaehtoistoiminnan mahdollisuuksista klo 10!</p><p>Lisätiedot: puh. 0400 364 453 s-posti: <a href=\"mailto:toimisto@espoonmuisti.fi\">toimisto@espoonmuisti.fi</a></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267627/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:262394",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2583,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:56.358060Z",
                    "last_modified_time": "2024-02-06T13:38:20.061617Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{7B97672D-46A1-46F8-BC66-7CF2AAEA2D3C}/92303",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2583/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:28:19.153723Z",
            "last_modified_time": "2023-09-11T15:17:52.745605Z",
            "date_published": "2023-01-11T13:49:00Z",
            "start_time": "2023-08-11T15:00:00Z",
            "end_time": "2023-08-11T16: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,
            "name": {
                "fi": "Lasten perjantaileffa",
                "sv": "Fredagsfilm för barn i Sello bibliotek",
                "en": "Friday movie for children"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "short_description": {
                "fi": "Tule nauttimaan perjantaileffasta!",
                "sv": "Välkommen med på filmfredag!",
                "en": "Welcome to spend your time together with a friday movie at Sello Library!"
            },
            "info_url": null,
            "description": {
                "fi": "<h3>Perjantaisin klo 18</h3><p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Sellon kirjaston Jaminurkassa järjestetään joka perjantai klo 18:00 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan. </p>",
                "sv": "<h3>Fredagar kl. 18</h3><p>Välkommen med på filmfredag! I Sellobibliotekets Jaminurkka ordnas det varje fredagkväll kl. 18.00 en filmvisning för barn och familjer. Vi väljer filmerna utifrån barnens önskemål. Kom och berätta ditt önskemål till bibliotekets personal och bekanta dig med schemat för filmvisningarna på barnavdelningen i Sellobiblioteket.</p><p>Filmerna har rekommendationsålder T (tillåten för alla åldrar) eller 7 (tillåten för barn över 7 år). Språket för föreställningen är finska. Språket för textningen väljs enligt barnens önskemål.</p>",
                "en": "<h3>Fridays at 6 pm.</h3><p>Welcome to spend your time together with a friday movie at Sello Library! The movies take place in Jaminurkka at Sello Library every friday at 18:00 for children, families and for the child-minded people. The films are chosen by children from their wishes. </p><p>All films are recommended of age S and K7. The presentation language is Finnish. The texts are chosen by the children from their request. </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262394/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:261111",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2582,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:56.013746Z",
                    "last_modified_time": "2024-02-06T13:38:19.975977Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{01BC4216-05F3-473B-9AFD-A97E7DF6C732}/95619",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2582/?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:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:28:18.789965Z",
            "last_modified_time": "2023-09-11T15:17:52.366802Z",
            "date_published": "2022-12-22T13:03:00Z",
            "start_time": "2023-08-11T14:00:00Z",
            "end_time": "2023-08-11T16: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,
            "name": {
                "fi": "Lasten perjantaileffa"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Nuortentila"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Valitsemme yhdessä elokuvan muutamasta vaihtoehdosta tapahtuman alkaessa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p><p>ELOKUVAN AIKANA PELIT OVAT POIS KÄYTÖSTÄ.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261111/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:258170",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19217/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2579,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:53.145065Z",
                    "last_modified_time": "2024-02-06T13:38:58.746360Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9B2F9EC8-37D0-4863-B9F6-C2641C8D4462}/90602",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2579/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:28:16.101606Z",
            "last_modified_time": "2023-09-10T15:22:42.014469Z",
            "date_published": "2023-04-19T07:52:00Z",
            "start_time": "2023-08-10T14:00:00Z",
            "end_time": "2023-08-10T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pelataan lautapelejä (aikuisille ja nuorille)"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tule kokeilemaan erilaisia lautapelejä! Tapahtuma on suunnattu nuorille ja aikuisille. Yhteistyössä Suomen lautapeliseura ryn kanssa."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa pelaamaan erilaisia lautapelejä joka torstai klo 17-20!<br><br> Martinlaakson kirjaston lautapelikerho on suunnattu nuorille ja aikuisille. Huomaathan että osassa peleistä tekstit ja säännöt ovat englanniksi.<br><br> Kerhon järjestää Suomen lautapeliseura ry.</p><p>Pelitietoa: <a href=\"https://lautapeliseura.fi/\">lautapeliseura.fi</a></p><p>Kuva: Pixabay.com</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:258170/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:250742",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2578,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:52.363859Z",
                    "last_modified_time": "2024-02-06T13:38:18.690807Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{01207B38-3272-47FF-9C7B-D7AA8655856D}/76557",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2578/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:28:15.087411Z",
            "last_modified_time": "2023-09-10T15:22:41.791171Z",
            "date_published": "2022-12-28T13:57:00Z",
            "start_time": "2023-08-10T14:00:00Z",
            "end_time": "2023-08-10T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Harrastelijasoittajien jamit – avoin ryhmä"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Musiikkiosasto, 1. krs"
            },
            "short_description": {
                "fi": "Tule soittelemaan ja laulamaan helppoja ja tuttuja lauluja Tikkurilan kirjaston musiikkiosaston soittohuoneeseen torstaisin klo 17-20."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule soittelemaan ja laulamaan helppoja ja tuttuja lauluja Tikkurilan kirjaston musiikkiosaston soittohuoneeseen torstai-iltaisin.</p><p>Soitetaan ensin alkuperäisartistien tulkintojen mukana, minkä jälkeen porukka itse päättää mihin suuntaan edetään ja millaisia lauluja soitetaan. Apuvälineinä ovat soittohuoneen äänen- ja kuvantoistolaitteet. Sointumerkinnät ja rajallinen määrä nuotteja ovat käytettävissä. Kaikenlaiset soittimet ovat tervetulleita.</p><p>Ei ennakkoilmoittautumista. Maksuton.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:250742/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:247019",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2577,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:51.467089Z",
                    "last_modified_time": "2024-02-06T13:38:18.601860Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{BEFEF0D1-0268-4938-8B30-4A52D0E09590}/82643",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2577/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:28:14.180452Z",
            "last_modified_time": "2023-09-10T15:22:41.294089Z",
            "date_published": "2020-01-01T10:34:00Z",
            "start_time": "2023-08-10T13:00:00Z",
            "end_time": "2023-08-10T16: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,
            "name": {
                "fi": "Lautapelikerho"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Akseli-sali"
            },
            "short_description": {
                "fi": "Lautapeliseuran lautapelikerho kokoontuu torstaisin ympäri vuoden"
            },
            "info_url": null,
            "description": {
                "fi": "<h3>Torstaisin klo 16-19.45 Akseli-salissa</h3><p> <strong>Torstaina 2.3. kerho kokoontuu poikkeuksellisesti Kulttuuritilassa.</strong> </p><p>Lautapeliseuran järjestämä aikuisille suunnattu pelikerho.</p><p> <br> Lisätietoja ja poikkeusaikoja ja -paikkoja: <strong><a href=\"http://www.lautapeliseura.fi/foorumi/\">foorumi</a> </strong><br><br> Pelitietoa <a href=\"http://www.lautapeliseura.fi\">http://www.lautapeliseura.fi</a> <a href=\"https://www.facebook.com/pages/Suomen-lautapeliseura/164470176919869\">Facebookissa</a></p><p>Tervetuloa!<br><br> * * * <br><br> Lautapelikerho jatkuu torstaisin ympäri vuoden. Poikkeuksena sellaiset juhlapyhät, jolloin kirjasto on suljettuna. Jos kirjasto suljetaan klo 18, niin lautapelikerho on klo 17.45 asti.</p><p>Kuva <a href=\"https://unsplash.com/@introspectivedsgn\">Erik Mclean</a></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:247019/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264717",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8178/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?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:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2575,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:50.733857Z",
                    "last_modified_time": "2024-02-06T13:38:17.889360Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{CD6BF035-CFD3-4E01-95C4-729AE0A0869A}/91567",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2575/?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:p6165/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:28:13.464993Z",
            "last_modified_time": "2023-09-10T14:20:35.797795Z",
            "date_published": "2023-07-02T13:00:00Z",
            "start_time": "2023-08-10T13:00:00Z",
            "end_time": "2023-08-10T16: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,
            "name": {
                "fi": "Digituki maahanmuuttajille / Digital support for immigrants"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Digituki maahanmuuttajille auttaa suomeksi, englanniksi, somaliksi ja arabiaksi. Varaa oma opastusaikasi kirjastosta."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Torstaisin klo 16 – 19.<br> Opastus suomeksi, englanniksi, somaliksi ja arabiaksi. <br> Digituen ajat ovat 16-16.45, 16.45-17.30, 17.30-18.15 ja 18.15-19. <br> Varaa 45 min tapaamisaika soittamalla kirjaston numeroon 09-310 85094.</p><p>Maksuton palvelu. <br> Tervetuloa!</p><p>**********</p><p>On Thursdays from 4 to 7 pm.<br> Support available in Finnish, English, Somali and Arabic.<br> Appointment times: 4.00-4.45, 4.45-5.30, 5.30-6.15 and 6.15-7 pm. <br> Call the library to make an appointment, tel: 09-31085094.</p><p>Free service. <br> Welcome! </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264717/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}