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=216
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 19223,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=217",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=215"
    },
    "data": [
        {
            "id": "espoo_le:agi6bjk3fe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/espoo_le:agggfz65ay/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz654q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api"
                },
                {
                    "@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:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65wq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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/espoo_le:agggfz665y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ve/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7agi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aia/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-23T13:04:51.261527Z",
            "last_modified_time": "2024-04-26T06:20:24.327804Z",
            "date_published": "2024-04-24T09:00:00Z",
            "start_time": "2024-05-14T10:00:00Z",
            "end_time": "2024-05-30T13: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,
            "short_description": {
                "fi": "Tule juttelemaan omasta hyvinvoinnista ja saa vinkkejä liikkumiseen! ",
                "sv": "Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj.",
                "en": "Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. "
            },
            "name": {
                "fi": "Liikuntaneuvontakiertue",
                "sv": "Motionsrådgivningturné",
                "en": "Exercise counselling tour"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Liikunnanohjaajamme ovat tavattavissa kirjastoissa toukokuussa tiistaisin ja torstaisin klo 13–16.</p><p>ti 14.5. Lippulaivan kirjasto </p><p>to 16.5. Iso Omenan kirjasto </p><p>ti 21.5. Kalajärven kirjasto </p><p>to 23.5. Entressen kirjasto </p><p>ti 28.5. Sellon kirjasto </p><p>to 30.5. Tapiolan kirjasto <br></p>",
                "sv": "<p>Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj. Tillställningen är gratis.</p><p>ti 14.5. kl.13–16 Lippulaiva bibliotek<br>to 16.5 kl. 13–16 Iso omena bibliotek<br>ti 21.5. kl. 13–16 Kalajärvi bibliotek<br>to 23.5. kl. 13–16 Entresse bibliotek<br>ti 28.5. kl. 13–16 Sello bibliotek<br>to 30.5. kl. 13–16 Hagalunds bibliotek</p>",
                "en": "<p>Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. The event is free of charge.</p><p><br>Tue. 14.5. 13–16 Lippulaiva library<br>Thu. 16.5 13–16 Iso omena library<br>Tue. 21.5. 13–16 Kalajärvi library<br>Thu. 23.5. 3–16 Entresse library<br>Tue. 28.5. 13–16 Sello library<br>Thu. 30.5. 13–16 Tapiola library</p>"
            },
            "provider": {
                "fi": "Länsi-Uudenmaan hyvinvointialue",
                "sv": "Västra Nylands välfärdsområde",
                "en": "Western Uusimaa Wellbeing Services County"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk3fe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:61911115-cf22-43a5-b537-f1d695ded987",
            "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/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE5692765673"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 150836,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-25T13:16:24.830376Z",
                    "last_modified_time": "2024-04-25T13:16:24.830396Z",
                    "name": "Porvoo kuvateksti",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a7cc4457-fe02-ef11-9f89-000d3ab5d1a6",
                    "cropping": "",
                    "photographer_name": "Lars Linssi",
                    "alt_text": "Porvoo alt-teksti",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150836/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "created_time": "2024-04-25T12:23:29.225628Z",
            "last_modified_time": "2024-04-25T13:16:26.192251Z",
            "date_published": "2024-04-25T12:19:25Z",
            "start_time": "2024-04-25T12:26:00Z",
            "end_time": "2024-04-25T14:26:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 2,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-04-22T08:00:00+03:00",
            "enrolment_end_time": "2024-04-23T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "MKtest LE56 short desc"
            },
            "name": {
                "fi": "MKtest LE56 Porvoo (päivitys 1)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<div><p>MKtest LE56 long desc</p></div>"
            },
            "provider": {
                "fi": "MKtest"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:61911115-cf22-43a5-b537-f1d695ded987/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:da6effef-b70b-42f8-8421-96d3a1a223fb",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:50401/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE562903576829",
                        "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE562903576829"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 150831,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-25T13:13:58.372742Z",
                    "last_modified_time": "2024-04-25T13:13:58.372767Z",
                    "name": "Porvoo kuvateksti > Kuvan vaihto Allas Sea pooliksi",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/1dafdf5c-0503-ef11-9f89-000d3ab5d1a6",
                    "cropping": "",
                    "photographer_name": "Lars Linssi > Kuvan vaihto Allas Sea pooliksi",
                    "alt_text": "Porvoo alt-teksti > Kuvan vaihto Allas Sea pooliksi",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150831/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                }
            ],
            "created_time": "2024-04-25T13:14:00.099846Z",
            "last_modified_time": "2024-04-25T13:14:00.099864Z",
            "date_published": "2024-04-25T13:05:19Z",
            "start_time": "2024-04-25T12:26:00Z",
            "end_time": "2024-04-25T14:26: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-04-22T08:00:00+03:00",
            "enrolment_end_time": "2024-04-23T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "MKtest LE59 Allas Sea Pool short desc",
                "sv": "MKtest LE59 Allas Sea Pool short desc SWE"
            },
            "name": {
                "fi": "MKtest LE59 Allas Sea Pool",
                "sv": "MKtest LE59 Allas Sea Pool SWE"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<div><p>MKtest LE59 Allas Sea Pool long desc</p></div>",
                "sv": "<div><p>MKtest LE59 Allas Sea Pool long desc SWE</p></div>"
            },
            "provider": {
                "fi": "MKtest",
                "sv": "MKtest in sv"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:da6effef-b70b-42f8-8421-96d3a1a223fb/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:dad7a2cd-711b-484d-bccd-d5d956319021",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:21196/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/0967cec0-3302-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE573042287985",
                        "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/0967cec0-3302-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE573042287985"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 150830,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-25T13:02:03.746640Z",
                    "last_modified_time": "2024-04-25T13:02:03.746655Z",
                    "name": "Vallisaari kuvateksti",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a8cc4457-fe02-ef11-9f89-000d3ab5d1a6",
                    "cropping": "",
                    "photographer_name": "Leif Linssi",
                    "alt_text": "Vallisaari alt-teksti",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150830/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-25T13:02:02.044371Z",
            "last_modified_time": "2024-04-25T13:02:04.969175Z",
            "date_published": "2024-04-25T12:26:15Z",
            "start_time": "2024-04-25T12:34:00Z",
            "end_time": "2024-04-25T14:34:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 2,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 14,
            "minimum_attendee_capacity": 12,
            "enrolment_start_time": "2024-04-23T08:30:00+03:00",
            "enrolment_end_time": "2024-04-23T09:30:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "MKtest LE57_Vallisaarikuva (päivitys 1 julkaisun jälkeen) short desc",
                "en": "MKtest LE57 short desc"
            },
            "name": {
                "fi": "MKtest LE57_Vallisaarikuva (päivitys 1 julkaisun jälkeen)",
                "en": "MKtest LE57 Subject"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<div><p>MKtest LE57_Vallisaarikuva (päivitys 1 julkaisun jälkeen) long desc</p></div>",
                "en": "<div><div>&lt;h1 class=\"pa-tj pa-dp pa-oh pa-do pa-fi pa-tk pa-qw pa-qv pa-tl\" style=\"background-color:rgb(255, 255, 255);border-width:0px;color:rgb(36, 36, 36);font-family:SegoeUI-Semibold, &quot;Segoe UI Semibold&quot;, &quot;Segoe UI Regular&quot;, &quot;Segoe UI&quot;;font-size:20px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:24px;margin:0px;outline:none;padding:0px;text-align:left;text-indent:0px;text-transform:none;white-space:pre-wrap;word-break:break-word;word-spacing:0px;\" data-id=\"header_title\" title=\"MKtest LE57\" id=\"user-content-formHeaderTitle_231\"&gt;MKtest LE57 long desc&lt;/h1&gt;</div></div>"
            },
            "provider": {
                "fi": "MKtest in suomeksi",
                "en": "Mr. MK"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:dad7a2cd-711b-484d-bccd-d5d956319021/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi6bjk3j4",
            "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:p2625/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-25T13:01:34.747526Z",
            "last_modified_time": "2024-04-25T13:01:34.747549Z",
            "date_published": null,
            "start_time": "2024-05-06T15:30:00Z",
            "end_time": "2024-05-06T16: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,
            "short_description": {
                "fi": "Yhteisöteatteri Jäänsärkijöiden aikuisten improryhmä esiintyy.",
                "sv": "Improvisationsteater på finska",
                "en": "Improvisation theatre in Finnish"
            },
            "name": {
                "fi": "Improvisaatio teatteria",
                "sv": "Improvisationsteater",
                "en": "Improvisation theatre"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "description": {
                "fi": "<p>Yhteisöteatteri Jäänsärkijöiden aikuisten improryhmä esiintyy.</p>",
                "sv": "<p>Improvisationsteater på finska</p>",
                "en": "<p>Improvisation theatre in Finnish</p>"
            },
            "provider": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk3j4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:a51f6a3a-b1a6-455b-9297-027cf4410673",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE582709804814",
                        "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE582709804814"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 150828,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-25T12:58:45.676257Z",
                    "last_modified_time": "2024-04-25T12:58:45.676274Z",
                    "name": "Lonna kuvateksti",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a9cc4457-fe02-ef11-9f89-000d3ab5d1a6",
                    "cropping": "",
                    "photographer_name": "Akseli Linssi",
                    "alt_text": "Lonna alt-teksti",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150828/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-25T12:57:24.242592Z",
            "last_modified_time": "2024-04-25T12:58:47.098651Z",
            "date_published": "2024-04-25T12:37:44Z",
            "start_time": "2024-04-25T12:46:00Z",
            "end_time": "2024-04-25T14:46: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": 14,
            "minimum_attendee_capacity": 12,
            "enrolment_start_time": "2024-04-01T08:00:00+03:00",
            "enrolment_end_time": "2024-04-02T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "MKtest LE58 Lonna (päivitys 1 julkaisun jälkeen) fi",
                "en": "MKtest LE58 short desc en"
            },
            "name": {
                "fi": "MKtest LE58 Lonna (päivitys 1 julkaisun jälkeen)",
                "en": "MKtest LE58 en"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<div><p>MKtest LE58 Lonna (päivitys 1 julkaisun jälkeen) fi</p><ul><li>Muutettu tapahtuman&nbsp;</li></ul></div>",
                "en": "<div><div>&lt;h1 class=\"pa-tj pa-dp pa-oh pa-do pa-fi pa-tk pa-qw pa-qv pa-tl\" style=\"background-color:rgb(255, 255, 255);border-width:0px;color:rgb(36, 36, 36);font-family:SegoeUI-Semibold, &quot;Segoe UI Semibold&quot;, &quot;Segoe UI Regular&quot;, &quot;Segoe UI&quot;;font-size:20px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:24px;margin:0px;outline:none;padding:0px;text-align:left;text-indent:0px;text-transform:none;white-space:pre-wrap;word-break:break-word;word-spacing:0px;\" data-id=\"header_title\" title=\"MKtest LE58\" id=\"user-content-formHeaderTitle_241\"&gt;MKtest LE58 long desc&lt;/h1&gt;</div></div>"
            },
            "provider": {
                "fi": "MKtest järjestää fi",
                "en": "MKtest järjestää en"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:a51f6a3a-b1a6-455b-9297-027cf4410673/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63380",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150620,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T15:13:07.114891Z",
                    "last_modified_time": "2024-04-16T15:13:07.114905Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749081.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150620/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-16T15:13:07.103655Z",
            "last_modified_time": "2024-04-25T11:15:14.489623Z",
            "date_published": null,
            "start_time": "2024-06-11T07:40: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,
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Summer Music Play School"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CEA7A4112477D8C98E239A58879E49C3/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CEA7A4112477D8C98E239A58879E49C3/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/CEA7A4112477D8C98E239A58879E49C3/Summer_Music_Play_School"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63380/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63379",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150619,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T15:13:07.043746Z",
                    "last_modified_time": "2024-04-16T15:13:07.043758Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749080.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150619/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-16T15:13:07.032487Z",
            "last_modified_time": "2024-04-25T11:15:14.397941Z",
            "date_published": null,
            "start_time": "2024-06-11T06: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,
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Summer Music Play School"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/27BD1EB288C09B64872FBE0F7EA20B83/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/27BD1EB288C09B64872FBE0F7EA20B83/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/27BD1EB288C09B64872FBE0F7EA20B83/Summer_Music_Play_School"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63379/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63378",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150618,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T15:13:06.819772Z",
                    "last_modified_time": "2024-04-16T15:13:06.819784Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749078.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150618/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-16T15:13:06.806161Z",
            "last_modified_time": "2024-04-25T11:15:13.800696Z",
            "date_published": null,
            "start_time": "2024-06-04T07:40: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,
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Summer Music Play School"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0D81C76862934B3BFB8957D1DF0597B0/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0D81C76862934B3BFB8957D1DF0597B0/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/0D81C76862934B3BFB8957D1DF0597B0/Summer_Music_Play_School"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63378/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63377",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150617,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T15:13:06.738733Z",
                    "last_modified_time": "2024-04-16T15:13:06.738750Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749077.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-16T15:13:06.713550Z",
            "last_modified_time": "2024-04-25T11:15:13.711454Z",
            "date_published": null,
            "start_time": "2024-06-04T06: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,
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Summer Music Play School"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A687B6A46CC3B009AF67D41D57716440/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/A687B6A46CC3B009AF67D41D57716440/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/A687B6A46CC3B009AF67D41D57716440/Summer_Music_Play_School"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63377/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63449",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "17,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmin-mieslaulajat-malmitalo-18615194/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150818,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-25T11:15:12.770347Z",
                    "last_modified_time": "2024-04-25T11:15:12.770372Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749941.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150818/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-25T11:15:12.738020Z",
            "last_modified_time": "2024-04-25T11:15:12.859425Z",
            "date_published": null,
            "start_time": "2024-05-28T16: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,
            "short_description": {
                "fi": "Malmin Mieslaulajat esittää viihteellisiä kuorolauluja johtajanaan Marjasisko Varha. Säestys Kaisu Rauhamaa."
            },
            "name": {
                "fi": "Malmin Mieslaulajat – Elämän kevät"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Malmin Mieslaulajat esittää viihteellisiä kuorolauluja johtajanaan Marjasisko Varha. Säestys Kaisu Rauhamaa.</p><p>Kesto noin 1 tunti 40min, sisältäen 20min väliajan.</p>"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6138CE8B1B6AAC3C2605343CD9A35A0E/Malmin_Mieslaulajat"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63449/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63376",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150614,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T15:13:06.097581Z",
                    "last_modified_time": "2024-04-16T15:13:06.097596Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745532.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150614/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-16T15:13:06.085919Z",
            "last_modified_time": "2024-04-25T11:15:12.520326Z",
            "date_published": null,
            "start_time": "2024-05-28T07:40: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,
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Summer Music Play School"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3440E165F4FF172CE44CA532786B0759/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/3440E165F4FF172CE44CA532786B0759/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/3440E165F4FF172CE44CA532786B0759/Summer_Music_Play_School"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63376/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63375",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150613,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T15:13:05.965140Z",
                    "last_modified_time": "2024-04-16T15:13:05.965156Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745531.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150613/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-16T15:13:05.910304Z",
            "last_modified_time": "2024-04-25T11:15:12.418907Z",
            "date_published": null,
            "start_time": "2024-05-28T06: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,
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Summer Music Play School"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CA05029BF8DF54A61B47442C2E918F6F/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CA05029BF8DF54A61B47442C2E918F6F/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/CA05029BF8DF54A61B47442C2E918F6F/Summer_Music_Play_School"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63375/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61896",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "31,50 / 24,50 € + tilausmaksut",
                        "sv": "31,50 / 24,50 € + tilausmaksut",
                        "en": "31,50 / 24,50 € + tilausmaksut"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/ursus-factory-k-18-vuotalo-18064160/",
                        "sv": "https://www.lippu.fi/event/ursus-factory-k-18-vuotalo-18064160/",
                        "en": "https://www.lippu.fi/event/ursus-factory-k-18-vuotalo-18064160/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7134,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-11T13:14:11.385836Z",
                    "last_modified_time": "2024-02-06T13:23:38.742649Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737095.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7134/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-11T13:14:11.334703Z",
            "last_modified_time": "2024-04-25T11:15:03.659887Z",
            "date_published": null,
            "start_time": "2024-04-27T15: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,
            "short_description": {
                "fi": "Ursus Factory on tunnettu erityisesti riehakkaista keikoistaan ja onkin kehuttu usein olevan yksi Suomen parhaista livebändeistä.",
                "sv": "Ursus Factory är särskilt känd för sina fartfyllda spelningar och har ofta lovordats för att vara ett av Finlands bästa liveband.",
                "en": "Ursus Factory is known especially for its boisterous gigs and has often been praised as one of the best live bands in Finland."
            },
            "name": {
                "fi": "Ursus Factory – Klubi-ilta",
                "sv": "Ursus Factory",
                "en": "Ursus Factory"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Ursus Factory on tunnettu erityisesti riehakkaista keikoistaan ja onkin kehuttu usein olevan yksi Suomen parhaista livebändeistä.</p><p>Ytimessä on duon saumaton yhteys, joka purkautuu soitossa puhtaana, vastustamattomana rock ’n’ rollin riemuna.</p><p>Ursus Factory on laulaja-kitaristi Jussi Pelkosen ja rumpali-laulaja Aleksi Ripatin muodostama duo, joka on perustettu vuonna 2013. Bändi on poikkeuksellinen helmi suomalaisella musiikkikentällä, jonka riehakas neo-garagerock rämisee, mutta tinkimättömästi melodiat edellä. Yhtyeen yhdeksi tavaramerkiksi ovat nousseet Pelkosen pilke silmäkulmassa kirjailemat lyriikat, joissa poukkoileva tajunnanvirta ja veitsenterävät huomiot kulkevat rinta rinnan.</p><p>Yleisön ja kriitikoiden pitkäaikainen suosikkibändi on julkaissut neljä albumia ja kerännyt matkansa varrella reilusti tunnustusta. Toistuvasti Suomen parhaaksi livebändiksi tituleerattu yhtye on myynyt laajalti loppuun keikkasaleja, joista mainittakoon kolme loppuunmyytyä Tavastiaa levynjulkkarien merkeissä.</p><p>Vuonna 2021 yhtye mm. sai kolme ehdokkuutta Emma-gaalassa (Vuoden yhtye, Vuoden rock, Vuoden artisti -yleisöäänestys), esiintyi itsenäisyyspäivänä YLE:n Linnan jatkoilla sekä nostettiin Helsingin Sanomien ”Vuoden 2021 parhaimmat levyt” ja Soundi-musiikkilehden kriitikoiden ”Vuoden 2021 parhaat” listauksille. Albumi Onnellinen sukupolvi (2021) sijoittui julkaisuviikolla virallisen albumistan sijalle 6. ja fyysisen listan sijalle 2.</p><p>Yhtye julkaisi neljännen albuminsa IO vuonna 2023. Albumilla on 12 kappaletta ja se jakaantuu kahteen osaan, I ja O. I julkaistiin maaliskuussa ja syyskuussa kokonaisuus täydentyi O:n myötä IO-tupla-albumiksi.</p><p>Ursus Factory la 27.4.2024 klo 18:00 on muuttunut muodoltaan Klubi-illaksi.<br>Ostetut liput käyvät sellaisenaan, mutta paikkanumerointia ei ole. Vahtimestarit ovat salissa ja ohjaavat yleisöä.<br>Tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa.</p><p>Sali avautuu klo 17.30.</p>",
                "sv": "<p>Ursus Factory är särskilt känd för sina fartfyllda spelningar och har ofta lovordats för att vara ett av Finlands bästa liveband.</p><p>I hjärtat ligger duons sömlösa förbindelse, som vid spelningen strålar ut som ren, oemotståndlig rock'n'rollens fröjd.</p>",
                "en": "<p>Ursus Factory is known especially for its boisterous gigs and has often been praised as one of the best live bands in Finland.</p><p>At the core is the duo’s seamless connection, which is unravelled as joy in their pure, irresistible rock ’n’ roll.</p>"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D0B71487DC4A89C836F930C4085C043E/Ursus_Factory",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D0B71487DC4A89C836F930C4085C043E/Ursus_Factory",
                "en": "http://www.vuotalo.fi/en/events/event/D0B71487DC4A89C836F930C4085C043E/Ursus_Factory"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61896/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi6bjk3ny",
            "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:p13084/?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:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-15T07:27:50.179599Z",
            "last_modified_time": "2024-04-25T11:01:53.363526Z",
            "date_published": "2024-04-19T11:15:00Z",
            "start_time": "2024-04-30T05:00:00Z",
            "end_time": "2024-05-20T10: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,
            "short_description": {
                "fi": "Kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta.",
                "sv": "Ett intressant och underhållande program om en mer hållbar livsstil.",
                "en": "An interesting and entertaining program about a more sustainable lifestyle. "
            },
            "name": {
                "fi": "Espoon kirjastojen Ympäristökevät",
                "sv": "Esbobibliotekens Miljövår",
                "en": "The Espoo libraries' Environmental Spring"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Toista kertaa toteutettava Espoon kirjastojen Ympäristökevät sisältää taas kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta. Esitysten sisällöistä vastaavat HSY, Omnia, Luontoliitto, Kestävän kehityksen osaamiskeskus, Villa Elfvik sekä Espoon ympäristöyhdistys. </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn.</p><p>Näyttelyssä kerrotaan hulevedestä ja siitä, miten se liittyy Itämeren roskaantumiseen. Omnia esittelee huleveden hyödyntämistä pihoissa ja puutarhoissa. Toinen osa näyttelystä kertoo typpikuormasta, eli kuinka liiallinen proteiinin syönti rehevöittää Itämerta. </p><p>Entressen kirjastossa 8.-29.4. <br>Ison Omenan kirjastossa 30.4.-18.5. <br>Tapiolan kirjastossa 20.5. - 10.6. <br>Sellon kirjastossa 24.6. - 15.7.  </p>",
                "sv": "<p>Esbobibliotekens Miljövår, som hålls för andra gången, innehåller återigen ett intressant och underhållande program om en mer hållbar livsstil. HRM, Omnia, Luontoliitto, Centrum för hållbar utveckling, Villa Elfvik och Esbo Miljöförening ansvarar för innehållet i presentationerna.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HSY och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. </p><p>Utställningen berättar om dagvatten och hur det är relaterat till nedskräpningen av Östersjön. Omnia presenterar användningen av dagvatten i gårdar och trädgårdar. Den andra delen av utställningen berättar om kvävebelastningen, det vill säga hur överdriven proteinkonsumtion gör Östersjön frodig.</p><p>Entresse bibliotek 8.-29.4.<br>Iso Omena biblioteket 30.4.-20.5.<br>Tapiola biblioteket 20.5. - 10.6.<br>Sello biblioteket 24.6. - 15.7.</p>",
                "en": "<p>The Espoo libraries' Environmental Spring, which will be held for the second time, again contains an interesting and entertaining program about a more sustainable lifestyle. HSY, Omnia, Luontoliitto, Center for Sustainable Development, Villa Elfvik and the Espoo Environmental Association are responsible for the content of the presentations. </p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. </p><p>Entresse Library 8.-29.4.<br>Iso Omena Library 30.4.-20.5.<br>Tapiola Library 20.5. - 10.6.<br>Sello Library 24.6. - 15.7.</p>"
            },
            "provider": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk3ny/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi6bjk3se",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-25T10:30:13.233196Z",
            "last_modified_time": "2024-04-25T10:30:13.233219Z",
            "date_published": "2024-04-25T10:23:00Z",
            "start_time": "2024-05-23T10:00:00Z",
            "end_time": "2024-05-23T13: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,
            "short_description": {
                "fi": "Tule juttelemaan omasta hyvinvoinnista ja saa vinkkejä liikkumiseen!",
                "sv": "Kom och diskutera ditt välmående och få tips om motion! ",
                "en": "Let´s talk about your well-being and physical activity! "
            },
            "name": {
                "fi": "Liikuntaneuvontakiertue",
                "sv": "Träningsrådgivningstur",
                "en": "Exercise counseling tour"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Tule juttelemaan omasta hyvinvoinnista ja saa vinkkejä liikkumiseen! Liikunnanohjaajamme ovat tavattavissa kirjastoissa toukokuussa. Kiertue on maksuton.<br>ti 14.5. klo 13–16 Lippulaivan kirjasto<br>to 16.5 klo 13–16 Iso omenan kirjasto<br>ti 21.5. klo 13–16 Kalajärven kirjasto<br>to 23.5. klo 13–16 Entressen kirjasto<br>ti 28.5. klo 13–16 Sellon kirjasto<br>to 30.5. klo 13–16 Tapiolan kirjasto<br></p>",
                "sv": "<p>Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj. Tillställningen är gratis. </p><p>ti 14.5. kl.13–16 Lippulaiva bibliotek<br>to 16.5 kl. 13–16 Iso omena bibliotek<br>ti 21.5. kl. 13–16 Kalajärvi bibliotek<br>to 23.5. kl. 13–16 Entresse bibliotek<br>ti 28.5. kl. 13–16 Sello bibliotek<br>to 30.5. kl. 13–16 Hagalunds bibliotek<br></p>",
                "en": "<p>Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. The event is free of charge.<br>Tue. 14.5. 13–16 Lippulaiva library<br>Thu. 16.5 13–16 Iso omena library<br>Tue. 21.5. 13–16 Kalajärvi library<br>Thu. 23.5. 3–16 Entresse library<br>Tue. 28.5. 13–16 Sello library<br>Thu. 30.5. 13–16 Tapiola library<br></p>"
            },
            "provider": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk3se/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi6bjk3vu",
            "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:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T13:46:12.318765Z",
            "last_modified_time": "2024-04-25T10:09:35.105976Z",
            "date_published": null,
            "start_time": "2024-04-27T10:00:00Z",
            "end_time": "2024-04-27T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Musafestarien aikataulu on nyt julkaistu! Musafestareilla esiintyjinä toimivat kirjaston asiakkaat. ",
                "sv": "Schemat för musikfestivalen är nu publicerat!",
                "en": "The schedule for the Music Festivals is now published!"
            },
            "name": {
                "fi": "Sellon kirjaston Musafestarit III",
                "sv": "Sellobibliotekets musikfestival III",
                "en": "Sello Library Music Festival III"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "lava",
                "sv": "stage",
                "en": "stage"
            },
            "description": {
                "fi": "<p>Sellon kirjaston Musafestarit lauantaina 27.4 kello 13.00.</p><p>Musafestarin ohjelma on nyt julkaistu! Musafestareilla esiintyjinä toimivat kirjaston asiakkaat. </p><p><br>13.00 \"Piano Machine\" Pekka Laihanen  </p><p>     Syntwave-tyyppistä musaa.    <br> <br>13.20 Ukulele Alisa </p><p>     Elämänmakuisia tarinoita ukulelen säestyksellä. Alisa <br>     esittää keikoilla myös cover biisejä, mutta Sellon kirjaston <br>     musafestareilla keskitytään omaan tuotantoon. </p><p> <br>13.40 Heinä </p><p>     Olen Heinä, hei! Oon tehnyt lavarunoutta ja musiikkia, <br>     Soundcloudissa on lisää. </p><p> <br>14.00 Neta Mustonen  </p><p>     Olen Helsinkiläinen laulaja &amp; biisintekijä. Sellossa esiinnyn <br>     omilla kappaleillani, mukanani Leevi (rummut), Sofia (piano <br>     + taustalaulu) ja Dundis (basso). Loosemaroose yhtyeen <br>     solisti Erik, jonka kanssa olemme tehneet yhteistyötä <br>     osallistuu myös esitykseen. </p><p> <br>14.20 Heli Järvenpää </p><p>     Heli Järvenpää on iskelmää ja poppia luova laulaja– <br>     lauluntekijä, joka uskoo, että arkisesta elämästä löytyvät <br>     parhaat aiheet biiseille.</p><p> <br>14.40 Heartbreak Lane</p><p>     Heartbreak Lane on Kare Poutasen ja Petri Ekqvistin <br>     muodostama kokoonpano, jonka musiikkia voi luonnehtia <br>     akustiseksi pop musiikiksi. Heartbrake Lane soittaa itse <br>     sanoittamaansa ja säveltämäänsä musiikkia. <br> </p><p>15.00 Fredrica Nyman </p><p>     Jag skriver musik på svenska och engelska och översätter <br>     också en del låttexter till svenska och min musik handlar <br>     ofta om psykisk (o)hälsa, mina upplevelser av det samt <br>     betydelsefulla händelser och individer. Jag vill att min musik <br>     ska väcka tankar och inge tröst.  </p><p> <br>15.20 DNV Keisari </p><p>     Monitaitoinen muusikko </p><p><br>15.40 Darya ja Olga </p><p>     Piano duo </p><p> </p><p>16.00 Medred medre </p><p>     Rap</p><p> <br>16.20 Quasar-bändi</p><p>     Quasar-bändi esittää omia kappaleitaan.<br> </p><p>16.40 4XSloths  </p><p>     4XSloths is the hottest new upcoming band. Despite our <br>     name we put on a high energy show. We'll play the songs <br>     Give You Hell, Seven Nation Army and Until I Found You.   <br> </p><p>17.00 Vilna Vivian </p><p>     VilnaVivian on helsinkiläinen artisti, joka tekee <br>     suomenkielistä elektroindiepoppia. Hänen musiikissaan <br>     puhuttelee ennalta-arvaamattomuus, kiinnostava <br>     soundimaailma, koukuttavat melodiat sekä koskettavat <br>     sanoitukset. VilnaVivian tuottaa, säveltää ja sanoittaa <br>     kappaleensa itse. <br> </p><p></p><p></p><p>#festarit #festivaali #musiikki #konsertti #esitys</p>",
                "sv": "<p>Den 27 April kl. 13.00 ordnas en musikfestival i Sellos bibliotek. Schemat för festivalen är nu publicerat!</p><p><br>13.00 \"Piano Machine\" Pekka Laihanen  </p><p>     Syntwave-tyyppistä musaa.    <br> <br>13.20 Ukulele Alisa </p><p>     Elämänmakuisia tarinoita ukulelen säestyksellä. Alisa <br>     esittää keikoilla myös cover biisejä, mutta Sellon kirjaston <br>     musafestareilla keskitytään omaan tuotantoon. </p><p> <br>13.40 Heinä </p><p>     Olen Heinä, hei! Oon tehnyt lavarunoutta ja musiikkia, <br>     Soundcloudissa on lisää. </p><p> <br>14.00 Neta Mustonen  </p><p>     Olen Helsinkiläinen laulaja &amp; biisintekijä. Sellossa esiinnyn <br>     omilla kappaleillani, mukanani Leevi (rummut), Sofia (piano <br>     + taustalaulu) ja Dundis (basso). Loosemaroose yhtyeen <br>     solisti Erik, jonka kanssa olemme tehneet yhteistyötä <br>     osallistuu myös esitykseen. </p><p> <br>14.20 Heli Järvenpää </p><p>     Heli Järvenpää on iskelmää ja poppia luova laulaja– <br>     lauluntekijä, joka uskoo, että arkisesta elämästä löytyvät <br>     parhaat aiheet biiseille.</p><p> <br>14.40 Heartbreak Lane</p><p>     Heartbreak Lane on Kare Poutasen ja Petri Ekqvistin <br>     muodostama kokoonpano, jonka musiikkia voi luonnehtia <br>     akustiseksi pop musiikiksi. Heartbrake Lane soittaa itse <br>     sanoittamaansa ja säveltämäänsä musiikkia. <br> </p><p>15.00 Fredrica Nyman </p><p>     Jag skriver musik på svenska och engelska och översätter <br>     också en del låttexter till svenska och min musik handlar <br>     ofta om psykisk (o)hälsa, mina upplevelser av det samt <br>     betydelsefulla händelser och individer. Jag vill att min musik <br>     ska väcka tankar och inge tröst.  </p><p> <br>15.20 DNV Keisari </p><p>     Monitaitoinen muusikko </p><p><br>15.40 Darya ja Olga </p><p>     Piano duo </p><p> </p><p>16.00 Medred medre </p><p>     Rap</p><p> <br>16.20 Quasar-bändi</p><p>     Quasar-bändi esittää omia kappaleitaan.<br> </p><p>16.40 4XSloths  </p><p>     4XSloths is the hottest new upcoming band. Despite our <br>     name we put on a high energy show. We'll play the songs <br>     Give You Hell, Seven Nation Army and Until I Found You.   <br> </p><p>17.00 Vilna Vivian </p><p>     VilnaVivian on helsinkiläinen artisti, joka tekee <br>     suomenkielistä elektroindiepoppia. Hänen musiikissaan <br>     puhuttelee ennalta-arvaamattomuus, kiinnostava <br>     soundimaailma, koukuttavat melodiat sekä koskettavat <br>     sanoitukset. VilnaVivian tuottaa, säveltää ja sanoittaa <br>     kappaleensa itse. <br></p>",
                "en": "<p>Sello Library is hosting a Music Festival on Saturday 27th of April at 13.00. Sello Music Festival schedule is now published!</p><p><br>13.00 \"Piano Machine\" Pekka Laihanen  </p><p>     Syntwave-tyyppistä musaa.    <br> <br>13.20 Ukulele Alisa </p><p>     Elämänmakuisia tarinoita ukulelen säestyksellä. Alisa <br>     esittää keikoilla myös cover biisejä, mutta Sellon kirjaston <br>     musafestareilla keskitytään omaan tuotantoon. </p><p> <br>13.40 Heinä </p><p>     Olen Heinä, hei! Oon tehnyt lavarunoutta ja musiikkia, <br>     Soundcloudissa on lisää. </p><p> <br>14.00 Neta Mustonen  </p><p>     Olen Helsinkiläinen laulaja &amp; biisintekijä. Sellossa esiinnyn <br>     omilla kappaleillani, mukanani Leevi (rummut), Sofia (piano <br>     + taustalaulu) ja Dundis (basso). Loosemaroose yhtyeen <br>     solisti Erik, jonka kanssa olemme tehneet yhteistyötä <br>     osallistuu myös esitykseen. </p><p> <br>14.20 Heli Järvenpää </p><p>     Heli Järvenpää on iskelmää ja poppia luova laulaja– <br>     lauluntekijä, joka uskoo, että arkisesta elämästä löytyvät <br>     parhaat aiheet biiseille.</p><p> <br>14.40 Heartbreak Lane</p><p>     Heartbreak Lane on Kare Poutasen ja Petri Ekqvistin <br>     muodostama kokoonpano, jonka musiikkia voi luonnehtia <br>     akustiseksi pop musiikiksi. Heartbrake Lane soittaa itse <br>     sanoittamaansa ja säveltämäänsä musiikkia. <br> </p><p>15.00 Fredrica Nyman </p><p>     Jag skriver musik på svenska och engelska och översätter <br>     också en del låttexter till svenska och min musik handlar <br>     ofta om psykisk (o)hälsa, mina upplevelser av det samt <br>     betydelsefulla händelser och individer. Jag vill att min musik <br>     ska väcka tankar och inge tröst.  </p><p> <br>15.20 DNV Keisari </p><p>     Monitaitoinen muusikko </p><p><br>15.40 Darya ja Olga </p><p>     Piano duo </p><p> </p><p>16.00 Medred medre </p><p>     Rap</p><p> <br>16.20 Quasar-bändi</p><p>     Quasar-bändi esittää omia kappaleitaan.<br> </p><p>16.40 4XSloths  </p><p>     4XSloths is the hottest new upcoming band. Despite our <br>     name we put on a high energy show. We'll play the songs <br>     Give You Hell, Seven Nation Army and Until I Found You.   <br> </p><p>17.00 Vilna Vivian </p><p>     VilnaVivian on helsinkiläinen artisti, joka tekee <br>     suomenkielistä elektroindiepoppia. Hänen musiikissaan <br>     puhuttelee ennalta-arvaamattomuus, kiinnostava <br>     soundimaailma, koukuttavat melodiat sekä koskettavat <br>     sanoitukset. VilnaVivian tuottaa, säveltää ja sanoittaa <br>     kappaleensa itse.  </p><p></p><p><br>#music #festival #performance #live </p>"
            },
            "provider": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk3vu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63464",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150801,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-24T15:14:33.629796Z",
                    "last_modified_time": "2024-04-24T15:14:33.629813Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746656.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150801/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-24T15:14:33.590569Z",
            "last_modified_time": "2024-04-24T15:14:33.699636Z",
            "date_published": null,
            "start_time": "2024-05-23T13: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,
            "short_description": {
                "fi": "YAM HA vie sahelilaisten musiikkiperinteiden ja länsimaisen vapaan musiikin rähjäisille rajaseuduille.",
                "sv": "YAM HA är Jussi Kivis (trummor) och Juuso Paasos (gitarr) expedition till de osnygga gränserna mellan Saheliska musiktraditioner och västerländsk fri musik.",
                "en": "YAM HA takes to the ragged frontiers of the Sahelian musical traditions and Western free music."
            },
            "name": {
                "fi": "YAM HA – Open Stage",
                "sv": "YAM HA – Open Stage",
                "en": "YAM HA – Open Stage"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>YAM HA vie sahelilaisten musiikkiperinteiden ja länsimaisen vapaan musiikin rähjäisille rajaseuduille.</p><p>Jussi Kivi (rummut) on tehnyt uran teollisia joutomaita tutkiskelleena kuvataiteilijana, mutta viime vuosina hän on keskittynyt lyömäsoittimiin. Juuso Paaso (kitara) on freelance-kirjoittaja ja muusikko.</p>",
                "sv": "<p>YAM HA är Jussi Kivis (trummor) och Juuso Paasos (gitarr) expedition till de osnygga gränserna mellan Saheliska musiktraditioner och västerländsk fri musik.</p><p>Duon svävar lugnt i stormens öga när de reser mot okända territorier.</p><p>Jussi Kivi har gjort karriär som bildkonstnär och utforskat industriella ödemarker, men på senare år har han fokuserat på slagverk. Juuso Paaso är frilansskribent och musiker.</p>",
                "en": "<p>YAM HA takes to the ragged frontiers of the Sahelian musical traditions and Western free music.</p><p>The duo floats calmly in the eye of the storm as they travel towards uncharted territories.</p><p>Jussi Kivi (drums) has a career as a visual artist exploring industrial wastelands but in the recent years he has immersed himself in rhythm. Juuso Paaso (guitar) is a freelance writer and musician.</p>"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A40E4745C9C3757A1D12C4465D0EDD8B/YAM_HA_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/A40E4745C9C3757A1D12C4465D0EDD8B/YAM_HA_",
                "en": "http://www.espanlava.fi/en/events/event/A40E4745C9C3757A1D12C4465D0EDD8B/YAM_HA_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63464/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:e3e886c3-6e1d-422e-82cf-3eb8dbd3e12b",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20403/?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/kultus:1/?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: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": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Testataan_Pivittmist_Linkkariin_TL-DG_240420242406640898"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 150754,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-24T10:52:16.774158Z",
                    "last_modified_time": "2024-04-24T10:52:16.774179Z",
                    "name": "Suomenlinna",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/9bb9c043-8dfc-ee11-a1ff-000d3ab363c5",
                    "cropping": "",
                    "photographer_name": "Jussi Hellsten",
                    "alt_text": "Suomenlinna",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150754/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "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/kultus:1/?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: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-04-24T10:46:15.215642Z",
            "last_modified_time": "2024-04-24T10:52:18.561332Z",
            "date_published": "2024-04-24T10:43:02Z",
            "start_time": "2024-04-24T09:00:00Z",
            "end_time": "2024-04-24T10:55: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-04-25T08:00:00+03:00",
            "enrolment_end_time": "2024-06-23T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Testataan Päivittämistä Linkkariin TL-DG 24.04.2024"
            },
            "name": {
                "fi": "Testataan Päivittämistä Linkkariin TL-DG 24.04.2024 Nimeä päivitetty"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<div><p>Testataan Päivittämistä Linkkariin TL-DG 24.04.2024</p></div>"
            },
            "provider": {
                "fi": "Digia"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:e3e886c3-6e1d-422e-82cf-3eb8dbd3e12b/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi6bjk34y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": 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-04-23T11:40:39.047805Z",
            "last_modified_time": "2024-04-23T11:40:39.047829Z",
            "date_published": "2024-04-23T11:30:00Z",
            "start_time": "2024-06-14T11:00:00Z",
            "end_time": "2024-06-14T12: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,
            "short_description": {
                "fi": "Valolaatikkopajassa pääsee tekemään revontulimaisia varjoasetelmia.",
                "sv": "I ljuslådeverkstaden kan du göra norrskensliknande skuggarrangemang.",
                "en": "In the light box workshop, you can make aurora-like shadow arrangements."
            },
            "name": {
                "fi": "Valopaja lapsille",
                "sv": "Lättverkstad för barn",
                "en": "Light workshop for children"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "paja",
                "sv": "paja",
                "en": "paja"
            },
            "description": {
                "fi": "<p>Valolaatikkopajassa pääsee tekemään revontulimaisia varjoasetelmia. Värikkäät avaimenperävalaisimet suunnataan mukeihin ja leikkieläimiin jolloin valot muodostavat kiehtovia varjoja laatikon sisään. Paja toimii non-stop -periaatteella eikä sinne ole ikärajaa. Vetäjänä valoilmaisun medianomi Jukka Laine.</p>",
                "sv": "<p>I ljuslådeverkstaden kan du göra norrskensliknande skuggarrangemang. Färgglada nyckelringljus riktar sig till muggar och leksaksdjur, vilket gör att lamporna skapar fascinerande skuggor inuti lådan. Verkstaden arbetar på oavbrutet basis och det finns ingen åldersgräns. Leds av Jukka Laine, medieexpert inom lätta uttryck.</p>",
                "en": "<p>In the light box workshop, you can make aurora-like shadow arrangements. Colorful Keychain lights are aimed at mugs and toy animals, causing the lights to create fascinating shadows inside the box. The workshop works on a non-stop basis and there is no age limit. Led by Jukka Laine, media expert in light expression.</p>"
            },
            "provider": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk34y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}