Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 4966,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=245&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=243&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:60324",
            "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:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3970,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:19:05.522429Z",
                    "last_modified_time": "2023-09-07T14:19:05.522461Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730299.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3970/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:19:05.065267Z",
            "last_modified_time": "2023-09-11T21:16:18.177258Z",
            "date_published": null,
            "start_time": "2023-07-28T15: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A5A7B8FFCBA3C621643DCAD1DBBBEE15/Opal_Ocean_AUS_",
                "en": "http://www.espanlava.fi/en/events/event/A5A7B8FFCBA3C621643DCAD1DBBBEE15/Opal_Ocean_AUS_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Opal Oceanin musiikki yhdistää taiturimaista tekniikkaa, hypnotisoivaa akustista ääntä ja psykedeelisiä vivahteita."
            },
            "description": {
                "fi": "<p>Opal Oceanin musiikki yhdistää taiturimaista tekniikkaa, hypnotisoivaa akustista ääntä ja psykedeelisiä vivahteita.</p><p>Vuonna 2015 australialaiset Alex Champ ja Nadav Tabak herättivät kuulijoiden mielenkiinnon Terra-EP:llään. Tästä alkoi ainutlaatuinen matka kohti menestystä.</p><p>Ensimmäinen single \"J.A.M.\" sai valtavan suosion ja yli 30 miljoonaa toistokertaa eri sosiaalisen median alustoilla. Tämä osoitti heti, että Alex ja Nadav olivat luomassa jotain erityistä.</p><p>Vuonna 2016 he julkaisivat monumentaalisia ja kiehtovia kappaleita sisältävän debyyttialbuminsa Lost Fables. Albumin ansiosta heidän nimensä vakiintui maailmanlaajuisesti. Vuonna 2020 julkaistiin toinen albumi The Hadal Zone.</p>",
                "en": "<p>After tantalizing listeners with a taste of what they were capable of in 2015 with the release of their Terra EP, the Australia- based duo of Alex Champ & Nadav Tabak continued to chart their own unique & extraordinary journey towards success.</p><p>With the incredible response to their lead single “J.A.M.” going viral and racking up an astounding thirty-million hits across their various social media platforms online, it was instantly clear that Alex & Nadav were on to something special with their music as Opal Ocean, and they immediately set forth to craft a professional career & legacy that they could proudly call their own.</p><p>Through their intricate technique and intensely mesmerizing, psychedelically-tinged spin on the acoustic sound, Opal Ocean unleashed a monumental set of captivating songs for their full- length debut record Lost Fables in 2016, which would go on to establish their name across the globe as they toured through Canada, New Zealand, and Europe.</p><p>From significant highlights & achievements along the way like their crowd-funded single “Mexicana,” being featured at festivals, doing interviews, receiving critical acclaim from all corners of the map, and the release of their second album The Hadal Zone in 2020 – Opal Ocean surged throughout the scene with music that spoke volumes on behalf of their chemistry & authenticity.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Opal Ocean (AUS)",
                "en": "Opal Ocean (AUS)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60324/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60323",
            "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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3969,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:19:04.433539Z",
                    "last_modified_time": "2023-09-07T14:19:04.433576Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732108.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3969/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:19:04.120289Z",
            "last_modified_time": "2023-09-11T21:16:15.075217Z",
            "date_published": null,
            "start_time": "2023-07-28T12: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D575C6B43A0239FE7DA295FA73E78C2B/Anette_Akerlund_Loolo_Dzii",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/D575C6B43A0239FE7DA295FA73E78C2B/Anette_Akerlund_Loolo_Dzii",
                "en": "http://www.espanlava.fi/en/events/event/D575C6B43A0239FE7DA295FA73E78C2B/Anette_Akerlund_Loolo_Dzii"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Anette Åkerlund tuo Espan lavalle flamencolaulua ja -tanssia sekä mustalaislauluja Suomesta ja muista Euroopan maista Loolo dzii -yhtyeen kanssa.",
                "sv": "Tillsammans med Loolo dzii hämtar Anette Åkerlund flamencosången och -dansen samt zigenarsånger från Finland och andra europeiska länder upp på Esplanadestraden.",
                "en": "Anette Åkerlund brings flamenco songs and dance and Romany songs from Finland and other European countries to the Espa stage with the band Loolo dzii."
            },
            "description": {
                "fi": "<p>Anette Åkerlund tuo Espan lavalle flamencolaulua ja -tanssia sekä mustalaislauluja Suomesta ja muista Euroopan maista Loolo dzii -yhtyeen kanssa.</p><p>Anette Åkerlund on romanilauluperinteisiin sekä flamencolauluun ja -tanssiin erikoistunut laulaja, joka esittää omia kappaleitaan sekä perinteisiä suomalaisia mustalaislauluja ja flamencolaulua.<br>Hän on tekemässä levyä, jossa hän yhdistää flamencoa ja Suomen mustalaislauluperinnettä.</p><p>Hän on esiintynyt mm. madridilaisen Camerata Flamenco Project -trion kanssa sekä suomalaisten ja ruotsalaisten kansanmuusikoiden sekä romanimuusikoiden kanssa kansan- ja mustalaismusiikkitapahtumissa Pohjois- ja Baltian maissa, Ranskassa, Espanjassa, Sloveniassa, Slovakiassa, USA:ssa ja Intiassa.</p><p>Anette Åkerlund, laulu ja tanssi<br>Otso Krunasta, flamencokitara<br>Valfrid Åkerlund, kitara<br>Joni Vierre, sähkökitara<br>Javier Sánchez Pérez, basso<br>Ricardo Padilla, perkussiot<br>Lotta-Maria Heiskanen, viulu</p>",
                "sv": "<p>Tillsammans med Loolo dzii hämtar Anette Åkerlund flamencosången och -dansen samt zigenarsånger från Finland och andra europeiska länder upp på Esplanadestraden.</p><p>Anette Åkerlund är en sångare som specialiserat sig på rumänska sångtraditioner samt flamencosång och -dans. Hon framför sina egna låtar samt traditionella finska zigenarsånger och flamencosång.</p>",
                "en": "<p>Anette Åkerlund brings flamenco songs and dance and Romany songs from Finland and other European countries to the Espa stage with the band Loolo dzii.</p><p>Anette Åkerlund is a singer specialising in traditional Romany songs and flamenco songs and dance who performs original songs as well as traditional Finnish Romany songs and flamenco songs.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Anette Åkerlund & Loolo Dzii",
                "sv": "Anette Åkerlund & Loolo Dzii",
                "en": "Anette Åkerlund & Loolo Dzii"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60323/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60314",
            "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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3955,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:56.004291Z",
                    "last_modified_time": "2023-09-07T14:18:56.004344Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734075.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3955/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:55.796086Z",
            "last_modified_time": "2023-09-11T21:16:07.886470Z",
            "date_published": null,
            "start_time": "2023-07-22T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/92624F1EAE4513530987E098E5621633/Open_Stage_Aavekadut",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/92624F1EAE4513530987E098E5621633/Open_Stage_Aavekadut",
                "en": "http://www.espanlava.fi/en/events/event/92624F1EAE4513530987E098E5621633/Open_Stage_Aavekadut"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Aavekadut on uutta suomenkielistä rockmusiikkia soittava yhtye, jonka musiikissa yhdistyy eri vuosikymmenten rockin, kantrin ja folkin perintö.",
                "sv": "Aavekadut är ett band som spelar ny finskspråkig rockmusik. I bandets musik förenas flera årtiondens rock-, country- och folkarv.",
                "en": "Aavekadut is a band that play new Finnish-language rock music, combining the legacy of rock, country and folk from different decades."
            },
            "description": {
                "fi": "<p>Aavekadut on uutta suomenkielistä rockmusiikkia soittava yhtye, jonka musiikissa yhdistyy eri vuosikymmenten rockin, kantrin ja folkin perintö.</p><p>Persoonallisen äänimaiseman luomisessa osansa on akustisten soittimien käytöllä sähköisten rinnalla ja yhtyeen jäsenten laajalla kokemuksella eri genrejen parissa. Suomenkieliset sanoitukset tarjoavat kuulijalle valokuvamaisia hetkiä, jotka koostuvat muistojen riekaleista, paikoista ja tunnelmista. Lopputulos on silti kaukana kirjallisesta, ja bändin viehätysvoima syntyykin ennen kaikkea viiden jäsenen yhteissoitosta: musiikista, joka svengaa!</p><p>Laulu, akustinen kitara - Sami Nissinen<br>Sähkökitara - Viktor Lepistö<br>Mandoliini - Johannes Oksanen<br>Basso - Tatu Back<br>Rummut - Ville Keränen</p>",
                "sv": "<p>Aavekadut är ett band som spelar ny finskspråkig rockmusik. I bandets musik förenas flera årtiondens rock-, country- och folkarv.</p><p>I skapandet av ett personligt ljudlandskap spelar akustiska musikinstrument en betydande roll, vid sidan av de elektroniska instrumenten och gruppmedlemmarnas omfattande erfarenhet av olika genrer. De finskspråkiga texterna bjuder åhöraren på fotografiska stunder som består av minnesglimtar, platser och stämningar.</p>",
                "en": "<p>Aavekadut is a band that play new Finnish-language rock music, combining the legacy of rock, country and folk from different decades.</p><p>The band’s unique soundscape is contributed to by the playing of acoustic instruments alongside electric ones and the band members’ extensive experience in different genres. The Finnish lyrics provide the audience with photographic moments consisting of shreds of memories, places and moods.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Open Stage: Aavekadut",
                "sv": "Open Stage: Aavekadut",
                "en": "Open Stage: Aavekadut"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60314/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60313",
            "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:32/?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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3954,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:55.573175Z",
                    "last_modified_time": "2023-09-07T14:18:55.573195Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730422.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3954/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:55.392868Z",
            "last_modified_time": "2023-09-11T21:16:07.686746Z",
            "date_published": null,
            "start_time": "2023-07-22T11: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/8FB5D35D02073A485C157059908C4C70/Open_Stage_TribalTanssiKeskus",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/8FB5D35D02073A485C157059908C4C70/Open_Stage_TribalTanssiKeskus",
                "en": "http://www.espanlava.fi/en/events/event/8FB5D35D02073A485C157059908C4C70/Open_Stage_TribalTanssiKeskus"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "TribalTanssiKeskus on Helsingin ensimmäinen tanssistudio, joka erikoistuu Tribal Bellydance -tanssisuuntaukseen.",
                "sv": "TribalTanssiKeskus är Helsingfors första dansstudio, som specialiserar sig på Tribal Bellydance.",
                "en": "TribalTanssiKeskus is Helsinki's first dance studio specialising in Tribal Bellydance."
            },
            "description": {
                "fi": "<p>TribalTanssiKeskus on Helsingin ensimmäinen tanssistudio, joka erikoistuu Tribal Bellydance -tanssisuuntaukseen.</p><p>Näytöksessä nähdään lumoava kattaus koreografioita, improvisaatioesityksiä sekä sooloja! Lajeina on Tribal Fusion -vatsatanssi, Datura Style™ ja FatChanceBellyDance®Style</p>",
                "sv": "<p>TribalTanssiKeskus är Helsingfors första dansstudio, som specialiserar sig på Tribal Bellydance.</p><p>På föreställningen ses en imponerande helhet av koreografier, improvisationsföreställningar och solon!</p>",
                "en": "<p>TribalTanssiKeskus is Helsinki's first dance studio specialising in Tribal Bellydance.</p><p>The show will feature an enchanting range of choreographies, improv performances and solos!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Open Stage: TribalTanssiKeskus",
                "sv": "Open Stage: TribalTanssiKeskus",
                "en": "Open Stage: TribalTanssiKeskus"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60313/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60312",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                },
                {
                    "@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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3953,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:55.113024Z",
                    "last_modified_time": "2023-09-07T14:18:55.113046Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732280.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3953/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:18:54.965863Z",
            "last_modified_time": "2023-09-11T21:16:07.505973Z",
            "date_published": null,
            "start_time": "2023-07-21T13: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D242C2844325313E8123F40AD1158D44/Mimi_ja_Kuku",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/D242C2844325313E8123F40AD1158D44/Mimi_och_Kuku",
                "en": "http://www.espanlava.fi/en/events/event/D242C2844325313E8123F40AD1158D44/Mimi_and_Kuku"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mimi-prinsessa ja Kuku-leijona leikkivät, tanssivat, satujoogailevat ja musisoivat kanssasi!",
                "sv": "Prinsessan Mimi och lejonet Kuku kommer att spela, dansa, göra fairyyoga och göra musik med dig!",
                "en": "Princess Mimi and Kuku the lion will play, dance, do fairy yoga and make music with you!"
            },
            "description": {
                "fi": "<p>Mimi-prinsessa ja Kuku-leijona leikkivät, tanssivat, satujoogailevat ja musisoivat kanssasi!</p><p>Teatteriseikkailussa autetaan pieniä eläinystäviä, lohdutetaan surullisia ja nauretaan sydäntemme kyllyydestä!<br> <br>Vuorovaikutteiset esitykset on erityisesti suunniteltu vahvistamaan pienen ihmisen itsetuntoa sekä tunne- ja kaveritaitoja. Musiikin ja tanssien koreografiat on tehnyt Mimi ja klovneriasta ja visuaalisesta ilmeestä vastaa Kuku. Molemmat ovat paitsi musiikkiteatterin konkareita, myös lasten joogan ja liikunnanohjaajia.</p>",
                "sv": "<p>Prinsessan Mimi och lejonet Kuku kommer att spela, dansa, göra fairyyoga och göra musik med dig!</p><p>I teateräventyr hjälper vi små djurvänner, tröstar de sorgsna och skrattar av hjärtat!<br> <br>De interaktiva föreställningarna är speciellt utformade för att stärka en liten människas självkänsla, såväl som känslomässiga och vänskapsmässiga färdigheter. Musiken och koreografin för danserna gjordes av Mimi, och Kuku är ansvarig för clowningen och det visuella utseendet. Båda är inte bara musikteaterveteraner, utan även barnyoga- och träningsinstruktörer.</p>",
                "en": "<p>Princess Mimi and Kuku the lion will play, dance, do fairy yoga and make music with you!</p><p>In theater adventures, we help little animal friends, comfort the sad and laugh to our heart's content!</p><p>The interactive performances are specially designed to strengthen a little person's self-esteem, as well as emotional and friendship skills. The music, and choreography of the dances was done by Mimi, and Kuku is responsible for the clowning and visual appearance. Both are not only musical theater veterans, but also children's yoga and exercise instructors.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Mimi ja Kuku",
                "sv": "Mimi och Kuku",
                "en": "Mimi and Kuku"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60312/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60311",
            "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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3952,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:54.687436Z",
                    "last_modified_time": "2023-09-07T14:18:54.687473Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_719226.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3952/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:54.387032Z",
            "last_modified_time": "2023-09-11T21:16:06.974233Z",
            "date_published": null,
            "start_time": "2023-07-21T11: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1FE91E001DE8AC4FC7DF5569073DAD9D/MIL-Espa_Kaartin_soittokunnan_varusmiesbandi"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "MIL-Espa-puistokonsertit ovat viihdyttäneet yleisöjä kesäisin vuodesta 1927 lähtien Esplanadin puistossa."
            },
            "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>"
            },
            "provider": null,
            "name": {
                "fi": "MIL-Espa: Kaartin soittokunnan varusmiesbändi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60311/?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": [],
                    "price": null,
                    "description": null,
                    "info_url": 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,
            "location_extra_info": null,
            "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"
            },
            "provider_contact_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."
            },
            "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>"
            },
            "provider": null,
            "name": {
                "fi": "Maja Mannila Trio",
                "sv": "Maja Mannila Trio",
                "en": "Maja Mannila Trio"
            },
            "@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": [],
                    "price": null,
                    "description": null,
                    "info_url": 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,
            "location_extra_info": null,
            "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_"
            },
            "provider_contact_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."
            },
            "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>"
            },
            "provider": null,
            "name": {
                "fi": "Jesse van Ruller Trio (NED)",
                "sv": "Jesse van Ruller Trio (NED)",
                "en": "Jesse van Ruller Trio (NED)"
            },
            "@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": [],
                    "price": null,
                    "description": null,
                    "info_url": 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,
            "location_extra_info": null,
            "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"
            },
            "provider_contact_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."
            },
            "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>"
            },
            "provider": null,
            "name": {
                "fi": "Aleksi Heinola Quartet",
                "sv": "Aleksi Heinola Quartet",
                "en": "Aleksi Heinola Quartet"
            },
            "@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": [],
                    "price": null,
                    "description": null,
                    "info_url": 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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/2FF84B5BCF7F30BE108E5FB02F61D109/MIL-Espa_Laivaston_soittokunnan_varusmiesbandi"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "MIL-Espa-puistokonsertit ovat viihdyttäneet yleisöjä kesäisin vuodesta 1927 lähtien Esplanadin puistossa."
            },
            "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>"
            },
            "provider": null,
            "name": {
                "fi": "MIL-Espa: Laivaston soittokunnan varusmiesbändi"
            },
            "@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": [],
                    "price": null,
                    "description": null,
                    "info_url": 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,
            "location_extra_info": null,
            "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"
            },
            "provider_contact_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."
            },
            "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>"
            },
            "provider": null,
            "name": {
                "fi": "Stoan aukion Kadonnut lehto",
                "sv": "Den försvunna lunden på Stoaplatsen",
                "en": "The Lost Grove of Stoa Square"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59785/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264591",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?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:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2896,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:34:08.562454Z",
                    "last_modified_time": "2023-08-15T15:34:08.562476Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{F25B9F0D-FBB6-468F-B329-94009256B312}/104667",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2896/?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:08.090709Z",
            "last_modified_time": "2023-09-10T09:35:15.354514Z",
            "date_published": "2023-08-02T11:28:09.647000Z",
            "start_time": "2023-09-09T10:30:00Z",
            "end_time": "2023-09-09T11:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Punamultatori ja kirjastotila"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "VanDance-tanssifestivaali näkyy jälleen Myyrmäen kirjastossa!"
            },
            "description": {
                "fi": "<p>VanDance-tanssifestivaali tulee jälleen!</p><p>Kirjastossa nähtävä tanssiteos KATSO MINUA on luotu festivaalia varten. Teos alkaa Punamultatorilta ja kulkee Myyrmäen kirjaston tiloihin. Esiintyjinä ovat tanssikoulu Tanssilan Eclipse-ryhmä ohjaajanaan Elisa Lejeune.</p><p>VanDance on myyrmäkeläisen Mamia Companyn vuosittain järjestettävä tanssifestivaali. Katso päivän ohjelma kokonaisuudessaan <a href=\"https://tapahtumat.vantaa.fi/fi-FI/page/64bfe40cb23eba1046574fa4?count=24&amp;sort=creationDate&amp;reverse=true\">Vantaan tapahtumakalenterista</a>. Kaikkiin festivaalin esityksiin on vapaa pääsy.</p>"
            },
            "provider": null,
            "name": {
                "fi": "VanDance kirjastossa!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264591/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264779",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?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:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2900,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:34:10.913552Z",
                    "last_modified_time": "2023-08-15T15:34:10.913573Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{F4183D0C-1A40-48B6-9299-62FA8EC3C0BE}/104719",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2900/?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:10.794427Z",
            "last_modified_time": "2023-09-09T17:24:16.976704Z",
            "date_published": "2023-08-04T11:02:00Z",
            "start_time": "2023-09-09T07:00:00Z",
            "end_time": "2023-09-09T15: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,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa juhlimaan Laajalahden kirjaston syntymäpäiviä. Kahvia/teetä ja pientä purtavaa tarjoillaan klo 13-17."
            },
            "description": {
                "fi": "<p> <strong>Laajalahtipäivä 9.9.2023</strong> pitää sisällään myös Espoon ensimmäisen kirjaston 70-vuotispäivät ja kirjasto onkin poikkeuksellisesti avoinna klo <strong>10-18.</strong></p><p>Tervetuloa mukaan juhlimaan kirjaston synttäreitä, ohjelmassa on loruhetki perheen pienimmille klo 10.30, Lukukoira Freia klo 11-12, Pinssipaja klo 11-14, Suomi-englanti satuhetki klo 14.00.</p><p>Lisäksi poistokirjojen jakelua sekä kirjoituskilpailun palkintojen jako klo 15.</p><p> <strong>Kahvia/teetä ja pientä purtavaa tarjoillaan klo 13-17. </strong> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Laajalahden kirjaston syntymäpäivät"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264779/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:262259",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?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: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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2895,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:34:07.493705Z",
                    "last_modified_time": "2023-08-15T15:34:07.493725Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{84339120-D74E-4876-B00C-C4641166909D}/104294",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2895/?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:07.372551Z",
            "last_modified_time": "2023-09-09T10:23:34.273300Z",
            "date_published": "2023-06-27T12:21:56.680000Z",
            "start_time": "2023-09-09T10:00:00Z",
            "end_time": "2023-09-09T11: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,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Dekkarikirjailija Elina Backman vieraana Hakunilan kirjastossa lauantaina 9.9.2023 kello 13-14."
            },
            "description": {
                "fi": "<p>Hakunila-päivän kirjailijavieraana Hakunilan kirjastossa on dekkarikirjailija Elina Backman. Backmanilta on ilmestynyt tähän mennessä kolme dekkaria, joissa päähenkilöt Saana Havas ja Jan Leino selvittävät murhia. Ensimmäinen osa <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2428298\">Kun kuningas kuolee ilmestyi vuonna 2020</a>. Seuraavana vuonna ilmestyi <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2463726\">Kun jäljet katoavat</a> ja uusin teos <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2509253\">Ennen kuin tulee pimeää vuonna 2023</a>. </p><p>Lisäksi Backman on kirjoittanut yhdessä Heidi Holmavuon kanssa Elli Immon selvittämättömästä murhasta kertovan true crime -tietoteoksen <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2530001\">Kirja joka avasi murhatutkinnan</a>.</p><p>Backman kertoo <a href=\"https://kirjailijavierailut.lukukeskus.fi/kirjailijat/backman-elina/\">Lukukeskuksen kirjailijaesittelysivullaan</a> olevansa intohimoinen lukija ja kirjojen ystävä. Tule siis mukaan keskustelemaan kirjailijan työstä ja kirjoista lauantaina 9.9.2023 kello 13-14!</p><p>Kuva: Otava, Jonne Räsänen</p>"
            },
            "provider": null,
            "name": {
                "fi": "Kirjailijavieraana Elina Backman"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262259/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "linkedevents:agg-2",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60454/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60456/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60457/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60458/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60459/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60460/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60461/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60462/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60463/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60464/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60465/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60466/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:49.001029Z",
            "last_modified_time": "2023-09-07T14:28:49.001049Z",
            "date_published": null,
            "start_time": "2023-09-12T10:30:00Z",
            "end_time": "2023-12-12T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "description": {
                "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "provider": null,
            "name": {
                "fi": "Taidetta taaperoille – Open Art Studio for Toddlers ",
                "sv": "Open Art Studio for Toddlers-verkstäder ",
                "en": "Taidetta taaperoille – Open Art Studio for Toddlers "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-2/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "linkedevents:agg-1",
            "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": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60249/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60311/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:45.807559Z",
            "last_modified_time": "2023-09-07T14:28:45.807593Z",
            "date_published": null,
            "start_time": "2023-07-14T11:00:00Z",
            "end_time": "2023-07-21",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "MIL-Espa-puistokonsertit ovat viihdyttäneet yleisöjä kesäisin vuodesta 1927 lähtien Esplanadin puistossa."
            },
            "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>"
            },
            "provider": null,
            "name": {
                "fi": "MIL-Espa:"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-1/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60242",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                },
                {
                    "@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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3926,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:38.315055Z",
                    "last_modified_time": "2023-09-07T14:18:38.315085Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732074.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3926/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:18:37.892390Z",
            "last_modified_time": "2023-09-07T14:18:38.442267Z",
            "date_published": null,
            "start_time": "2023-07-09T12: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1F683D7BBE28D4064AD46A9B70E8C137/Lastenmusiikkiorkesteri_Loiskis",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/1F683D7BBE28D4064AD46A9B70E8C137/Barnmusikorkestern_Loiskis",
                "en": "http://www.espanlava.fi/en/events/event/1F683D7BBE28D4064AD46A9B70E8C137/Children_s_Music_Orchestra_Loiskis"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suomen monipuolisin lastenmusiikkiorkesteri loihtii valloittavan tunnelman konserteissaan niin lapsille kuin aikuisille.",
                "sv": "Finlands mångsidigaste barnmusikorkester alstrar en erövrande stämning på sina konserter för såväl barn som vuxna.",
                "en": "Finland’s most versatile children’s music orchestra conjures up a captivating atmosphere for both children and adults in its concerts."
            },
            "description": {
                "fi": "<p>Suomen monipuolisin lastenmusiikkiorkesteri loihtii valloittavan tunnelman konserteissaan niin lapsille kuin aikuisille.</p><p>Loiskis-orkesterissa soi useita eri instrumenttia monilla eri musiikkityyleillä. Tästä keittyy herkullinen Loiskis-soppa ja -soundi, musiikillinen ilottelu. Yleisö pääsee aina osallistumaan: laulamaan, leikkimään ja hupsuttelemaan. Loiskis innostaa ja yllättää varmasti – joskus jopa itsensä!</p>",
                "sv": "<p>Finlands mångsidigaste barnmusikorkester alstrar en erövrande stämning på sina konserter för såväl barn som vuxna.</p><p>I orkestern Loiskis spelas flera olika instrument i många olika musikstilar.</p>",
                "en": "<p>Finland’s most versatile children’s music orchestra conjures up a captivating atmosphere for both children and adults in its concerts.</p><p>Loiskis play several different instruments in many different musical styles.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Lastenmusiikkiorkesteri Loiskis",
                "sv": "Barnmusikorkestern Loiskis",
                "en": "Children's Music Orchestra Loiskis"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60242/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60207",
            "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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3925,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:36.631872Z",
                    "last_modified_time": "2023-09-07T14:18:36.631894Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732075.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3925/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:35.968303Z",
            "last_modified_time": "2023-09-07T14:18:36.716402Z",
            "date_published": null,
            "start_time": "2023-07-09T11: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/72B81AC1678827C6128ABEA8351DDD1A/Duo_Emma_Maku_Perilla",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/72B81AC1678827C6128ABEA8351DDD1A/Duo_Emma_Maku_Perilla",
                "en": "http://www.espanlava.fi/en/events/event/72B81AC1678827C6128ABEA8351DDD1A/Duo_Emma_Maku_Perilla"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Perillä on hauska tarina kahdesta sirkustaiteilijasta, joiden matka on täynnä kommelluksia ja yllätyksiä.",
                "sv": "Framförandet Perillä är en rolig berättelse om två cirkusartister vars resa är full av missöden och överraskningar.",
                "en": "The performance Perillä is a fun story about two circus artists whose journey is filled with mishaps and surprises."
            },
            "description": {
                "fi": "<p>Perillä on hauska tarina kahdesta sirkustaiteilijasta, joiden matka on täynnä kommelluksia ja yllätyksiä.</p><p>Taiteilijat matkaavat paikasta toiseen etsien uusia esiintymispaikkoja ja katsojia. Aina esityksen koittaessa he ovat hetken perillä, kunnes matka jatkuu taas.</p><p>Esitys sisältää pariakrobatiaa, käsilläseisontaa ja jongleerausta, hyvää huumoria unohtamatta!</p><p>Esiintyjät: Emma ja Markus Nivala (Aura Company)<br>Esitys sopii kaikenikäisille, kesto noin 30 min.</p>",
                "sv": "<p>Framförandet Perillä är en rolig berättelse om två cirkusartister vars resa är full av missöden och överraskningar.</p><p>Konstnärerna reser från en plats till en annan för att söka ny publik och nya platser att uppträda på. Alltid när det är dags för en föreställning är de framme en stund, tills resan fortsätter igen.</p>",
                "en": "<p>The performance Perillä is a fun story about two circus artists whose journey is filled with mishaps and surprises.</p><p>The artists travel from one place to another looking for new venues and viewers. Whenever it is time for a performance, there is only a fleeting moment during which they can consider having arrived at their destination before the journey continues once more.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Duo Emma & Maku: Perillä",
                "sv": "Duo Emma & Maku: Perillä",
                "en": "Duo Emma & Maku: Perillä"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60207/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264416",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?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:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11916/?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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2610,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:27:48.624632Z",
                    "last_modified_time": "2023-08-15T15:27:48.624656Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{1BDCE270-94DD-44D8-913E-40FB62650E28}/104649",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2610/?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:27:48.504454Z",
            "last_modified_time": "2023-09-05T11:18:24.016966Z",
            "date_published": "2023-07-31T12:39:00Z",
            "start_time": "2023-08-05T11:00:00Z",
            "end_time": "2023-08-05T13: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,
            "location_extra_info": {
                "fi": "Puhoksen ostoskeskus"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Koko perheelle suunnattu Puhos Loves People -festivaali saapuu jälleen elokuussa Puhoksen ostarille Itäkeskukseen! Itäkeskuksen kirjaston pisteellä on tarjolla monikielistä kirjavinkkausta, mahdollisuus lainata luettavaa mukaan kotiin sekä värityskuvia lapsille. Jos sinulla tai lapsellasi ei ole vielä kirjastokorttia, ota mukaasi henkilöllisyystodistus, niin teemme kortin paikan päällä!"
            },
            "description": {
                "fi": "<p>Koko perheelle suunnattu Puhos Loves People -festivaali saapuu jälleen elokuussa Puhoksen ostarille Itäkeskukseen! Itäkeskuksen kirjaston pisteellä on tarjolla monikielistä kirjavinkkausta, mahdollisuus lainata luettavaa mukaan kotiin sekä värityskuvia lapsille. Jos sinulla tai lapsellasi ei ole vielä kirjastokorttia, ota mukaasi henkilöllisyystodistus, niin teemme kortin paikan päällä!</p><p>Kirjaston pisteen yhteydessä on myös POC-lukupiirin kirjavinkkipiste! Tule hakemaan kirjavinkki lasten-, nuorten tai aikuisten kirjallisuudesta ja lainaa mukaasi *POC-kirjailijan kirjoittama kirja!</p><p>*POC = people of colour = mustat ja ruskeat ihmiset</p><p>POC-lukupiiri: <a href=\"http://www.poc-lukupiiri.fi\" title=\"http://www.poc-lukupiiri.fi/\">www.poc-lukupiiri.fi</a></p><p>_______</p><p>Puhos Loves People -kulttuurifestivaali</p><p>Vuodesta 2017 alkaen järjestetty Puhos Loves People -festivaali tuo erilaisia kulttuureja yhteen musiikin, muodin, taiteen sekä ruoan muodossa. Tapahtuma on päihteetön ja avoin kaikenikäisille.</p><p>Koko festariohjelma nähtävillä Facebookissa: <a href=\"https://www.facebook.com/events/1449359375865088?active_tab=about\" title=\"https://www.facebook.com/events/1449359375865088?active_tab=about\">https://www.facebook.com/events/1449359375865088?active_tab=about</a></p><p>Tapahtumapaikka: Puhoksen ostoskeskus (Korsholmantie 2, Helsinki)</p><p>Tapahtuma-aika: Lauantai 5.8.2023 klo 14-16 (festarit jatkuvat klo 22 asti)</p>"
            },
            "provider": null,
            "name": {
                "fi": "Kirjavinkkausta Puhos Loves People -festareilla"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264416/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264760",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2609,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:27:48.270142Z",
                    "last_modified_time": "2023-08-15T15:27:48.270162Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{AEACFFA9-8FC3-4038-962E-4248726F53AD}/104713",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2609/?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:32:12.710289Z",
            "last_modified_time": "2023-09-04T17:21:35.726640Z",
            "date_published": "2023-08-04T10:38:00Z",
            "start_time": "2023-09-03T05:00:00Z",
            "end_time": "2023-09-03T17: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,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kirjoita noin A4 pituinen teksti siitä, miksi juuri Laajalahti on sinulle tärkeä asuinpaikka erilaisine palveluineen. Sana on vapaa ja toivottu!"
            },
            "description": {
                "fi": "</p><p> <strong>MINUN LAAJALAHTENI</strong> </p><p>Kirjoita noin A4 pituinen teksti siitä, miksi juuri Laajalahti on sinulle tärkeä asuinpaikka erilaisine palveluineen. Sana on vapaa ja toivottu!</p><p>Jätä kirjoituksesi <a href=\"https://link.webropolsurveys.com/S/275095285B8AA7B2\">tällä lomakkeella</a> tai tuo kirjoituksesi Laajalahden kirjastoon tai lähetä sähköpostiosoitteeseen <a href=\"mailto:kirjasto.laajalahti@espoo.fi\">kirjasto.laajalahti@espoo.fi</a> <strong>viimeistään 4.9.2023</strong>.<br><br> Innostavimmat kirjoitukset palkitaan pienin palkinnoin (mm. suklaata, leffalippuja, kirjoja) <strong>Laajalahtipäivänä lauantaina 9.9.2023 klo 15.00</strong>. Kirjastossa on tuolloin tarjolla kahvia, mehua ja pientä purtavaa kello 13-17. <strong>Tervetuloa! </strong></p>"
            },
            "provider": null,
            "name": {
                "fi": "Kirjoituskilpailu Laajalahden kirjaston 70-vuotisjuhlavuotena"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264760/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}