Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 19181,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=203",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=201"
    },
    "data": [
        {
            "id": "kulke:61679",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/3554510",
                        "sv": "https://www.lippu.fi/eventseries/3554510",
                        "en": "https://www.lippu.fi/eventseries/3554510"
                    },
                    "description": null,
                    "price": {
                        "fi": "33,50 €/48,50 € 2 pvä",
                        "sv": "33,50 €/48,50 € 2 pvä",
                        "en": "33,50 €/48,50 € 2 pvä"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6645,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-15T12:13:54.724772Z",
                    "last_modified_time": "2024-02-06T13:23:43.370405Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739295.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6645/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-13T17:13:41.677056Z",
            "last_modified_time": "2024-05-23T11:12:56.589247Z",
            "date_published": null,
            "start_time": "2024-05-25T09:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Helsinki Lit – Käännöskirjallisuusfestivaali 10 vuotta",
                "sv": "Helsinki Lit – Litteraturfestivalen",
                "en": "Helsinki Lit"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin kirjallisuusfestivaali ry",
                "sv": "Helsingin kirjallisuusfestivaali ry",
                "en": "Helsingin kirjallisuusfestivaali ry"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Helsinki Lit -tapahtuman alkamisajankohta la 25.5. on muuttunut. Uusi alkamisaika on klo 12.30.",
                "sv": "Litteraturfestivalen Helsinki Lit firar tioårsjubileum i maj på Savoyteatern"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/79E013D10D7A9C5F54AD50CA93BB6F04/Helsinki_Lit",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/79E013D10D7A9C5F54AD50CA93BB6F04/Helsinki_Lit",
                "en": "http://www.savoyteatteri.fi/en/events/event/79E013D10D7A9C5F54AD50CA93BB6F04/Helsinki_Lit"
            },
            "description": {
                "fi": "<p>Helsinki Lit -tapahtuman alkamisajankohta la 25.5. on muuttunut. Uusi alkamisaika on klo 12.30.</p><p>Järjestäjä tiedottaa: ”Lauantaina 25.5. ohjelma alkaa klo 12.30 TOISIN KUIN LIPPU:FI:N FYYSISISSÄ TULOSTELIPUISSA ON ILMOITETTU. Lipuissa lulee klo 13:00. Väärä aikataulu lipuissa johtuu teknisestä virheestä jota ei Early Bird -lipunmyynnin ja sen jälkeisen aikataulujen välttämättömien, kirjailijavieraiden omien myöhemmin ilmenneiden aikataulujen jälkeen voitu ennakoida ajoissa. Suuret pahoittelut virheestä. Tulkaa ajoissa paikalle, ohjelma alkaa jo klo 12:30.”</p><p>Lisätietoja: https://helsinki-lit.fi/</p><p>***</p><p>Helsinki Lit -käännöskirjallisuusfestavaali viettää toukokuussa 10-vuotisjuhliaan Savoy-teatterissa</p><p>Helsinki Lit -käännöskirjallisuusfestivaali juhlii tulevana keväänä kymmenvuotista taivaltaan. 10-vuotisjuhlafestivaali järjestetään 24.-25. toukokuuta Savoy-teatterissa, josta koko Helsinki Lit -festivaalin menestyksekäs taival vuosikymmen sitten alkoi.</p><p>Helsinki Litissä on kymmenen vuoden aikana vieraillut kymmeniä kansainvälisiä kirjalijatähtiä Nobel-voittajista Booker- ja Pulitzer-palkittuihin. Tänä vuonna Helsinki Lit sai vieraakseen muun muassa juuri kirjallisuuden Nobel-palkinnon voittaneen Annie Ernaux’n ja festivaalin liput myytiin ennakosta loppuun jo maaliskuun 2023 aikana.</p><p>10-vuotisjuhlavuoden koko ohjelma julkaistaan helmikuussa 2024. Mukana tulee tuttuun tapaan jälleen olemaan nimekkäitä kansainvälisiä kirjailijavieraita, joiden kanssa keskustelevat valitut kotimaiset kirjailijat, toimittajat ja vaikuttajat. Tänä vuonna luvassa on myös erityistä juhlaohjelmaa ja tunnelmakoosteita vuosien varrelta. <br>Juhlafestivaalilla mukana olevat kustantajat ja festivaalin muut yhteistyökumppanit ja tukijat julkaistaan helmikuun ohjelmajulkistuksen yhteydessä.</p><p>Permanto paikat ovat K18. Parveke on sallittu kaiken ikäisille.</p>",
                "sv": "<p>Litteraturfestivalen Helsinki Lit firar tioårsjubileum i maj på Savoyteatern</p><p>Den internationella litteraturfestivalen Helsinki Lit ordnas nästa år för tionde gången. Festivalen äger rum den 24-25 maj 2024, på Savoyteatern i Helsingfors, där också den första festivalen hölls 2015.</p><p>Under ett decennium har festivalen fått besök av en mängd internationella stjärnor, däribland tidigare Nobelpristagare, Pulitzer-, Booker- och Finlandiavinnare. I våras gästades Helsinki Lit av den färska nobelpristagaren Annie Ernaux, och då var festivalen var utsåld redan i mars.</p><p>Programmet för nästa år publiceras i februari 2024. Även denna gång bjuder Helsinki Lit på flera stora internationella författarnamn, som intervjuas av inhemska författare och journalister. Tioårsjubileet kommer även att uppmärksammas i programmet.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>",
                "en": "<p>The Helsinki Lit translation literature festival celebrates its 10th anniversary at Savoy Theatre in May – tickets now on sale</p><p>The Helsinki Lit translation literature festival will celebrate its 10th anniversary next spring. The 10th anniversary festival will take place at Savoy Theatre on 24–25 May, where Helsinki Lit’s successful run began a decade ago. The tickets are now on sale.</p><p>Over the past ten years, Helsinki Lit has hosted dozens of international literary stars, from Nobel Prize winners to Booker and Pulitzer Prize winners. In 2023, Helsinki Lit hosted Annie Ernaux, who had just won the Nobel Prize for Literature, and tickets for the festival sold out in advance during March 2023.</p><p>The full programme for the 10th anniversary will be published in February 2024. As usual, the festival will host internationally renowned author guests, who will participate in discussions with selected Finnish authors, journalists and influencers. This year, there will also be a special festive programme and atmospheric compilations from over the years.</p><p>The publishers and other partners and supporters of the festival will be announced when the programme is published in February.</p><p>The stalls will only be allowed for over 18s. The balcony will be allowed for people of all ages.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61679/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh2ohpgt4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20410/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz664e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4934/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "{'fi': '', 'sv': '', 'en': ''}"
                    },
                    "description": {
                        "fi": "{'fi': '', 'sv': '', 'en': ''}"
                    },
                    "price": {
                        "fi": "{'fi': 'Pääsy rakennuksiin museon pääsylipulla. 6 € / 3 €. Alle 18-v. vapaa pääsy. Keskiviikkoisin vapaa pääsy. Kaikukorttikohde. Museokorttikohde.', 'sv': 'Biljettpriset: 6€ / 3€. Gratis inträde för under 18-åringar. Gratis inträde på onsdagar. Gratis inträde med Museikortet och Kaikukortet.', 'en': 'Ticket prize for Museum buildings: 6€ / 3€. Free entry for under 18 olds. Free entry on Wednesdays. Free entry with the Museum card and Kaikukortti.'}"
                    }
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T10:57:16.681168Z",
            "last_modified_time": "2024-05-23T10:57:16.681204Z",
            "date_published": null,
            "start_time": "2024-06-15T08:00:00Z",
            "end_time": "2024-06-15T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sateenkaareva perhepiknik ",
                "sv": "Regnbågspicknick för hela familjen",
                "en": "Rainbow family picnic "
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Sateenkaareva perhepiknik ",
                "sv": "Regnbågspicknick för hela familjen",
                "en": "Rainbow family picnic"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Viime vuoden menestyksen jälkeen sateenkaareva perhepiknik järjestetään tänäkin vuonna Talomuseo Glimsissä lauantaina 15.6. klo 11-17. Museon piha-alue on maksuton, rakennuksiin on sisäänpääsymaksu. Talomuseo Glims on museokorttikohde.</p><p>Piknik tarjoaa koko perheelle sopivaa ohjelmaa ja paljon hauskoja värikkäitä hetkiä kuvattavaksi. Pukeudu tapahtumaan värikkäästi ja ota kuva asustasi. Lisää se museon Instagramiin #espoocitymuseum. Mitä värikkäämpi asu, sen parempi!<br>Faunora creations järjestää työpajan jossa askarrellaan korvat karvakankaasta hiuspannalla tai kuminauhalla. Värikkäät kangaspalat ovat kierrätyskangasta. Työpaja on suomeksi ja englanniksi. Myynnissä on myös muita Faunora creationsin tuotteita.</p><p>Elämysauto Välkky vierailee museolla. Tarjolla on kokoelma erilaisia kirjoja koko sateenkaaren kirjossa. Kirjastoautosta löytyy myös kirjoja luonnosta ja vastuullisesta retkeilystä. Piipahda myös Välkyn pinssityöpajassa, jossa voit tehdä oman värikkään pinssin.</p><p>Museon työpajassa askarrellaan värikkäitä paperilyhtyjä. Mikä on sinun suosikkivärisi? Vie lyhty kotiin, tai jätä se museolle ilahduttamaan muita kävijöitä.<br>Ota mukaan hauskaa seuraa, sekä piknikherkkuja ja tule mukaan Glimsin Sateenkaarevalle perhepiknikille!<br>Muista myös varautua säänmukaisella vaatetuksella.<br>Tapahtuma on osa KAMU pride -ohjelmistoa.</p><p>Ohjelma:<br>klo 11.30: Eläinten ruokintanäytös<br>klo 11:30-16: Faunora Creations työpaja: Värikkäät korvat, suomeksi ja englanniksi<br>klo 12-17: Elämysauto Välkky, kirjoja lainattavaksi ja pinssipaja<br>klo 13-15: Työpaja: Askarrellaan paperilyhtyjä!<br>klo 15-15.30: Yleisöopastus: Glims tutuksi</p><p>Tervetuloa mukaan viettämään värikästä sateenkaaripäivää Glimsiin!</p><p>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2024.</p>",
                "sv": "<p>Efter fjolårets framgång ordnas också i år en regnbågspicknick för hela familjen på Glims gårdsmuseum lördag 15.6 kl. 11–17. Tillträde till museets gårdsområde är gratis, men de som vill besöka museets byggnader ska betala en inträdesavgift. På Glims gårdsmuseum kan du använda museikortet.</p><p>Picknicken erbjuder program som passar hela familjen och många roliga färggranna stunder att fotografera. Klä dig färgrikt och ta en bild av din outfit. Lägg till den i museets Instagram #espoocitymuseum. Ju färgrikare kläderna är, desto bättre!</p><p>Faunora Creations ordnar en verkstad där deltagarna pysslar lurviga lösöron som fästs på huvudet med hjälp av ett diadem eller gummiband. De färgglada tygbitarna är av återanvänt tyg. Verkstaden går på finska och engelska. Produkter av Faunora Creations finns till salu på evenemanget.</p><p>Allaktivitetsbussen Välkky besöker museet, utrustad med ett stort urval av olika böcker i alla regnbågens färger. I bussen kan du också låna böcker om natur och ansvarsfulla utflykter. Besök också Välkkys pinsverkstad där du kan pyssla egna färgglada pins.</p><p>I museets verkstad pysslar vi färgglada papperslyktor. Vilken är din favoritfärg? Ta med lyktan hem eller lämna den på museet för att glädja andra besökare.</p><p>Ta med dig roligt sällskap och picknickdelikatesser och följ med till Glims regnbågspicknick för hela familjen!</p><p>Kom ihåg kläder enligt väder.<br>Evenemanget är en del av KAMU pride-programmet.</p><p>Program:<br>kl. 11.30: Vi matar djuren<br>kl. 11.30–16: Faunora Creations verkstad, på finska och engelska<br>kl. 12–17: Allaktivitetsbussen Välkky, utlåning av böcker och pinsverkstad<br>kl. 13–15: Verkstad: Vi pysslar papperslyktor!<br>kl. 15–15.30: Publikguidning: Bekanta dig med Glims</p><p>Välkommen att fira en färgsprakande regnbågsdag på Glims!</p><p>Esbo stad är Working with Pride-partner med Helsinki Pride 2024.</p>",
                "en": "<p>After last year's success, a rainbow family picnic will be organized again this year at Glims Farmstead Museum on Saturday on 15th June from 11 a.m. to 5 p.m. The museum’s yard is free, though entrance ticket is needed for entry to buildings. This museum is a Museum Card destination.</p><p>The picnic offers a program suitable for the whole family and lots of fun colourful moments to photograph. Dress colourfully for the event and take a photo of your outfit. Add it to the museum's Instagram handle #espoocitymuseum. The more colourful the outfit, the better!!</p><p>Faunora Creations organizes a workshop to make ear from furry materials on a hairband or elastic band. The colorful fabric pieces are recycled fabric. The workshop is in Finnish and English. Other Faunora Creations products are also on sale.</p><p>Experience car Välkky will be visiting the museum. There is a collection of different books on the entire spectrum of the rainbow. The library car also has books about nature and responsible camping. Also stop by Välkky's pin workshop, where you can make your own colorful pin.</p><p>Colorful paper lanterns will made in the museum's workshop. What is your favorite color? Take the lantern home or leave it at the museum to delight other visitors.<br>Bring a fun company and picnic treats and join Glims' Rainbow family picnic!</p><p>Also remember to be prepared with weather-appropriate clothing.</p><p>The event is part of the KAMU pride program. </p><p>Program:<br>11.30am : Animal feeding <br>11:30am - 4pm: Faunora Creations workshop: Colourful ears, in Finnish and English<br>12pm - 5pm: Experience car Välkky, books to borrow and pin workshop<br>1pm - 3pm: Museum workshop: Let's make paper lanterns!<br>3pm - 3:30pm: Guided tour for visitors: Getting to know Glims</p><p>Welcome to celebrate a colorful rainbow day in Glims!</p><p>The City of Espoo is Helsinki Pride’s Working with Pride partner in 2024.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh2ohpgt4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh2ohpiey",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-05-23T09:56:45.529242Z",
            "last_modified_time": "2024-05-23T09:56:45.529272Z",
            "date_published": null,
            "start_time": "2024-06-19T10:00:00Z",
            "end_time": "2024-06-19T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Animaatiopaja: Ankka",
                "sv": "Animationsverkstad: Anka",
                "en": "Animation Workshop: Duck"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "short_description": {
                "fi": "Työpajalla tutustutaan stop-motion animaation alkeisiin",
                "sv": "I verkstaden bekantar vi oss med grunderna i stop-motion-animering: hur man rör en docka, hur man ställer in kameran och hur man skapar en berättelsebåge.",
                "en": "In the workshop, we will learn the basics of stop-motion animation: moving the puppet, setting up the camera, and considering the story arc."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Työpajalla tutustutaan stop-motion animaation alkeisiin: nuken liikuttamiseen, kameran asetteluun ja tarinankaaren pohdintaan.</p><p>Animaatiota päästään kokeilemaan  nukeilla sekä muovailuvahalla. </p>",
                "sv": "<p>I verkstaden bekantar vi oss med grunderna i stop-motion-animering: hur man rör en docka, hur man ställer in kameran och hur man skapar en berättelsebåge.</p><p>Vi får prova på animering med dockor och lera.</p>",
                "en": "<p>In the workshop, we will learn the basics of stop-motion animation: moving the puppet, setting up the camera, and considering the story arc.</p><p>We will get to try animation with puppets and clay.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh2ohpiey/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63879",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151280,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T09:13:20.390535Z",
                    "last_modified_time": "2024-05-23T09:13:20.390556Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746037.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151280/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T09:13:20.333185Z",
            "last_modified_time": "2024-05-23T09:13:20.475200Z",
            "date_published": null,
            "start_time": "2024-08-22T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Rauhallinen muistelukävely Malmilla – Malmin tapahtumakesä",
                "sv": "Lugn minnespromenad på Malm – Malms evenemangssommar",
                "en": "A peaceful walk down memory lane at Malmi – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Opastetulla kävelykierroksella tutustutaan Malmin ja Ala-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 18 ja kestää noin klo 19.30 saakka.",
                "sv": "På den guidade promenadrundan bekantar vi oss med Malms historia på finska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 18 och varar fram till cirka kl. 19.30.",
                "en": "Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 18 pm and lasts until roughly 19:30 pm."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D1F99FEB3937BF5E131A055204B7A4FC/Rauhallinen_muistelukavely_Malmilla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D1F99FEB3937BF5E131A055204B7A4FC/Lugn_minnespromenad_pa_Malm",
                "en": "http://www.malmitalo.fi/en/events/event/D1F99FEB3937BF5E131A055204B7A4FC/A_peaceful_walk_down_memory_lane_at_Malmi"
            },
            "description": {
                "fi": "<p>Opastetulla kävelykierroksella tutustutaan Malmin ja Ala-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 18 ja kestää noin klo 19.30 saakka.</p><p>Malmin pitkä historiallinen kehitys keskiaikaisesta maalaiskylästä suureksi, jälleen uudistuvaksi kaupunginosaksi näkyy alueen moninaisissa rakennuksissa ja maisemissa, joihin tutustutaan opastetulla kävelykierroksella.</p><p>Kierros kestää noin puolitoista tuntia. Kävely on toteutettu yhteistyössä Helsingin kaupunginmuseon ja WalkHelsingin kanssa.</p><p>Kävelykierros liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 museon päärakennuksessa, Aleksanterinkatu 16.</p>",
                "sv": "<p>På den guidade promenadrundan bekantar vi oss med Malms historia på finska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 18 och varar fram till cirka kl. 19.30.</p><p>Malm har förändrats mycket och förändringen fortsätter i rask takt. På minnespromenaden promenerar vi i lugn takt längs en lätt rutt från Nedre Malms park till Malms kyrka, och tar pauser på vägen. Dessutom väcker vi upp minnen genom att titta på gamla fotografier och samtala.</p><p>Rundan som dras av en frivilligarbetare varar i cirka en och en halv timme.</p><p>Promenaden har genomförts i samarbete med Malms kulturhus och den anknyter till utställningen Mestor och paikkor – Se Helsingfors med nya ögon, som visas i stadsmuseets huvudbyggnad 9.5.–15.9.2024 på adressen Alexandersgatan 16.</p>",
                "en": "<p>Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 18 pm and lasts until roughly 19:30 pm.</p><p>Malmi has changed a lot over the years, and that change keeps getting faster. This is an easy-going walk down memory lane from Ala-Malmi Park to the Malmi Church, with time to stop and rest. It is an excellent opportunity to jot your memory with old photos and discussion.</p><p>This walk, led by a volunteer, lasts for roughly an hour and a half. The walking tour is in Finnish.</p><p>The walk is implemented in cooperation with Malmitalo Cultural Centre, and is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63879/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh2ohpjma",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 150422,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-27T12:30:08.869964Z",
                    "last_modified_time": "2023-11-27T12:30:19.230971Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/151122Kielikahvila_mainos_680_x_382_px.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Piirrettyjä ihmisiä keltaisella taustalla. Puhekuplissa Tervetuloa, Solmu kielikahvila, moi. Yläkulmassa eläkeliiton logo.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150422/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-22T13:00:36.810491Z",
            "last_modified_time": "2024-05-23T08:58:21.485008Z",
            "date_published": "2024-05-22T12:57:00Z",
            "start_time": "2024-06-05T13:00:00Z",
            "end_time": "2024-06-05T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Solmu - suomen kielen kielikahvila",
                "sv": "Solmu - det finska språkkaféet",
                "en": "Solmu - the Finnish language cafe"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Eläkeliiton Espoon yhdistyksen vapaaehtoiset",
                "sv": "Eläkeliiton Espoon yhdistyksen vapaaehtoiset",
                "en": "Eläkeliiton Espoon yhdistyksen vapaaehtoiset"
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "short_description": {
                "fi": "Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea.",
                "sv": "Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. ",
                "en": "A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea. Myös aloittelijat ovat tervetulleita.</p><p>Kielikahvilaan ei tarvitse ilmoittautua etukäteen. Mukaan voi tulla koska tahansa.</p><p>Kielikahvilassa opit puhumaan arkielämän suomen kieltä. Kielikahvilassa pääset puhumaan suomea suomalaisten kanssa.</p><p>Tervetuloa mukaan puhumaan suomea kanssamme</p><p>Järjestäjä: Eläkeliiton Espoon yhdistyksen vapaaehtoiset</p>",
                "sv": "<p>Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. Nybörjare är också välkomna.</p><p>Du behöver inte anmäla dig till språkcaféet i förväg. Du kan komma när som helst.</p><p>I språkcaféet får du lära dig att tala det finska vardagsspråket. I språkcaféet kan du prata finska med finländare.</p><p>Välkommen ombord!</p>",
                "en": "<p>A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. Beginners are also welcome.</p><p>You do not need to register for the language cafe in advance. You can come anytime.</p><p>In the language cafe, you will learn to speak the Finnish language of everyday life. In the language cafe you can speak Finnish with Finns.</p><p>Welcome aboard!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh2ohpjma/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63876",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151277,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T07:12:44.491874Z",
                    "last_modified_time": "2024-05-23T07:12:44.491890Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753352.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151277/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T07:12:44.473347Z",
            "last_modified_time": "2024-05-23T08:19:41.674281Z",
            "date_published": null,
            "start_time": "2024-06-01T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Musiikillinen matka Balkanin sydämeen – Musiikkitalon terassilla"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Valmistaudu musiikilliseen matkaan, jollaista ei ole toista! Balkanilaisen musiikin cover-yhtye kuljettaa sinut Balkanin sydämeen."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/AD8E2AEC1AB4A0C3DE04745F1CAEA298/Musiikillinen_matka_Balkanin_sydameen"
            },
            "description": {
                "fi": "<p>Valmistaudu musiikilliseen matkaan, jollaista ei ole toista! Balkanilaisen musiikin cover-yhtye kuljettaa sinut Balkanin sydämeen.</p><p>Monipuolinen ohjelmisto kattaa koko Balkanin alueen sydäntä särkevistä balladeista Balkanin kansantansseihin ja sen ulkopuolelle.<br> <br>Aarne Toivonen, rummut<br>Sara Majidi Nejad, Qanun<br>Devina Boughton, trumpetti<br>Vasileios Katopodis, basso<br>Chrysa Panagiotopoulou, laulu</p><p><b>HUOM! Konsertti järjestetään Musiikkitalon terassilla.</b></p><p>Vapaa pääsy.<br> <br>Konsertti on osa Global Club Nights-sarjaa.</p><p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät  sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Klubien tavoitteena on turvallinen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin  ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius- Akateemian globaalin musiikin osaston ja Kulttuurikeskus Caisan kanssa.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63876/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh2ohpklu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-22T13:03:54.979612Z",
            "last_modified_time": "2024-05-22T13:17:37.839052Z",
            "date_published": null,
            "start_time": "2024-06-12T12:30:00Z",
            "end_time": "2024-06-12T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ukulelejamit lapsille",
                "en": "Ukulele jam session for children"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "jaminurkka ",
                "en": "jaminurkka "
            },
            "short_description": {
                "fi": "Ukulelejamit lapsille. Kirjastolla on runsaasti lainasoittimia jameihin. Osallistuminen on maksutonta. ",
                "en": "Ukulele jam session for children. Participation is free of charge. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa Ukulelejameihin Sellon kirjaston jaminurkkaan. Tapahtuma on suunnattu lapsille ja lapsiperheille. Kirjastolla on runsaasti soittimia tunnin ajaksi. Ei haittaa vaikka aikaisempaa soittokokemusta ei olisi. Opettelemme ja soitamme yhdessä tunnettuja lastenlauluja ja kappaleita. Ei ennakkoilmoittautumista ja osallistuminen on maksutonta. </p>",
                "en": "<p>Welcome to the Ukulele Jam Session at Sello Library Jaminurkka. The event is for children and families. No need of previous playing experience. No pre-registration is required and participation is free of charge. No need to bring your own ukulele.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh2ohpklu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63323",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150732,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-22T13:13:17.115226Z",
                    "last_modified_time": "2024-04-22T13:13:17.115241Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748979.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T13:13:17.098994Z",
            "last_modified_time": "2024-05-22T12:12:53.015055Z",
            "date_published": null,
            "start_time": "2024-06-04T08:00:00Z",
            "end_time": "2024-06-04T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Tiistain lounasjamit"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C126DEF35FC895A65C139D5E1BE055D4/Tiistain_lounasjamit"
            },
            "description": {
                "fi": "<p>DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja iskelmä sekä paljon muuta sielukasta musiikkia.</p><p>Tiistain lounasjamit Kanneltalon kahvilassa keväällä 2024<br>ti 30.4. klo 11–13<br>ti 7.5. klo 11–13<br>ti 14.5. klo 11–13<br>ti 21.5. klo 11–13<br>ti 28.5. klo 11–13<br>ti 4.6 klo 11–13</p><p>Tilaa Dj Koo-Blank kaikenkokoisiin tapahtumiin: <br>Joona Pikkarainen, 0505464216<br>pikkarainen.joonap@gmail.com</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63323/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63322",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150731,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-22T13:13:16.442930Z",
                    "last_modified_time": "2024-04-22T13:13:16.442987Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748977.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150731/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T13:13:16.424674Z",
            "last_modified_time": "2024-05-22T12:12:51.936321Z",
            "date_published": null,
            "start_time": "2024-05-28T08:00:00Z",
            "end_time": "2024-05-28T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Tiistain lounasjamit"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/64EE8089C1690599A4B87EEB0E03DA7B/Tiistain_lounasjamit"
            },
            "description": {
                "fi": "<p>DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja iskelmä sekä paljon muuta sielukasta musiikkia.</p><p>Tiistain lounasjamit Kanneltalon kahvilassa keväällä 2024<br>ti 30.4. klo 11–13<br>ti 7.5. klo 11–13<br>ti 14.5. klo 11–13<br>ti 21.5. klo 11–13<br>ti 28.5. klo 11–13<br>ti 4.6 klo 11–13</p><p>Tilaa Dj Koo-Blank kaikenkokoisiin tapahtumiin: <br>Joona Pikkarainen, 0505464216<br>pikkarainen.joonap@gmail.com</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63322/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63319",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150728,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-22T13:13:12.277326Z",
                    "last_modified_time": "2024-04-22T13:13:12.277342Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748971.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150728/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T13:13:12.261393Z",
            "last_modified_time": "2024-05-22T12:12:47.857891Z",
            "date_published": null,
            "start_time": "2024-05-07T08:00:00Z",
            "end_time": "2024-05-07T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Tiistain lounasjamit"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A31670EAE19F45D07905F3F8BED38F6D/Tiistain_lounasjamit"
            },
            "description": {
                "fi": "<p>DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja iskelmä sekä paljon muuta sielukasta musiikkia.</p><p>Tiistain lounasjamit Kanneltalon kahvilassa keväällä 2024<br>ti 30.4. klo 11–13<br>ti 7.5. klo 11–13<br>ti 14.5. klo 11–13<br>ti 21.5. klo 11–13<br>ti 28.5. klo 11–13<br>ti 4.6 klo 11–13</p><p>Tilaa Dj Koo-Blank kaikenkokoisiin tapahtumiin: <br>Joona Pikkarainen, 0505464216<br>pikkarainen.joonap@gmail.com</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63319/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh2ohpplm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 151294,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-05-22T11:46:30.237501Z",
                    "last_modified_time": "2024-05-22T11:46:30.237522Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/biisity%C3%B6paja.jpg",
                    "cropping": "517,0,2583,2066",
                    "photographer_name": "",
                    "alt_text": "nuori tekee omaa musiikkia. Kitara, tietokone ja piano",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151294/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-22T11:50:30.796462Z",
            "last_modified_time": "2024-05-22T11:50:30.796488Z",
            "date_published": null,
            "start_time": "2024-06-06T11:00:00Z",
            "end_time": "2024-06-06T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Biisityöpaja nuorille"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "nuortentila Pointti"
            },
            "short_description": {
                "fi": "Sellon kirjaston nuortentila Pointissa järjestetään biisipaja nuorille. Työvälineenä käytämme iPadeja ja syntetisaattorieta. Osallistuminen on maksutonta."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Oletko aina halunnut tehdä oman kappaleen tai biitin, mutta et tiedä miten lähteä liikkeelle? Nyt siihen on oiva apu, nimittäin Sellon kirjaston nuortentila Pointissa järjestetään biisipaja nuorille. Työvälineenä käytämme iPadeja ja syntetisaattorieta, joten kappaleiden tekemistä on helppo jatkaa kotona. Teemme myös sanoituksia valmistuneisiin biitteihin. Tapahtumaan ei ole ennakkoilmoittautumista ja osallistuminen on maksutonta. </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh2ohpplm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzvldgwy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-05-21T09:15:15.214560Z",
            "last_modified_time": "2024-05-22T10:59:05.246793Z",
            "date_published": "2024-05-21T09:11:00Z",
            "start_time": "2024-06-07T07:00:00Z",
            "end_time": "2024-06-07T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sateenkaarisatuhetki",
                "sv": "Pride sagostund",
                "en": "Pride Story Hour"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa mukaan pride-kuukauden kunniaksi järjestettäviin sateenkaarisatuhetkiin.",
                "sv": "Under Pride-månaden ordnar biblioteket pride-sagostunder. Sagostunden är på finska.",
                "en": "For Pride month, the library will host pride story hours. Story hour is in Finnish."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa mukaan pride-kuukauden kunniaksi järjestettäviin sateenkaarisatuhetkiin.</p><p>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2024.</p>",
                "sv": "<p>Under Pride-månaden ordnar biblioteket pride-sagostunder. Sagostunden är på finska.</p><p>Esbo stad är Working with Pride-partner med Helsinki Pride 2024.</p>",
                "en": "<p>For Pride month, the library will host pride story hours. Story hour is in Finnish.</p><p>The City of Espoo is Helsinki Pride’s Working with Pride partner in 2024.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldgwy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzvldgti",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-05-21T09:15:57.743702Z",
            "last_modified_time": "2024-05-22T10:58:37.625421Z",
            "date_published": null,
            "start_time": "2024-06-28T07:00:00Z",
            "end_time": "2024-06-28T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sateenkaarisatuhetki",
                "sv": "Pride sagostund",
                "en": "Pride Story Hour"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa mukaan pride-kuukauden kunniaksi järjestettäviin sateenkaarisatuhetkiin.",
                "sv": "Under Pride-månaden ordnar biblioteket pride-sagostunder. Sagostunden är på finska.",
                "en": "For Pride month, the library will host pride story hours. Story hour is in Finnish."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa mukaan pride-kuukauden kunniaksi järjestettäviin sateenkaarisatuhetkiin.</p><p>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2024.</p>",
                "sv": "<p>Under Pride-månaden ordnar biblioteket pride-sagostunder. Sagostunden är på finska.</p><p>Esbo stad är Working with Pride-partner med Helsinki Pride 2024.</p>",
                "en": "<p>For Pride month, the library will host pride story hours. Story hour is in Finnish.</p><p>The City of Espoo is Helsinki Pride’s Working with Pride partner in 2024.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldgti/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:263f3806-972d-4d59-9683-a161a4160b25",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:33373/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=LE_kv_referenssitestaus_2251728974150"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-05-22T10:03:17.128705Z",
            "last_modified_time": "2024-05-22T10:03:17.128722Z",
            "date_published": "2024-05-22T09:14:30Z",
            "start_time": "2024-05-23T11:22:00Z",
            "end_time": "2024-05-24T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 0,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-05-22T10:00:00+03:00",
            "enrolment_end_time": "2024-05-23T00:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "LE kv referenssitestaus 22.5"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Järjestäjä"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Testataan referenssejä"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Testataan referenssejä</p></div>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:263f3806-972d-4d59-9683-a161a4160b25/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agitd6dcue",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-13T09:06:24.535433Z",
            "last_modified_time": "2024-05-22T09:41:59.858244Z",
            "date_published": null,
            "start_time": "2024-06-11T10:00:00Z",
            "end_time": "2024-06-11T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten- ja nuorten kesä kirjastolla! "
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tule mukaan kirjaston unohtumattomaan kesään täynnä hauskoja ja luovia aktiviteetteja!"
            },
            "info_url": {
                "fi": "https://helmet.finna.fi/"
            },
            "description": {
                "fi": "<p>Tule mukaan kirjaston unohtumattomaan kesään täynnä hauskoja ja luovia aktiviteetteja!</p><p>ti 11.6. Valotaidepaja lapsille! KLO 14.00-15.00<br>Valopajassa pääsee tekemään revontulimaisia varjoasetelmia. Värikkäät avaimenperävalaisimet suunnataan mukeihin ja leikkieläimiin, jolloin valot muodostavat kiehtovia varjoja kuultopaperille. Paja toimii non-stop-periaatteella, eikä sinne ole ikärajaa.</p><p>ti 11.6. Lomaohjelmaa ulkona! klo 13.00-15.00<br>Tutustu ulkoilman ihmeisiin ja seikkailuihin osana lomaohjelmaamme ulkona. Riemukasta puuhastelua odotettavissa!</p><p>ke 12.6. Ystävänauhat ja muut käsitöiden ihanuudet! klo 13.00-15.00<br>Luo ystävänauhoja ja muita käsitöitä kesän hengessä! Nauti yhdessä tekemisestä ja oman luovuuden löytämisestä.</p><p>to 13.6. Lemmikkieläinten piirtämistä! klo 13.00-15.00<br>Tule piirtämään eläinkuvia ja keskustelmaan eläimistä ja lemmikeistä.</p><p>ti 18.6. Lomaohjelmaa ulkona! klo 13.00-15.00<br>Tutustu ulkoilman ihmeisiin ja seikkailuihin osana lomaohjelmaamme ulkona. Riemukasta puuhastelua odotettavissa!</p><p>ke 19.6. Helppoa oman tarinan keksimistä tekstittömään kirjaan! klo 13.00-15.00<br>Tarinoiden keksiminen on luovaa ja hauskaa hommaa, tule mukaan kokeilemaan!</p><p>to 20.6. Korupaja! klo 13.00-15.00<br>Tule mukaan tekemään koruja! Luo uniikkeja koruja, kokeile korunteon tekniikoita ja anna persoonallisuutesi loistaa käsitöissä.</p><p>ti 25.6. Lasimaalausta! klo 13.00-15.00<br>Nyt maalataan lasipurkkeja kesän tunnelmissa! Luo uniikkeja taideteoksia luonnon ja kesän inspiroimana.<br> <br>Sanataidetta kesällä<br>6.6. Ison Omenan kirjasto <br>Klo 10-11 Sanataidetta perheille <br>Klo 13 - 15.30 Jalkautuva sanataide ulkona<br> <br>7.6.Entressen kirjasto <br>Klo 10-11 Sanataidetta perheille<br>Klo 13 - 15.30 Jalkautuva sanataide ulkona<br> <br>7.8. Entressen kirjasto <br>Klo 10-11 Sanataidetta perheille<br>klo 13 - 15.30 Jalkautuva sanataide ulkona<br> <br>9.8. Ison Omenan kirjasto <br>Klo 10-11 Sanataidetta perheille<br>Klo 13 - 15.30 Jalkautuva sanataide ulkona</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6dcue/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63499",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150882,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-29T09:13:37.281111Z",
                    "last_modified_time": "2024-04-29T09:13:37.281125Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746561.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150882/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-29T09:13:37.255732Z",
            "last_modified_time": "2024-05-22T08:13:28.485999Z",
            "date_published": null,
            "start_time": "2024-05-26T08:00:00Z",
            "end_time": "2024-05-26T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Big Band Marathon",
                "sv": "Big Band Marathon",
                "en": "Big Band Marathon"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Espan Big Band Marathon tulee taas! Viisi upeaa yhtyettä esittää monipuolisen kattauksen big band -musiikkia aina groovaavista kesähiteistä perinteisiin big band -sävelmiin.",
                "sv": "Esplanadens Big Band Marathon kommer igen! Fem fantastiska band presenterar en mångsidig dukning av big band-musik från grooviga sommarhittar till traditionella big band-kompositioner.",
                "en": "Espa’s Big Band Marathon is here again! Five amazing ensembles will perform a diverse selection of big band music from groovy summer hits to traditional big band tunes."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D2E8CC29C4946FFBE67372D382EA994C/Big_Band_Marathon",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/D2E8CC29C4946FFBE67372D382EA994C/Big_Band_Marathon",
                "en": "http://www.espanlava.fi/en/events/event/D2E8CC29C4946FFBE67372D382EA994C/Big_Band_Marathon"
            },
            "description": {
                "fi": "<p>Espan Big Band Marathon tulee taas! Viisi upeaa yhtyettä esittää monipuolisen kattauksen big band -musiikkia aina groovaavista kesähiteistä perinteisiin big band -sävelmiin.</p><p><b>Päivän aikataulu:</b></p><p>klo 11 Vaskivuori Big Band<br>klo 12 Vuoksi Big Band<br>klo 13 Ebeli Big Band<br>klo 14 Gramofoni Big Band<br>klo 15 Ladies First Big Band</p>",
                "sv": "<p>Esplanadens Big Band Marathon kommer igen! Fem fantastiska band presenterar en mångsidig dukning av big band-musik från grooviga sommarhittar till traditionella big band-kompositioner.</p><p>kl. 11 Vaskivuori Big Band<br>kl. 12 Vuoksi Big Band<br>kl. 13 Ebeli Big Band<br>kl. 14 Gramofoni Big Band<br>kl. 15 Ladies First Big Band</p>",
                "en": "<p>Espa’s Big Band Marathon is here again! Five amazing ensembles will perform a diverse selection of big band music from groovy summer hits to traditional big band tunes.</p><p>klo 11 Vaskivuori Big Band<br>klo 12 Vuoksi Big Band<br>klo 13 Ebeli Big Band<br>klo 14 Gramofoni Big Band<br>klo 15 Ladies First Big Band</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63499/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agitd6dcxa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4934/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-22T08:03:21.612953Z",
            "last_modified_time": "2024-05-22T08:03:21.612978Z",
            "date_published": null,
            "start_time": "2024-06-01T11:30:00Z",
            "end_time": "2024-06-01T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Tervetuloa Espoon Nelli - työpaja",
                "sv": "Välkommen till Esbo Nelli - verkstad",
                "en": "Welcome Espoo's Nelli - workshop"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "short_description": {
                "fi": "Työpajassa piirretään ja tehdään Nelli aiheisia kirjanmerkkejä.",
                "sv": "I verkstaden ingår att rita och tillverka bokmärken med Nelli-tema.",
                "en": "The workshop involves drawing and making Nelli-themed bookmarks."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa toivottamaan Espoon Nelli tervetulleeksi sen uuteen vierailupaikkaan. Työpajassa piirretään ja tehdään Nelli aiheisia kirjanmerkkejä.</p>",
                "sv": "<p>Var med om att hälsa Esbos Nelli välkommen på sin nya placeringsplats då skulpturen flyttar till Sveaborgstorget i köpcentret Sello. I verkstaden ingår att rita och tillverka bokmärken med Nelli-tema.</p>",
                "en": "<p>You are cordially invited to join us in welcoming Espoo’s Nelli to her new temporary home at Viapori Square outside Sello Shopping Centre. The workshop involves drawing and making Nelli-themed bookmarks.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6dcxa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agitd6dczy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4934/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-22T07:51:21.401424Z",
            "last_modified_time": "2024-05-22T07:51:21.401449Z",
            "date_published": null,
            "start_time": "2024-06-01T11:00:00Z",
            "end_time": "2024-06-01T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Espoon Nelli muuttaa Sellon kauppakeskukseen",
                "sv": "Esbos Nelli flyttar till köpcentret Sello i Alberga! ",
                "en": "Join us in welcoming Espoo’s Nelli to Leppävaara’s Sello Shopping Centre"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "EMMA Museo"
            },
            "location_extra_info": {
                "fi": "Viaporintori"
            },
            "short_description": {
                "fi": "Veistos muuttaa uuteen sijaintiin Kauppakeskus Sellon Viaporintorille, Espoon vammaisneuvoston valitsemana.",
                "sv": "Var med om att hälsa Esbos Nelli välkommen på sin nya placeringsplats då skulpturen flyttar till Sveaborgstorget i köpcentret Sello.",
                "en": "You are cordially invited to join us in welcoming Espoo’s Nelli to her new temporary home at Viapori Square outside Sello Shopping Centre."
            },
            "info_url": {
                "fi": "https://emmamuseum.fi/medialle/?_gl=1*1pxj8o8*_up*MQ..*_ga*ODkzNDcyOTk4LjE3MTYyMTIyMzI.*_ga_JDHLN5XM5X*MTcxNjIxMjIzMi4xLjAuMTcxNjIxMjIzMi4wLjAuMA..",
                "sv": "https://emmamuseum.fi/sv/for-medierna/",
                "en": "https://emmamuseum.fi/en/for-the-media/"
            },
            "description": {
                "fi": "<p>Tervetuloa toivottamaan Espoon Nelli tervetulleeksi sen uuteen vierailupaikkaan. Veistos muuttaa uuteen sijaintiin Kauppakeskus Sellon Viaporintorille, Espoon vammaisneuvoston valitsemana. Nelli on taiteilija Kerttu Horilan espoolaisille suunnittelema pronssiveistos, jonka EMMA lahjoitti 50-vuotiaalle Espoolle vuonna 2022. Teos vaihtaa maisemaa säännöllisin väliajoin, jolloin se tulee osaksi mahdollisimman monen espoolaisen arkea.</p>",
                "sv": "<p>Var med om att hälsa Esbos Nelli välkommen på sin nya placeringsplats då skulpturen flyttar till Sveaborgstorget i köpcentret Sello. Det är Rådet för personer med funktionsnedsättning i Esbo som har valt den nya platsen. Nelli är en bronsskulptur som konstnären Kerttu Horila har utfört för esboborna, och som EMMA donerade till Esbo då staden fyllde 50 år 2022. Verket flyttar med regelbundna intervall till en ny omgivning, så att det ska bli en del av så många esbobors vardag som möjligt.</p>",
                "en": "<p>You are cordially invited to join us in welcoming Espoo’s Nelli to her new temporary home at Viapori Square outside Sello Shopping Centre. Nelli is Kerttu Horila’s bronze sculpture created for the people of Espoo and donated by EMMA to mark the city’s 50th anniversary in 2022. The nomadic sculpture is relocated regularly, bringing joy to the daily lives of as many Espoo residents as possible. The sculpture’s new location was chosen by Espoo’s Disability Council.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6dczy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:e53e9cf7-74d3-4757-9afe-9752bbead210",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Testi_kakkonen455225501",
                        "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Testi_kakkonen455225501",
                        "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Testi_kakkonen455225501",
                        "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Testi_kakkonen455225501"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 151273,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-05-22T06:05:16.587835Z",
                    "last_modified_time": "2024-05-22T06:05:16.587854Z",
                    "name": "Elinkeino-osasto kuvateksti",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/025cb5dd-9b16-ef11-9f89-0022489e55b1",
                    "cropping": "",
                    "photographer_name": "Lars Linssi",
                    "alt_text": "Elinkeino-osasto ALT",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151273/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-05-20T17:31:43.536966Z",
            "last_modified_time": "2024-05-22T06:05:18.942907Z",
            "date_published": "2024-05-20T17:24:31Z",
            "start_time": "2024-05-22T11:00:00Z",
            "end_time": "2024-05-22T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 2,
            "audience_max_age": 4,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 12,
            "minimum_attendee_capacity": 11,
            "enrolment_start_time": "2024-05-01T08:00:00+03:00",
            "enrolment_end_time": "2024-05-21T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "LM Testi kolmonen by Marcus LinkedEventsiin (päivitys 2)",
                "sv": "LM Testi kolmonen by Marcus LinkedEventsiin (SV)",
                "en": "LM Testi kolmonen by Marcus LinkedEventsiin (EN)",
                "ru": "Venäjä on RU"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Business Helsinki FI",
                "sv": "Business Helsinki SV",
                "en": "Business Helsinki EN",
                "ru": "Venäjä on RU"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "LM Testi kolmonen by Marcus LinkedEventsiin",
                "sv": "LM Testi kolmonen by Marcus LinkedEventsiin (SV)",
                "en": "LM Testi kolmonen by Marcus LinkedEventsiin (EN)",
                "ru": "Venäjä on RU short desc"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>LM Testi kolmonen by Marcus LinkedEventsiin</p></div>",
                "sv": "<div><div>LM Testi kolmonen by Marcus LinkedEventsiin (SV)</div></div>",
                "en": "<div><div>LM Testi kolmonen by Marcus LinkedEventsiin (EN)</div></div>",
                "ru": "<div><p>Venäjä on RU long desc</p></div>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:e53e9cf7-74d3-4757-9afe-9752bbead210/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63572",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151009,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-06T11:13:49.878421Z",
                    "last_modified_time": "2024-05-06T11:13:49.878437Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744892.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151009/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-06T11:13:49.852936Z",
            "last_modified_time": "2024-05-21T13:13:38.636932Z",
            "date_published": null,
            "start_time": "2024-06-11T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jiri Nikkinen Trio – Malmin tapahtumakesä",
                "sv": "Jiri Nikkinen Trio – Malms evenemangssommar",
                "en": "Jiri Nikkinen Trio – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Jiri Nikkinen Trio esittää 60-luvun musiikkia, jossa pääpaino on The Beatlesin tuotannolla. Lisäksi kuullaan The Kinksiä, The Whota, Monkeesia ja Cliftersiä muita legendaarisia aikakauden bändejä.",
                "sv": "Jiri Nikkinen Trio framför 60-talsmusik med huvudbetoning på The Beatles produktion. Dessutom får vi höra The Kinks, The Who, Monkees och Clifters samt andra legendariska band från tidseran.",
                "en": "Jiri Nikkinen Trio performs music from the 60s with a focus on The Beatles. They also play The Kinks, The Who, the Monkees and the Clifters, along with other legends from a legendary decade."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2FEBD0298E3B172F42E47F737B57E4E3/Jiri_Nikkinen_Trio",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2FEBD0298E3B172F42E47F737B57E4E3/Jiri_Nikkinen_Trio",
                "en": "http://www.malmitalo.fi/en/events/event/2FEBD0298E3B172F42E47F737B57E4E3/Jiri_Nikkinen_Trio"
            },
            "description": {
                "fi": "<p>Jiri Nikkinen Trio esittää 60-luvun musiikkia, jossa pääpaino on The Beatlesin tuotannolla. Lisäksi kuullaan The Kinksiä, The Whota, Monkeesia ja Cliftersiä muita legendaarisia aikakauden bändejä.</p><p>Jiri Nikkinen tunnetaan niin legendaarisesta Clifters -yhtyeestään kuin The Beatles Tribute Band -yhtyeestä.</p><p>The Beatles ja 60-luvun musiikki ylipäätään onkin ollut Jirin kaikelle tekemiselle yhdistävä tekijä. Keikkoja yhtye on tehnyt niin Suomessa kuin maailmallakin.</p>",
                "sv": "<p>Jiri Nikkinen Trio framför 60-talsmusik med huvudbetoning på The Beatles produktion. Dessutom får vi höra The Kinks, The Who, Monkees och Clifters samt andra legendariska band från tidseran.</p><p>Förutom från sitt legendariska band Clifters är Jiri Nikkinen känd från bandet The Beatles Tribute Band. The Beatles och 60-talets musik har varit en gemensam nämnare i all Jiris aktivitet. Bandet har haft spelningar både i Finland och på andra håll i världen.</p>",
                "en": "<p>Jiri Nikkinen Trio performs music from the 60s with a focus on The Beatles. They also play The Kinks, The Who, the Monkees and the Clifters, along with other legends from a legendary decade.</p><p>Jiri Nikkinen is known for both his legendary band, the Clifters, as well as for The Beatles Tribute Band. The Beatles and 60s music have been the unifying factor for everything that Jiri has done. His band has toured both in Finland and abroad.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63572/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}