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

{
    "meta": {
        "count": 19182,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=204",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=202"
    },
    "data": [
        {
            "id": "kulke:63572",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151009,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-06T11:13:49.878421Z",
                    "last_modified_time": "2024-05-06T11:13:49.878437Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744892.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151009/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-06T11:13:49.852936Z",
            "last_modified_time": "2024-05-21T13:13:38.636932Z",
            "date_published": null,
            "start_time": "2024-06-11T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jiri Nikkinen Trio – Malmin tapahtumakesä",
                "sv": "Jiri Nikkinen Trio – Malms evenemangssommar",
                "en": "Jiri Nikkinen Trio – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Jiri Nikkinen Trio esittää 60-luvun musiikkia, jossa pääpaino on The Beatlesin tuotannolla. Lisäksi kuullaan The Kinksiä, The Whota, Monkeesia ja Cliftersiä muita legendaarisia aikakauden bändejä.",
                "sv": "Jiri Nikkinen Trio framför 60-talsmusik med huvudbetoning på The Beatles produktion. Dessutom får vi höra The Kinks, The Who, Monkees och Clifters samt andra legendariska band från tidseran.",
                "en": "Jiri Nikkinen Trio performs music from the 60s with a focus on The Beatles. They also play The Kinks, The Who, the Monkees and the Clifters, along with other legends from a legendary decade."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2FEBD0298E3B172F42E47F737B57E4E3/Jiri_Nikkinen_Trio",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2FEBD0298E3B172F42E47F737B57E4E3/Jiri_Nikkinen_Trio",
                "en": "http://www.malmitalo.fi/en/events/event/2FEBD0298E3B172F42E47F737B57E4E3/Jiri_Nikkinen_Trio"
            },
            "description": {
                "fi": "<p>Jiri Nikkinen Trio esittää 60-luvun musiikkia, jossa pääpaino on The Beatlesin tuotannolla. Lisäksi kuullaan The Kinksiä, The Whota, Monkeesia ja Cliftersiä muita legendaarisia aikakauden bändejä.</p><p>Jiri Nikkinen tunnetaan niin legendaarisesta Clifters -yhtyeestään kuin The Beatles Tribute Band -yhtyeestä.</p><p>The Beatles ja 60-luvun musiikki ylipäätään onkin ollut Jirin kaikelle tekemiselle yhdistävä tekijä. Keikkoja yhtye on tehnyt niin Suomessa kuin maailmallakin.</p>",
                "sv": "<p>Jiri Nikkinen Trio framför 60-talsmusik med huvudbetoning på The Beatles produktion. Dessutom får vi höra The Kinks, The Who, Monkees och Clifters samt andra legendariska band från tidseran.</p><p>Förutom från sitt legendariska band Clifters är Jiri Nikkinen känd från bandet The Beatles Tribute Band. The Beatles och 60-talets musik har varit en gemensam nämnare i all Jiris aktivitet. Bandet har haft spelningar både i Finland och på andra håll i världen.</p>",
                "en": "<p>Jiri Nikkinen Trio performs music from the 60s with a focus on The Beatles. They also play The Kinks, The Who, the Monkees and the Clifters, along with other legends from a legendary decade.</p><p>Jiri Nikkinen is known for both his legendary band, the Clifters, as well as for The Beatles Tribute Band. The Beatles and 60s music have been the unifying factor for everything that Jiri has done. His band has toured both in Finland and abroad.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63572/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agitd6ddei",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6cge4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6dc4u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6dc7e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6ddbu/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-05-21T09:53:37.756236Z",
            "last_modified_time": "2024-05-21T13:01:34.096995Z",
            "date_published": null,
            "start_time": "2024-06-06T14:30:00Z",
            "end_time": "2024-06-27T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sateenkaarisatuhetki",
                "sv": "Pride sagostund",
                "en": "Pride Story Hour"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Kesäkuun ajan Lippulaivan satuhetkissä luetaan sateenkaarevia kuvakirjoja. ",
                "sv": "Under Pride-månaden ordnar biblioteket pride-sagostunder. Sagostunden är på finska.",
                "en": "For Pride month, the library will host pride story hours. Story hour is in Finnish."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kesäkuun ajan Lippulaivan satuhetkissä luetaan sateenkaarevia kuvakirjoja. </p>",
                "sv": "<p>Under Pride-månaden ordnar biblioteket pride-sagostunder. Sagostunden är på finska.</p>",
                "en": "<p>For Pride month, the library will host pride story hours. Story hour is in Finnish.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6ddei/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63573",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151008,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-06T11:13:49.151381Z",
                    "last_modified_time": "2024-05-06T11:13:49.151404Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746019.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151008/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-06T11:13:49.102187Z",
            "last_modified_time": "2024-05-21T12:12:48.729769Z",
            "date_published": null,
            "start_time": "2024-06-08T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Malmin vaiheita pyöräillen – Malmin tapahtumakesä",
                "sv": "Malms skeden på cykel – Malms evenemangssommar",
                "en": "History of Malmi on wheels – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Opastetulla pyöräretkellä tutustutaan Malmin historiaan. Retki alkaa Malmitalon edestä Ala-Malmin torilta klo 12 ja kestää noin kaksi ja puoli tuntia. Retki on suomeksi.",
                "sv": "På den guidade cykelturen tar vi del av Malms historia. Cykelturen börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar i cirka två och en halv timme. På finska.",
                "en": "Get to know the history of Malmi on a guided bicycle ride. The trip starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts for roughly two and a half hours. In Finnish."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7210D1A20038D535544EE64AF3ACEF15/Malmin_vaiheita_pyoraillen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7210D1A20038D535544EE64AF3ACEF15/Malms_skeden_pa_cykel",
                "en": "http://www.malmitalo.fi/en/events/event/7210D1A20038D535544EE64AF3ACEF15/History_of_Malmi_on_wheels"
            },
            "description": {
                "fi": "<p>Opastetulla pyöräretkellä tutustutaan Malmin historiaan. Retki alkaa Malmitalon edestä Ala-Malmin torilta klo 12 ja kestää noin kaksi ja puoli tuntia. Retki on suomeksi.</p><p>Malmin pitkä historiallinen kehitys keskiaikaisesta maalaiskylästä suureksi, jälleen uudistuvaksi kaupunginosaksi näkyy laajan alueen moninaisissa rakennuksissa ja maisemissa, joihin tutustutaan opastetulla pyöräilykierroksella.</p><p>Kierros kestää noin kaksi ja puoli tuntia.</p><p>Pyöräretki on toteutettu yhteistyössä Helsingin kaupunginmuseon ja WalkHelsingin kanssa.</p><p>Malmin vaiheita pyöräillen liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 Helsingin kaupunginmuseon päärakennuksessa, osoitteessa Aleksanterinkatu 16.</p><p>Pyöräretkelle on vapaa pääsy, ei ennakkoilmoittautumista.</p>",
                "sv": "<p>På den guidade cykelturen tar vi del av Malms historia. Cykelturen börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar i cirka två och en halv timme. På finska.</p><p>Malms långa historiska utveckling från en medeltida by på landsbygden till en stor stadsdel som åter är i förnyelse syns på områdets mångfaldiga byggnader och landskap, som vi bekantar oss med på en guidad cykeltur.</p><p>Turen varar i cirka två och en halv timme.</p><p>Cykelturen har genomförts i samarbete med Helsingfors stadsmuseum och WalkHelsinki. Cykelturen anknyter till utställningen Mestor och paikkor – Se Helsingfors med nya ögon, som visas i stadsmuseets huvudbyggnad 9.5.–15.9.2024 på adressen Alexandersgatan 16.</p><p>Fritt inträde, ingen förhandsanmälan.</p><p>Språk: finska</p>",
                "en": "<p>Get to know the history of Malmi on a guided bicycle ride. The trip starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts for roughly two and a half hours. In Finnish.</p><p>The development of Malmi from a rural village in the medieval period to a large, ever-changing city district can be seen in the variety of buildings and landscapes in the large area, which you can get to know with a guided bicycle tour.</p><p>The tour takes roughly two and a half hours.</p><p>The bicycle tour is implemented in cooperation with the Helsinki City Museum and WalkHelsinki. The bicycle ride is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p><p>Free admission, no advance registration.</p><p>Language: Finnish</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63573/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63575",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151013,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-06T14:13:30.987485Z",
                    "last_modified_time": "2024-05-06T14:13:30.987498Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746017.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151013/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-06T14:13:30.952041Z",
            "last_modified_time": "2024-05-21T12:12:48.441929Z",
            "date_published": null,
            "start_time": "2024-06-07T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Rauhallinen muistelukävely Malmilla – Malmin tapahtumakesä",
                "sv": "Lugn minnespromenad på Malm – Malms evenemangssommar",
                "en": "A peaceful walk down memory lane at Malmi – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Opastetulla kävelykierroksella tutustutaan Malmin historiaan. Kävelykierros alkaa Malmitalon edestä Ala-Malmin torilta klo 11 ja kestää noin klo 12.30 saakka.",
                "sv": "På den guidade promenadrundan bekantar vi oss med Malms historia. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 11 och varar fram till cirka kl. 12.30.",
                "en": "Get to know the history of Malmi on a guided walking tour. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 11 am and lasts until roughly 12:30 pm."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3203163EBF56AAAB2991C0D689EE06DE/Rauhallinen_muistelukavely_Malmilla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3203163EBF56AAAB2991C0D689EE06DE/Lugn_minnespromenad_pa_Malm",
                "en": "http://www.malmitalo.fi/en/events/event/3203163EBF56AAAB2991C0D689EE06DE/A_peaceful_walk_down_memory_lane_at_Malmi"
            },
            "description": {
                "fi": "<p>Opastetulla kävelykierroksella tutustutaan Malmin historiaan. Kävelykierros alkaa Malmitalon edestä Ala-Malmin torilta klo 11 ja kestää noin klo 12.30 saakka.</p><p>Malmi on muuttunut paljon, ja muutos jatkuu vilkkaana. Muistelukävelyllä kuljetaan rauhalliseen tahtiin helppo reitti Ala-Malmin puistosta Malmin kirkolle välillä levähtäen. Lisäksi virkistetään muistoja vanhoja valokuvia katsellen ja jutustellen.</p><p>Vapaaehtoistyöntekijän vetämä kierros kestää noin puolitoista tuntia.<br>Tervetuloa matkalle läpi rakkaan kaupunginosamme historian!</p><p>Kävely on toteutettu yhteistyössä Malmitalon kanssa, ja se liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 kaupunginmuseon päärakennuksessa, osoitteessa Aleksanterinkatu 16.</p>",
                "sv": "<p>På den guidade promenadrundan bekantar vi oss med Malms historia. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 11 och varar fram till cirka kl. 12.30.</p><p>Malm har förändrats mycket och förändringen fortsätter i rask takt. På minnespromenaden promenerar vi i lugn takt längs en lätt rutt från Nedre Malms park till Malms kyrka, och tar pauser på vägen. Dessutom väcker vi upp minnen genom att titta på gamla fotografier och samtala.</p><p>Rundan som dras av en frivilligarbetare varar i cirka en och en halv timme.  Välkommen på en resa genom vår kära stadsdels historia!</p><p>Språk: finska</p><p>Promenaden har genomförts i samarbete med Malms kulturhus och den anknyter till utställningen Mestor och paikkor – Se Helsingfors med nya ögon, som visas i stadsmuseets huvudbyggnad 9.5.–15.9.2024 på adressen Alexandersgatan 16.</p>",
                "en": "<p>Get to know the history of Malmi on a guided walking tour. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 11 am and lasts until roughly 12:30 pm.</p><p>Malmi has changed a lot over the years, and that change keeps getting faster. This is an easy-going walk down memory lane from Ala-Malmi Park to the Malmi Church, with time to stop and rest. It is an excellent opportunity to jot your memory with old photos and discussion.</p><p>This walk, led by a volunteer, lasts for roughly an hour and a half. The walking tour is in Finnish. Join us on a walk into the history of our part of town!</p><p>The walk is implemented in cooperation with Malmitalo Cultural Centre, and is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63575/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:c3854a3b-4a12-4368-8faa-f2062933ede4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/90a5debe-5217-ef11-9f8a-000d3ab59432?readableEventId=LMtest_vitonen2383580494"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 151264,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-05-21T12:03:38.747965Z",
                    "last_modified_time": "2024-05-21T12:03:38.747986Z",
                    "name": "kuvatekstii",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e05bb5dd-9b16-ef11-9f89-0022489e55b1",
                    "cropping": "",
                    "photographer_name": "Lars Linssi",
                    "alt_text": "alttii",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151264/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-05-21T09:39:40.977992Z",
            "last_modified_time": "2024-05-21T12:03:40.673189Z",
            "date_published": "2024-05-21T09:32:09Z",
            "start_time": "2024-05-21T12:30:00Z",
            "end_time": "2024-05-21T13:00: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-05-01T08:00:00+03:00",
            "enrolment_end_time": "2024-05-18T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "LMtest vitonen"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Liisa Mallat/ Business Helsinki"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "LMtest vitonen short desc"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>LMtest vitonen long desc</p></div>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:c3854a3b-4a12-4368-8faa-f2062933ede4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzwgnvki",
            "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/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgntla/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgntpi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgntry/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgntt4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgntv4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgntya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgntz4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnt4a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnt7q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnuby/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnud4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnuf4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnuia/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnuki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnumm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnuoq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnuqy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnuta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnuvm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnuxq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnu3e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnu5i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnu7u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnvby/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnvdy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnvga/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnvie/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-21T11:17:09.846022Z",
            "last_modified_time": "2024-05-21T11:17:09.846048Z",
            "date_published": null,
            "start_time": "2024-06-01T07:00:00Z",
            "end_time": "2024-06-30T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sateenkaaritehtäviä",
                "sv": "Regnbågsuppgifter",
                "en": "LGBTQIA+ activities"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Itsenäisiä tehtäviä sateenkaariteemalla Lastenmaassa ja Pointissa.",
                "sv": "Självständiga uppgifter med regnbågstema på Barnavdelningen och i Pointti.",
                "en": "Independent activities with LGBTQIA+ theme in Lastenmaa and Pointti."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Itsenäisiä tehtäviä sateenkaariteemalla Lastenmaassa ja Pointissa.</p>",
                "sv": "<p>Självständiga uppgifter med regnbågstema på Barnavdelningen och i Pointti.</p>",
                "en": "<p>Independent activities with LGBTQIA+ theme in Lastenmaa and Pointti.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgnvki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63558",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150937,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-03T11:13:03.514167Z",
                    "last_modified_time": "2024-05-03T11:13:03.514184Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746046.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150937/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-03T11:13:03.489320Z",
            "last_modified_time": "2024-05-21T11:12:52.058168Z",
            "date_published": null,
            "start_time": "2024-06-04",
            "end_time": "2024-06-14",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Malmi Coffee – nuorten kesäkahvila – ti-pe klo 13–17, la klo 11–15",
                "sv": "Malmi Coffee – de ungas sommarkafé – tis-fre kl. 13–17, lör kl. 11–15",
                "en": "Malmi Coffee – summer café by young people – Tue-Mon at 1 pm to 7 pm, Sat at 11 am to 3 pm"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tule kahville nuorten omaan kesäkahvilaan!",
                "sv": "Kom på kaffe till de ungas eget sommarkafé!",
                "en": "Have a cup of coffee at our summer café, which is run by local young people!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/027FDC49DD9E7EF7C15D3805F84D45CD/Malmi_Coffee_nuorten_kesakahvila",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/027FDC49DD9E7EF7C15D3805F84D45CD/Malmi_Coffee_de_ungas_sommarkaf_",
                "en": "http://www.malmitalo.fi/en/events/event/027FDC49DD9E7EF7C15D3805F84D45CD/Malmi_Coffee_summer_caf_by_young_people"
            },
            "description": {
                "fi": "<p>Tule kahville nuorten omaan kesäkahvilaan!</p><p>Kahvila on avoinna Ala-Malmin puiston paviljongissa tiistaista perjantaihin klo 13–17 ja lauantaisin klo 11–15.</p><p>Myynnissä on kahvia, teetä ja pientä purtavaa. Järjestämme myös mukavaa toimintaa kahvilan ohessa kaiken ikäisille. Luvassa on pihapelejä, piirtämistä, visailua ja vesipallorieha.</p><p>Nuorten suunnittelema ja toteuttama pop up -kesäkahvila on osa Malmin tapahtumakesää. Kahvila työllistää erityisesti 14–15-vuotiaita nuoria.</p><p>Kahvila syntynyt Nuorten Budjetin Unelma olla rikas – Töitä nuorille -toimenpiteen kautta osana Helsingin kaupungin Nuorisopalveluiden tuottamaa toimintaa.</p>",
                "sv": "<p>Kom på kaffe till de ungas eget sommarkafé!</p><p>Kaféet är öppet i paviljongen i Nedre Malms park från tisdag till fredag kl. 13–17 och på lördagar kl. 11–15.</p><p>Kaffe, te och litet tilltugg finns till salu. Vid sidan av kaféet ordnar vi även trevliga aktiviteter för alla åldrar. Gårdsspel, ritning, frågesporter och ett vattenpolojippo utlovas.</p><p>Pop up-sommarkaféet har planerats och genomförts av unga och är en del av Malms evenemangssommar. Kaféet sysselsätter särskilt 14–15-åriga unga.</p>",
                "en": "<p>Have a cup of coffee at our summer café, which is run by local young people!</p><p>The café is open in the Ala-Malmi Park pavilion from Tuesday to Friday at 1 pm to 7 pm and on Saturdays at 11 am to 3 pm.</p><p>We sell coffee, tea and snacks. We also arrange small activities for all ages at the café. including yard games, drawing, quizzes and a water-balloon fight.</p><p>This pop up summer café, planned and implemented by young people, is a part of the Malmi Summer of Events. The café is a source of employment for young people aged 14–15.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63558/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzvyxdse",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxdgm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxdla/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxdpy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agietdugya/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-21T10:31:46.974974Z",
            "last_modified_time": "2024-05-21T10:31:46.975000Z",
            "date_published": null,
            "start_time": "2024-06-04T13:00:00Z",
            "end_time": "2024-06-25T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sateenkaariklubi",
                "sv": "Regnbågsklubben",
                "en": "Rainbow club"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "short_description": {
                "fi": "Kaikille LGBTQIA+ vähemmistöille tarkoitettu klubi. ",
                "sv": "En klubb för alla HBTQIA+ minoriteter.",
                "en": "A club for all LGBTQIA+ minorities."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kaikille nuorille seksuaali- ja sukupuolivähemmistöille tarkoitettu klubi. Klubissa hengaillaan, jutellaan, askarrellaan sekä tehdään paljon muuta mukavaa. Noudatamme turvallisemman tilan periaatteita. Kokoontumiset kesäkuun joka tiistai.</p><p>Tervetuloa!<br></p>",
                "sv": "<p>En klubb för alla HBTQIA+ minoriteter. I klubben kan du hänga, chatta, pyssla och göra massor av andra roliga saker. </p><p>Välkommen!</p>",
                "en": "<p>A club for all LGBTQIA+ minorities. The club is a place to hang out, chat, do arts and crafts and lots of other fun things. </p><p>Welcome!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxdse/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzvyxdui",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-05-21T10:27:25.273319Z",
            "last_modified_time": "2024-05-21T10:27:25.273344Z",
            "date_published": null,
            "start_time": "2024-05-24T14:00:00Z",
            "end_time": "2024-05-24T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Musiikkikoulu Musaamon konsertti",
                "sv": "Musikskolan Musaamo konsert",
                "en": "Music School Musaamo's concert"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Musaamon oppilaat esittävät kevään aikana harjoittelemiaan kappaleita.",
                "sv": "Eleverna på Musaamo framför de stycken som de har övat på under våren.",
                "en": "The students of the Musaamo will perform the pieces they have been practising during the spring."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Musaamon oppilaat esittävät kevään aikana harjoittelemiaan kappaleita. Tule nauttimaan esityksistä ja kannustamaan oppilaat huippusuoritukseen.</p>",
                "sv": "<p>Eleverna på Musaamo framför de stycken som de har övat på under våren.</p>",
                "en": "<p>The students of the Musaamo will perform the pieces they have been practising during the spring.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxdui/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzvyxgb4",
            "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/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxd6q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxeca/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxeem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxegy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxeke/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxemu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxepe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxerm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxety/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxewe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxeyq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxe3a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxe5m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxe7q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxfbu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxfea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxfgi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxfja/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxflm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxfny/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxfqa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxfsm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxfwi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxfyu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxf24/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxf5i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxf7u/?format=api"
                }
            ],
            "images": [
                {
                    "id": 151263,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-14T12:14:07.718787Z",
                    "last_modified_time": "2024-06-14T12:14:07.718809Z",
                    "name": "Sateenkaarisuunnistus",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Sateenkaarihistoriasuunnistus_mainos.png",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "Emmi Heijari",
                    "alt_text": "Sateenkaarisuunnistus",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151263/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-21T10:19:05.240243Z",
            "last_modified_time": "2024-05-21T10:19:05.240277Z",
            "date_published": null,
            "start_time": "2024-06-01T07:00:00Z",
            "end_time": "2024-06-30T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sateenkaarihistoriasuunnistus ",
                "sv": "Regnbågshistoriaorientering",
                "en": "LGBTQIA+ history orienteering"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Itsenäisesti suoritettava 10 rastin suunnistus kirjastossa, joka johdattelee  seksuaali- ja sukupuolivähemmistöjä koskevan lähihistorian äärelle. ",
                "sv": "Orientering som vägleder till närhistorian om sexuella minoriteter och könsminoriteter, som utförs självständigt med 10 punkter i biblioteket.",
                "en": "A self-guided orienteering with 10 checkpoints in the library, leading you through the recent history of sexual and gender minorities. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Itsenäisesti suoritettava 10 rastin suunnistus kirjastossa, joka johdattelee  seksuaali- ja sukupuolivähemmistöjä koskevan lähihistorian äärelle. Matkan varrelta voi löytää monipuolisesti erilaista aiheeseen liittyvää kirjallisuutta lainattavaksi!</p>",
                "sv": "<p>Orientering som vägleder till närhistorian om sexuella minoriteter och könsminoriteter, som utförs självständigt med 10 punkter i biblioteket. Under resan kan du mångsidigt hitta litteratur om temat att låna!</p>",
                "en": "<p>A self-guided orienteering with 10 checkpoints in the library, leading you through the recent history of sexual and gender minorities. Along the way you can find a variety of literature to borrow on the subjects!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvyxgb4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghrvrqvuy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-26T13:22:09.604710Z",
            "last_modified_time": "2024-05-21T10:15:46.067668Z",
            "date_published": null,
            "start_time": "2024-05-25T13:00:00Z",
            "end_time": "2024-05-25T13:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Laululustudio Melodyluxin konsertti",
                "sv": "Melodylux sångstudio konsert",
                "en": "Singing studio Melodylux concert"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "short_description": {
                "fi": "Lalulustudio Melodyluxin konsertti",
                "sv": "Melodylux sångstudio konsert",
                "en": "Singing studio Melodylux concert"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Konserttiohjelmassa kuullaan suurimpien säveltäjien Bellinin ja Verdin klassisia teoksia.  Voit myös nauttia popmusiikista nuorten esiintyjiemme esittämänä.  Whitney Houstonin, Christina Aguileran, Queenin, Marita Taavitsaisen legendaariset hitit odottavat sinua... Tervetuloa!</p>",
                "sv": "<p>Konsertprogrammet innehåller klassiska verk av de största kompositörerna, Bellini och Verdi.  Du kan också njuta av popmusik framförd av våra unga artister.  De legendariska hitsen från Whitney Houston, Christina Aguilera, Queen, Marita Taavitsainen väntar på dig...  Välkommen!</p>",
                "en": "<p>The concert programme includes classical works by the greatest composers, Bellini and Verdi.  You can also enjoy pop music performed by our young artists.  The legendary hits of Whitney Houston, Christina Aguilera, Queen, Marita Taavitsainen are waiting for you... Welcome!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvrqvuy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzvlddyq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:27531/?format=api"
            },
            "keywords": [
                {
                    "@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:agggfz66yu/?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: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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:tyt",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-16T07:38:52.961821Z",
            "last_modified_time": "2024-05-21T10:14:53.120632Z",
            "date_published": null,
            "start_time": "2024-06-10T15:00:00Z",
            "end_time": "2024-06-10T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kaavakävely: Träskändan kartanon asemakaavoitus",
                "sv": "Planpromenad: Träskända gård",
                "en": "Walk around the planning area, Träskända Manor 633500"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa keskustelemaan suunnittelijoiden kanssa asemakaavan muutoksesta suunnittelualueelle Träskändan kartanolle maanantaina 10.6.2024 klo 18 alkaen. ",
                "sv": "På planpromenaden visar planeraren runt på ett område som detaljplaneras. ",
                "en": "During the event, you will have a chance to walk in the planning area together with the planners."
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/hankkeet/traskandan-kartanon-asemakaavoitus",
                "sv": "https://www.espoo.fi/sv/projekt/detaljplanlaggning-av-traskanda-gard",
                "en": "https://www.espoo.fi/en/projects/detailed-planning-traskanda-manor"
            },
            "description": {
                "fi": "<p>Tervetuloa keskustelemaan suunnittelijoiden kanssa asemakaavan muutoksesta suunnittelualueelle Träskändan kartanolle maanantaina 10.6.2024. Kaavakävely alkaa kartanon pysäköintipaikalta klo 18.00 osoitteesta Träskändanristi 4.</p><p>Kaavakävely pidetään ulkona, varaudu säänmukaisin varustein. Olemme sinua vastassa aloituspaikassa. Kaavakävelyn aikana kierrämme suunnittelualueella kaavan suunnittelijoiden johdolla. Kävelyreitti on pääosin esteetön, mutta vaikeat reitinkohdat voi tarvittaessa kiertää tai oikaista.</p><p>Mistä on kyse?</p><p>Luontoarvoiltaan ja kulttuurihistorialtaan arvokkaalle Träskändan kartanon alueelle laaditaan asemakaava. Tavoitteena on laatia asemakaava, joka mahdollistaa Träskändan kartanon alueen olemassa olevissa rakennuksissa palvelutoimintaa, joka voi olla esim. majoitus-, ravintola-, kokoontumis-, koulutus-, liikunta- tai virkistyspalveluja. Alueelle ei tulla suunnittelemaan uutta rakentamista. Kartanon puutarha- ja puistoalueet tulevat jatkossakin säilymään kaikille ihmisille avoimena tilana.</p><p>Kaavan osallistumis- ja arviointisuunnitelma sekä valmisteluaineisto on nähtävillä Espoon kaupungin verkkosivuilla 27.5.-25.6.2024. Löydät sen parhaiten kirjoittamalla sivun hakuun ”Träskändan kartano”.  </p><p>Kaavakävelyn yhteystiedot:<br>Juha Miettinen<br>juha.miettinen@espoo.fi<br>040 508 9198</p><p>Turvallisemman tilan periaatteet<br>Haluamme, että tapahtumassamme on kaikilla hyvä olla, minkä vuoksi tapahtumassa noudatetaan turvallisemman tilan periaatteita.</p><p>Kunnioitathan siis muiden rajoja. Älä myöskään tee turhia oletuksia kanssaolijoiden taustoista, sukupuolesta, seksuaalisuudesta tai muista identiteettitekijöistä. Kaikenlainen häirintä, syrjintä tai muu toisten rajojen rikkominen johtaa häiriköijän poistamiseen alueelta.</p><p>Mikäli kohtaat häirintää tai ahdistavia tilanteita tapahtumassamme, ole rohkeasti yhteydessä henkilökuntaan.<br></p>",
                "sv": "<p>En stadsplanepromenad ordnas måndag 10.6.2024 kl. 18–20 från gårdens parkeringsplats (Träskändakorset 4).</p><p>Det allmänna mötet ordnas av stadsplaneringscentralen och hålls på finska. Du kan ställa frågor och kommentera på finska, svenska eller engelska. Du kan kontakta planeraren per e-post.</p><p>Juha Miettinen<br>juha.miettinen@espoo.fi<br>040 508 9198</p><p>Principerna för tryggt rum:</p><p>Vi vill att alla ska ha det bra på vårt evenemang, varför vi efterlever principerna för tryggt rum vid det.</p><p>Var snäll och respektera andras gränser. Gör heller inga onödiga antaganden om dina medbesökares bakgrunder, kön, sexualitet eller andra identitetsfaktorer. Alla former av trakasserier, diskriminering och annat gränsöverskridande beteende leder till att den som stör eskorteras bort från området.</p><p>Om du upplever trakasserier eller en pressad situation vid vårt evenemang, ta modigt kontakt med personalen!<br></p>",
                "en": "<p>During the event, you will have a chance to walk in the planning area together with the planners. We will organise the event on 10 June 2024 at 18:00-20:00 at Manor's parking space, Träskändanristi 4.</p><p>The event is organised by the City Planning Department. The event will be held in Finnish. You can ask questions and share your comments in English or Swedish or contact the planner directly by email.</p><p>Juha Miettinen<br>juha.miettinen@espoo.fi<br>040 508 9198</p><p>Principles for a safer space:</p><p>We want everyone to feel comfortable at our event, which is why the event will be held in accordance with the principles for a safer space.</p><p>As such, please respect other people’s boundaries at the event and do not make assumptions about other attendees’ background, gender, sexuality or other parts of their identity. Any kind of harassment, discrimination and violation of other people’s boundaries are grounds for removal from the premises.</p><p>If you encounter any harassment or distressing situations at our event, please do not hesitate to contact the staff!<br></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvlddyq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzvldeya",
            "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:agggfz66oi/?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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-05-21T09:42:58.845755Z",
            "last_modified_time": "2024-05-21T09:42:58.845778Z",
            "date_published": "2024-05-21T09:31:00Z",
            "start_time": "2024-06-13T07:00:00Z",
            "end_time": "2024-06-13T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sateenkaariperhekahvila",
                "sv": "Regnbågsfamilj-café",
                "en": "LGBTQIA+ family café"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Sateenkaariperhekahvila kaikenlaisille sateenkaariperheille. ",
                "sv": "Regnbågsfamilj-café för alla slags regnbågsfamiljer. ",
                "en": "For all kinds of LGBTQIA+ families. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Sateenkaariperhekahvila kaikenlaisille sateenkaariperheille. Kahvilassa voit kohdata muita sateenkaariperheitä rennon kahvittelun, keskustelun ja kirjallisuuden merkeissä. </p><p>Klo 11 osana tapahtumaa järjestetään kaikille avoin sateenkaarisatuhetki. Tarjolla teetä, kahvia ja pientä purtavaa.</p><p>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2024.</p>",
                "sv": "<p>Regnbågsfamilj-café för alla slags regnbågsfamiljer. I caféet kan du träffa andra regnbågsfamiljer och i avslappnad stämning dricka kaffe och diskutera till exempel om litteratur. </p><p>Som en del av evenemanget ordnas det klockan 11 en för alla öppen regnbågssagostund. Man bjuder på te, kaffe och tilltugg.</p><p>Esbo stad är Working with Pride-partner med Helsinki Pride 2024.</p>",
                "en": "<p>For all kinds of LGBTQIA+ families. At the café you can meet other families for a relaxed coffee, conversation, and literature. </p><p>At 11 am, as part of the event, there will be an open LGBTQIA+ story time. Tea, coffee, and snacks will be served.</p><p>The City of Espoo is Helsinki Pride’s Working with Pride partner in 2024.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldeya/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzvldgiu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvlde3u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvlde6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldfbm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldfdy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldfhi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldfjq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldfly/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldfoa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldfqy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldftq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldfvy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldfye/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldf2i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldf4y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldf7e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldgbq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldgdy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldgge/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-21T09:30:59.710223Z",
            "last_modified_time": "2024-05-21T09:30:59.710247Z",
            "date_published": null,
            "start_time": "2024-06-10T12:00:00Z",
            "end_time": "2024-06-30T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pride 101 -näyttely",
                "sv": "Pride 101-utställning",
                "en": "Pride 101 exhibition"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Faktaa, taidetta ja historiaa kaapin perukoilta Stonewallista Lady Gagaan.",
                "sv": "Fakta, konst och historia från skåpets gömmor, från Stonewall till Lady Gaga.",
                "en": "Facts, art, and history from Stonewall to Lady Gaga"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Faktaa, taidetta ja historiaa kaapin perukoilta Stonewallista Lady Gagaan.</p>",
                "sv": "<p>Fakta, konst och historia från skåpets gömmor, från Stonewall till Lady Gaga.</p>",
                "en": "<p>Facts, art, and history from Stonewall to Lady Gaga</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldgiu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzvldgq4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-21T09:16:43.199022Z",
            "last_modified_time": "2024-05-21T09:16:43.199048Z",
            "date_published": null,
            "start_time": "2024-06-05T08:00:00Z",
            "end_time": "2024-06-05T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sateenkaariseniorit kirjastoon kylään",
                "sv": "Regnbågsseniorerna på besök till biblioteket",
                "en": "LGBTQIA+ seniors visit the library"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tapahtuma on rento kahvitteluhetki, joka on kaikille avoin. Paikan päällä voit tutustua sateenkaarikirjallisuuteen sekä nauttia hyvästä seurasta. ",
                "sv": "Evenemanget är en för alla öppen avslappnad kaffestund. Där kan du bekanta dig med regnbågslitteratur och njuta av gott sällskap.",
                "en": " The event is a relaxed coffee hour open to all. There, you can learn about LGBTQIA+ literature and enjoy the good company."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Pride kuukauden aikana Sateenkaariseniorit ry vierailevat Espoon kirjastoissa. Tapahtuma on rento kahvitteluhetki, joka on kaikille avoin. Paikan päällä voit tutustua sateenkaarikirjallisuuteen sekä nauttia hyvästä seurasta. </p>",
                "sv": "<p>Under Pride månaden besöker Sateenkaariseniorit ry Esbo bibliotek. Evenemanget är en för alla öppen avslappnad kaffestund. Där kan du bekanta dig med regnbågslitteratur och njuta av gott sällskap.</p>",
                "en": "<p>During the Pride month, Sateenkaariseniorit ry association will visit Espoo libraries. The event is a relaxed coffee hour open to all. There, you can learn about LGBTQIA+ literature and enjoy the good company.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldgq4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzvldg2a",
            "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/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-21T09:15:12.922996Z",
            "last_modified_time": "2024-05-21T09:15:12.923019Z",
            "date_published": null,
            "start_time": "2024-06-19T08:00:00Z",
            "end_time": "2024-06-19T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sateenkaariseniorit kirjastoon kylään",
                "sv": "Regnbågsseniorerna på besök till biblioteket",
                "en": "LGBTQIA+ seniors visit the library"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tapahtuma on rento kahvitteluhetki, joka on kaikille avoin. Paikan päällä voit tutustua sateenkaarikirjallisuuteen sekä nauttia hyvästä seurasta. ",
                "sv": "Evenemanget är en för alla öppen avslappnad kaffestund. Där kan du bekanta dig med regnbågslitteratur och njuta av gott sällskap.",
                "en": " The event is a relaxed coffee hour open to all. There, you can learn about LGBTQIA+ literature and enjoy the good company."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Pride kuukauden aikana Sateenkaariseniorit ry vierailevat Espoon kirjastoissa. Tapahtuma on rento kahvitteluhetki, joka on kaikille avoin. Paikan päällä voit tutustua sateenkaarikirjallisuuteen sekä nauttia hyvästä seurasta. </p>",
                "sv": "<p>Under Pride månaden besöker Sateenkaariseniorit ry Esbo bibliotek. Evenemanget är en för alla öppen avslappnad kaffestund. Där kan du bekanta dig med regnbågslitteratur och njuta av gott sällskap.</p>",
                "en": "<p>During the Pride month, Sateenkaariseniorit ry association will visit Espoo libraries. The event is a relaxed coffee hour open to all. There, you can learn about LGBTQIA+ literature and enjoy the good company.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldg2a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzvldg4q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-21T09:13:57.419062Z",
            "last_modified_time": "2024-05-21T09:13:57.419090Z",
            "date_published": null,
            "start_time": "2024-06-14T08:00:00Z",
            "end_time": "2024-06-14T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sateenkaariseniorit kirjastoon kylään",
                "sv": "Regnbågsseniorerna på besök till biblioteket",
                "en": "LGBTQIA+ seniors visit the library"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tapahtuma on rento kahvitteluhetki, joka on kaikille avoin. Paikan päällä voit tutustua sateenkaarikirjallisuuteen sekä nauttia hyvästä seurasta. ",
                "sv": "Evenemanget är en för alla öppen avslappnad kaffestund. Där kan du bekanta dig med regnbågslitteratur och njuta av gott sällskap.",
                "en": " The event is a relaxed coffee hour open to all. There, you can learn about LGBTQIA+ literature and enjoy the good company."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Pride kuukauden aikana Sateenkaariseniorit ry vierailevat Espoon kirjastoissa. Tapahtuma on rento kahvitteluhetki, joka on kaikille avoin. Paikan päällä voit tutustua sateenkaarikirjallisuuteen sekä nauttia hyvästä seurasta. </p>",
                "sv": "<p>Under Pride månaden besöker Sateenkaariseniorit ry Esbo bibliotek. Evenemanget är en för alla öppen avslappnad kaffestund. Där kan du bekanta dig med regnbågslitteratur och njuta av gott sällskap.</p>",
                "en": "<p>During the Pride month, Sateenkaariseniorit ry association will visit Espoo libraries. The event is a relaxed coffee hour open to all. There, you can learn about LGBTQIA+ literature and enjoy the good company.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldg4q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzuppnou",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-21T07:23:09.568839Z",
            "last_modified_time": "2024-05-21T07:23:09.568864Z",
            "date_published": "2024-05-21T07:11:00Z",
            "start_time": "2024-09-10T13:00:00Z",
            "end_time": "2024-09-10T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Valopaja",
                "sv": "Ljusverkstaden ",
                "en": "Light Workshop"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Valopaja-kollektiivi",
                "sv": "Valopaja-kollektiivi",
                "en": "Valopaja-kollektiivi"
            },
            "location_extra_info": {
                "fi": "Nuorten tila",
                "sv": "Nuorten tila",
                "en": "Nuorten tila"
            },
            "short_description": {
                "fi": "Valopajassa pääsee tekemään revontulimaisia varjoasetelmia. ",
                "sv": "I ljusverkstaden kan du skapa skuggor som liknar norrsken. ",
                "en": "In the Light Workshop, you can create aurora-like shadows. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Valopajassa pääsee tekemään revontulimaisia varjoasetelmia. Värikkäät avaimenperävalaisimet suunnataan mukeihin ja leikkieläimiin jolloin valot muodostavat kiehtovia varjoja kuultopaperille. </p><p>Paja toimii non-stop -periaatteella eikä sinne ole ikärajaa.</p>",
                "sv": "<p>I ljusverkstaden kan du skapa skuggor som liknar norrsken. Färgglada nyckelringslampor riktas mot muggar och leksaksdjur och skapar fascinerande skuggor på kalkerpapper. </p><p>Workshopen pågår non-stop och det finns ingen åldersgräns.</p>",
                "en": "<p>In the Light Workshop, you can create aurora-like shadows. Colourful keychain lights are aimed at mugs and play animals, creating fascinating shadows on tracing paper. </p><p>The workshop is non-stop and there is no age limit.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzuppnou/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzl4rbta",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-20T11:52:21.144487Z",
            "last_modified_time": "2024-05-21T05:39:49.589052Z",
            "date_published": null,
            "start_time": "2024-06-04T14:30:00Z",
            "end_time": "2024-06-04T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Impromanian jamit aikuisille",
                "sv": "Impromania-jams för vuxna",
                "en": "Impromania jam sessions for adults"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa yleisöksi seuraamaan Impromnian kaksi tuntia kestäviä viikottaisia jameja, jossa tehdään erilaisia improharjoitteita. ",
                "sv": "Välkommen till publiken för att se Impromnias veckovisa tvåtimmars-jams, där olika improvisationsövningar utförs. ",
                "en": "Welcome to the audience to watch Impromnia's weekly two-hour jams, featuring a variety of improv exercises. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Mikäli olet joskus pohtinut improvisaatioteatteriharrastuksen aloittamista, nyt on hyvä mahdollisuus päästä tutustumaan lajiin! Tervetuloa yleisöksi seuraamaan Impromnian kaksi tuntia kestäviä viikottaisia jameja, jossa tehdään erilaisia improharjoitteita. Kyseessä ei ole valmis improesitys, mutta tulemme varmasti näkemään yllättäviä tilanteita ja hauskoja hetkiä sisältäviä näyttelykohtauksia. <br>Emme voi taata nuoremmalle yleisölle soveltuvaa sisältöä, joten paikalle ovat tervetulleita lajista kiinnostuneet aikuiset.<br>Ovet ovat avoinna ennen aloitusta sekä tauon aikana.</p><p><br>LIPPULAIVAN KIRJASTO, SALONKI</p><p>28.5. klo 17.30-18.20 / tauko / 18.30-19.30<br>4.6. klo  17.30-18.20 / tauko / 18.30-19.30</p>",
                "sv": "<p>Om du någonsin har funderat på att delta i improvisationsteater har du nu ett utmärkt tillfälle att lära känna genren! Du är välkommen som publik till Impromnias två timmar långa jams varje vecka, där olika improvisationsövningar utförs. Det är inte en komplett improvisationsshow, men vi kommer säkert att få se scener med överraskande situationer och roliga ögonblick. <br>Vi kan inte garantera att innehållet är lämpligt för en yngre publik, så vuxna som är intresserade av genren är välkomna.<br>Dörrarna är öppna före föreställningens början och under pausen.</p><p><br>LIPPULAIVABIBLIOTEKET, SALONKI</p><p>28.5. kl. 17.30-18.20 / paus / kl. 18.30-19.30<br>4.6. 17.30-18.20 / paus / 18.30-19.30</p>",
                "en": "<p>If you have ever thought about taking part in improvisational theatre, now is a great opportunity to get to know the genre! You are welcome to join as an audience member for Impromnia's two-hour weekly jams, where a variety of improvisational exercises are performed. It's not a complete improv show, but we're sure to see scenes with surprising situations and funny moments. <br>We cannot guarantee that the content will be suitable for younger audiences, so adults interested in the genre are welcome.<br>Doors will be open before the start and during the break.</p><p><br>LIPPULAIVA LIBRARY, SALONKI</p><p>28.5. 17.30-18.20 / break / 18.30-19.30<br>4.6. 17.30-18.20 / break / 18.30-19.30</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzl4rbta/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzl4rbxa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-20T11:50:25.369627Z",
            "last_modified_time": "2024-05-21T05:38:47.335401Z",
            "date_published": null,
            "start_time": "2024-05-28T14:30:00Z",
            "end_time": "2024-05-28T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Impromanian jamit aikuisille",
                "sv": "Impromania-jams för vuxna",
                "en": "Impromania jam sessions for adults"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa yleisöksi seuraamaan Impromnian kaksi tuntia kestäviä viikottaisia jameja, jossa tehdään erilaisia improharjoitteita. ",
                "sv": "Välkommen till publiken för att se Impromnias veckovisa tvåtimmars-jams, där olika improvisationsövningar utförs. ",
                "en": "Welcome to the audience to watch Impromnia's weekly two-hour jams, featuring a variety of improv exercises. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Mikäli olet joskus pohtinut improvisaatioteatteriharrastuksen aloittamista, nyt on hyvä mahdollisuus päästä tutustumaan lajiin! Tervetuloa yleisöksi seuraamaan Impromnian kaksi tuntia kestäviä viikottaisia jameja, jossa tehdään erilaisia improharjoitteita. Kyseessä ei ole valmis improesitys, mutta tulemme varmasti näkemään yllättäviä tilanteita ja hauskoja hetkiä sisältäviä näyttelykohtauksia. <br>Emme voi taata nuoremmalle yleisölle soveltuvaa sisältöä, joten paikalle ovat tervetulleita lajista kiinnostuneet aikuiset.<br>Ovet ovat avoinna ennen aloitusta sekä tauon aikana.</p><p><br>LIPPULAIVAN KIRJASTO, SALONKI</p><p>28.5. klo 17.30-18.20 / tauko / 18.30-19.30<br>4.6. klo  17.30-18.20 / tauko / 18.30-19.30</p>",
                "sv": "<p>Om du någonsin har funderat på att delta i improvisationsteater har du nu ett utmärkt tillfälle att lära känna genren! Du är välkommen som publik till Impromnias två timmar långa jams varje vecka, där olika improvisationsövningar utförs. Det är inte en komplett improvisationsshow, men vi kommer säkert att få se scener med överraskande situationer och roliga ögonblick. <br>Vi kan inte garantera att innehållet är lämpligt för en yngre publik, så vuxna som är intresserade av genren är välkomna.<br>Dörrarna är öppna före föreställningens början och under pausen.</p><p><br>LIPPULAIVABIBLIOTEKET, SALONKI</p><p>28.5. kl. 17.30-18.20 / paus / kl. 18.30-19.30<br>4.6. 17.30-18.20 / paus / 18.30-19.30</p>",
                "en": "<p>If you have ever thought about taking part in improvisational theatre, now is a great opportunity to get to know the genre! You are welcome to join as an audience member for Impromnia's two-hour weekly jams, where a variety of improvisational exercises are performed. It's not a complete improv show, but we're sure to see scenes with surprising situations and funny moments. <br>We cannot guarantee that the content will be suitable for younger audiences, so adults interested in the genre are welcome.<br>Doors will be open before the start and during the break.</p><p><br>LIPPULAIVA LIBRARY, SALONKI</p><p>28.5. 17.30-18.20 / break / 18.30-19.30<br>4.6. 17.30-18.20 / break / 18.30-19.30</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzl4rbxa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}