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

{
    "meta": {
        "count": 19293,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=68",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=66"
    },
    "data": [
        {
            "id": "espoo_le:agmk23aunm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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:p2149/?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:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-05-06T07:52:15.894669Z",
            "last_modified_time": "2025-05-06T07:52:15.894685Z",
            "date_published": "2025-05-06T07:40:00Z",
            "start_time": "2025-05-21T14:00:00Z",
            "end_time": "2025-05-21T15: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,
            "info_url": null,
            "description": {
                "fi": "<p>Pirkko Lahti</p><p>Tunnettu psykologi esiintyy Espoon Eläkeläisten Keskusliiton (EEKL) kutsumana.</p><p><br></p><p>Tervetuloa!</p>",
                "sv": "<p>Pirkko Lahti</p><p>Den välkända psykologen uppträder på inbjudan av Esbo Pensionärers Centralförbund (EEKL)</p><p><br></p><p>Välkommen!</p><p><br></p><p>Diskussion är på svenska. </p>",
                "en": "<p>Pirkko Lahti</p><p>The well-known psychologist will appear at the invitation of the Espoo Pensioners’ Central Association (EEKL)</p><p><br></p><p>Welcome. </p><p><br></p><p>Discussion is in Finnish. </p>"
            },
            "short_description": {
                "fi": "Keskustelutilaisuus.",
                "sv": "Diskussionstillfälle.",
                "en": "Discussion event."
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "EEKL",
                "sv": "EEKL",
                "en": "EEKL"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "name": {
                "fi": "Voi hyvin vielä vanhuksenakin",
                "sv": "Må bra även som gammal",
                "en": "Feel well even in old age"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23aunm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23auzy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@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": [],
            "images": [
                {
                    "id": 1490351,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T07:19:11.789022Z",
                    "last_modified_time": "2025-05-05T07:19:11.789036Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/62ced778-8def-484d-b479-eb955b59ecba.png",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Minna Palviainen",
                    "alt_text": "Yksityiskohta abstraktista maalauksesta, jossa  punaisia ja tummia värisävyjä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-06T07:32:18.335237Z",
            "last_modified_time": "2025-05-06T07:32:18.335254Z",
            "date_published": "2025-05-12T04:59:00Z",
            "start_time": "2025-05-12T05:00:00Z",
            "end_time": "2025-06-01T15: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,
            "info_url": null,
            "description": {
                "fi": "<p>Taiteilija Minna Suzannen kaunis taidenäyttely Elämän tanssi kuvailee elämän jatkuvaa liikettä abstraktin sekä kuvaavan taiteen keinoin. Elämän pienet ja suuret hetket yhdistyvät toisiinsa yhdeksi eläväksi kokonaisuudeksi. Jokainen meistä on toteuttamassa ja luomassa omaa elämänsä tanssia. Näyttely avaa erilaisia näkymiä myös värien voimaan, naiseuteen ja iloon, taiteilijan omaan tanssilliseen ja voimistelulliseen taustaan vahvasti peilaten. Tämä kokonaisuus on sopiva kaikille, sillä se on maalattu ilon, elämänvoiman ja sisäisen rauhan energioissa. Se koskettaa hyvällä tavalla sielua ja inspiroi omaa elämän tanssia.</p><p><br></p><p>www.byminnasuzanne.com </p>",
                "sv": "<p>Välkommen att besöka Minna Suzanness utställning \"Elämän tanssi\" i Entressebiblioteket under tiden 12.5.-1.6.2024. Utställningen kan ses under bibliotekets öppettider.</p><p><br></p><p>www.byminnasuzanne.com </p>",
                "en": "<p>Art exhibition \"Elämän tanssi\" by MInna Suzanne in Entresse Library during 12.5.-1.6.2025. Welcome!</p><p><br></p><p>www.byminnasuzanne.com </p>"
            },
            "short_description": {
                "fi": "MInna Suzannen taidenäyttely Elämän tanssi Entressen kirjaston Valatori-seinällä 12.5.-1.6.2025",
                "sv": "Minna Suzannes utställning \"Elämän tanssi\" i Entressebiblioteket under tiden 12.5.-1.6.2025.",
                "en": "Art exhibition \"Elämän tanssi\" by MInna Suzanne in Entresse Library during 12.5.-1.6.2025"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "name": {
                "fi": "Minna Suzanne: Elämän tanssi",
                "sv": "Minna Suzanne: Elämän tanssi",
                "en": "Minna Suzanne: Elämän tanssi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23auzy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23avlm",
            "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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@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": [
                {
                    "id": 153364,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-12-10T11:17:36.790050Z",
                    "last_modified_time": "2024-12-10T11:17:36.790067Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/204f16e4-d958-423e-88d9-aaa07f585c8a.jpg",
                    "cropping": "320,0,1152,832",
                    "photographer_name": "",
                    "alt_text": "Drum Jam",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153364/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-06T07:14:44.528868Z",
            "last_modified_time": "2025-05-06T07:14:44.528885Z",
            "date_published": "2025-05-06T06:13:32.840000Z",
            "start_time": "2025-06-16T14:00:00Z",
            "end_time": "2025-06-16T15: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,
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa rentouttaviin rumpujameihin, joissa soitamme Djembe- rumpuja sekä muita käsirumpuja ja perkussiosoittimia. Opettelemme soittamaan yksinkertaisia rytmejä sekä Djemben perustekniikoita.</p><p>Tapahtuma sopii kaikille rummuttamisesta ja rytmeistä kiinnostuneille. Tapahtuma on kaikille avoin. Aikaisempaa kokemusta rummuttamisesta ei tarvita.</p><p>#Djembe #rumpu #rentoutus</p>",
                "en": "<p>Welcome to a relaxing drum jam where we play Djembe drums as well as other hand drums and percussion instruments. We learn to play simple rhythms and basic Djembe techniques.</p><p>The event is suitable for everyone interested in drumming and rhythms. The event is open to everyone. No previous experience in drumming is required.</p><p>#Djembe #drum #drumming #relaxation</p>"
            },
            "short_description": {
                "fi": "Tervetuloa rumpujameihin!",
                "en": "Welcome to the drum jam!"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "en": "Jam Corner"
            },
            "name": {
                "fi": "Rumpujamit",
                "en": "Drum Jam"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23avlm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23avx4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@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": [],
            "images": [
                {
                    "id": 1490352,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-28T11:01:00.650895Z",
                    "last_modified_time": "2025-04-28T11:01:00.650909Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3b78ec7f-2989-4e67-9392-12e8583c8dc6.png",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Gaiane Pogosova",
                    "alt_text": "Yksityiskohta abstraktista maalauksesta, jossa puun oksia ja lehtiä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490352/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-05T07:10:10.604872Z",
            "last_modified_time": "2025-05-06T06:30:26.483722Z",
            "date_published": "2025-05-02T04:59:00Z",
            "start_time": "2025-05-02T05:00:00Z",
            "end_time": "2025-05-31T15: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,
            "info_url": null,
            "description": {
                "fi": "<p>Gaiane Pogosovan taidenäyttely Elämän hetket Entressen kirjaston lasivitriinissä 2.-31.5.2025. Taiteilija tavattavissa näyttelyn avajaisissa perjantaina 2.5.2025 klo 18.00. Tervetuloa!</p><p><br></p><p>Hetket, tunteet, muistot – tässä näyttelyssä jokainen elämän sirpale herää eloon väreissä ja muodoissa. Henkilökohtainen muuttuu yleiseksi, tavallinen saa uuden, ihmeellisen sävyn. Jokainen teos on yritys tallentaa jotakin katoavaa. Se on kutsu katsoa arkea toisin — nähdä siinä elämän hienovarainen, hiljainen kauneus.</p>",
                "sv": "<p>Välkommen att besöka Gaiane Pogosovas utställning \"Elämän hetket\" i Entressebiblioteket under tiden 2.-31.5.2025. Träffä konstnären fre 2.5. kl 18.00. Utställningen kan ses under bibliotekets öppettider.</p>",
                "en": "<p>Art exhibition \"Elämän hetket\" by Gaiane Pogosova in Entresse Library during 2.-31.5.2025.&nbsp;Meet the artist on Fri, 2nd of May at 6.00 PM. Welcome!</p>"
            },
            "short_description": {
                "fi": "Gaiane Pogosovan taidenäyttely Elämän hetket Entressen kirjastossa 2.-31.5.2025. Tervetuloa!",
                "sv": "Gaiane Pogosovas utställning \"Elämän hetket\" i Entressebiblioteket under tiden 2.- 31.5.2025.",
                "en": "Art exhibition \"Elämän hetket\" by Gaiane Pogosova in Entresse Library during 2.-31.5.2025. "
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "name": {
                "fi": "Gaiane Pogosova: Elämän hetket",
                "sv": "Gaiane Pogosova: Elämän hetket",
                "en": "Gaiane Pogosova: Elämän hetket"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23avx4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23awna",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@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": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-05T08:58:52.015884Z",
            "last_modified_time": "2025-05-06T06:29:52.756474Z",
            "date_published": "2025-05-05T04:59:00Z",
            "start_time": "2025-05-05T05:00:00Z",
            "end_time": "2025-05-25T15: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,
            "info_url": null,
            "description": {
                "fi": "<p>Anne Vairimaan taidenäyttely Bloom Entressen kirjaston Galleria Betonissa 5.-25.2025. Taiteilija tavattavissa pe 9.5.2025 klo 15.00. Tervetuloa!</p>",
                "sv": "<p>Välkommen att besöka Outi Vairimaas utställning \"Bloom\" i Entressebiblioteket under tiden 5.-25.5.2025. Träffä konstnären fre 9.5. kl 15.00.&nbsp;Utställningen kan ses under bibliotekets öppettider.</p>",
                "en": "<p>Art exhibition \"Bloom\" by Anne Vairimaa in Entresse Library during 5.-25.5.2025. Meet the artist on Fri, 9th of May at 3.00 PM. Welcome!</p>"
            },
            "short_description": {
                "fi": "Anne Vairimaan taidenäyttely Bloom Entressen kirjaston Galleria Betonissa 5.-25.2025. ",
                "sv": "Anne Vairimaas utställning \"Bloom\" i Entressebiblioteket under tiden 5.-25.5.2025.",
                "en": "Art exhibition \"Bloom\" by Anne Vairimaa in Entresse Library during 5.-25.5.2025."
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Galleria Betoni",
                "sv": "Galleria Betoni",
                "en": "Galleria Betoni"
            },
            "name": {
                "fi": "Anne Vairimaa: Bloom",
                "sv": "Anne Vairimaa: Bloom",
                "en": "Anne Vairimaa: Bloom"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23awna/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66140",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 667201,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-02T11:14:04.672756Z",
                    "last_modified_time": "2025-05-02T11:14:04.672784Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761700.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/667201/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-02T11:14:04.593800Z",
            "last_modified_time": "2025-05-05T13:13:48.302697Z",
            "date_published": null,
            "start_time": "2025-06-27T12:00:00Z",
            "end_time": "2025-06-27T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6E5C54F022C79AA2FB6BF40587A73E7B/Vuotalon_Pride",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/6E5C54F022C79AA2FB6BF40587A73E7B/Nordhusets_Pride_",
                "en": "http://www.vuotalo.fi/en/events/event/6E5C54F022C79AA2FB6BF40587A73E7B/Vuotalo_Pride"
            },
            "description": {
                "fi": "<p>Sateenkaarevia kukkaseppeleitä, koruja ja sirkusta kaikenikäisille!</p><p>Vuotalon Pride-iltapäivässä isot ja pienet pääsevät tekemään ihanan värikkäitä kukkaseppeleitä ja koruja. Ulkona Vuotorilla on tilaisuus kokeilla sirkustemppuja Sirkus Magentan osaavien opettajien ohjauksessa.</p><p>Osallistuminen ei maksa mitään. Olet lämpimästi tervetullut mukaan juuri sellaisena kuin olet!</p><p>Yhteistyössä: Vuotalo, Vuosaaren nuorisotyöyksikkö, Helsingin NNKY:n Queendom ja Sirkus Magenta.</p>",
                "sv": "<p>Regnbågiga blomkransar, smycken och cirkus för alla åldrar!</p><p>Under Nordhusets Pride-eftermiddag får stora och små tillverka härligt färgglada blomkransar och smycken. Utomhus på Nortorget har vi möjlighet att prova cirkustrick under ledning av Sirkus Magentas kompetenta lärare.</p><p>Deltagandet är avgiftsfritt. Du är varmt välkommen att vara med precis sådan som du är!</p><p>I samarbete: Nordhuset, Nordsjö ungdomsarbetsenhet, Helsingin NNKY:s Queendom och Sirkus Magenta.</p>",
                "en": "<p>Flower crowns, jewellery and circus in the colours of the rainbow!</p><p>The Vuotalo Pride afternoon provides an opportunity for participants of all ages to make flower crowns and jewellery in lovely colours. Outside at Vuotori Square, you can try circus tricks with guidance from skilled teachers from Sirkus Magenta.</p><p>Participation is free of charge. We warmly welcome you to join us as you are!</p><p>In cooperation with: Cultural Centre Vuotalo, Vuosaari Youth Work Unit, Helsinki YWCA’s Queendom and Sirkus Magenta.</p>"
            },
            "short_description": {
                "fi": "Sateenkaarevia kukkaseppeleitä, koruja ja sirkusta kaikenikäisille!",
                "sv": "Regnbågiga blomkransar, smycken och cirkus för alla åldrar!",
                "en": "Flower crowns, jewellery and circus in the colours of the rainbow!"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "name": {
                "fi": "Vuotalon Pride",
                "sv": "Nordhusets Pride",
                "en": "Vuotalo Pride"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66140/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66184",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": 690737,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T10:13:17.357806Z",
                    "last_modified_time": "2025-05-05T10:13:17.357824Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765116.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/690737/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-05T10:13:17.261878Z",
            "last_modified_time": "2025-05-05T11:13:45.964331Z",
            "date_published": null,
            "start_time": "2025-05-21T15: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,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/F2662474A7A787F0E2B4873048A14731/Kyproksen_kesa_Espalla_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/F2662474A7A787F0E2B4873048A14731/Cypernsommar_kommer_till_Espa_",
                "en": "http://www.espanlava.fi/en/events/event/F2662474A7A787F0E2B4873048A14731/Cyprus_summer_comes_to_Espa_"
            },
            "description": {
                "fi": "<p>Kansainvälisesti arvostettu avant-folk-trio Monsieur Doumani palaa Suomeen tuoden mukanaan kyproslaisen rytminsä ja Välimeren kesän tunnelmat Helsingin sydämeen.</p><p>Tapahtuman järjestää Kyproksen suurlähetystö Helsingissä, yhteistyössä Kyproksen kulttuuritoimesta vastaavan varaministeriön, matkailuvaraministeriön ja Gavrielides Foodsin kanssa.</p>",
                "sv": "<p>Det internationellt hyllade avant-folkbandet Monsieur Doumani från Cypern återvänder till Finland med sina funky cypriotiska vibbar och Medelhavets somriga toner – mitt i Helsingfors hjärta.</p><p>Evenemanget ordnas av Cyperns ambassad i Helsingfors, med stöd från Cyperns biträdande kulturministerium, biträdande turistministerium och i samarbete med Gavrielides Foods.</p>",
                "en": "<p>Internationally acclaimed avant-folk trio Monsieur Doumani from Cyprus returns to Finland, bringing their funky Cypriot vibes and the sounds of the Mediterranean summer to the heart of Helsinki.</p><p>The event is organised by the Embassy of Cyprus in Helsinki, with support from with the Cyprus Deputy Ministry of Culture, the Deputy Ministry of Tourism, and in collaboration with Gavrielides Foods.</p>"
            },
            "short_description": {
                "fi": "Kansainvälisesti arvostettu avant-folk-trio Monsieur Doumani palaa Suomeen tuoden mukanaan kyproslaisen rytminsä ja Välimeren kesän tunnelmat Helsingin sydämeen.",
                "sv": "Det internationellt hyllade avant-folkbandet Monsieur Doumani från Cypern återvänder till Finland med sina funky cypriotiska vibbar och Medelhavets somriga toner – mitt i Helsingfors hjärta.",
                "en": "Internationally acclaimed avant-folk trio Monsieur Doumani from Cyprus returns to Finland, bringing their funky Cypriot vibes and the sounds of the Mediterranean summer to the heart of Helsinki."
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "name": {
                "fi": "Kyproksen kesä Espalla! – Monsieur Doumani",
                "sv": "Cypernsommar kommer till Espa! – Monsieur Doumani",
                "en": "Cyprus summer comes to Espa! – Monsieur Doumani"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66184/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23axdi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p6033/?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": [
                {
                    "id": 1490354,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-05T08:50:28.836184Z",
                    "last_modified_time": "2025-05-05T08:50:28.836207Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/67a25234-8cb3-40fe-abd9-994812ddfa1e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Yle",
                    "alt_text": "tavarataivas dokumentin kuva, mies istuu varastonkäytävällä tuolilla ulkotakki päällä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-05T08:51:10.566350Z",
            "last_modified_time": "2025-05-05T08:51:10.566368Z",
            "date_published": null,
            "start_time": "2025-05-30T15:00:00Z",
            "end_time": "2025-05-30T16: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,
            "info_url": {
                "fi": "https://www.sll.fi/uusimaa/tule-mukaan/toimintaryhmat/kohtuusklubi/"
            },
            "description": {
                "fi": "<p><strong>Mikä on kohtuullista? Tule mukaan miettimään! </strong></p><p>Lukupiiri sopii kaikille, joita kohtuullisuus kiinnostaa. Kohtuullisen elämäntavan lukupiiri kokoontuu kerran kuussa aihepiiriin liittyvien kirjojen äärelle jakamaan ajatuksia ja inspiraatiota - tervetuloa mukaan! <a href=\"https://www.sll.fi/uusimaa/tule-mukaan/toimintaryhmat/kohtuusklubi/\">Lukupiiri on osa Suomen luonnonsuojeluliiton uudenmaanpiirin Kohtuusklubin toimintaa</a></p><p><a href=\"https://areena.yle.fi/1-2088370\">Seuraavan kerran materiaali on Tavarataivas-dokumentti, joka löytyy Yle Areenasta </a></p>\nKokoonnumme perjantaina 30.5.Klo 18 Entressen kirjastossa, etäyhteys on mahdollista järjestää tarvittaessa. \n<br>\nOlet tervetullut mukaan! - Anna"
            },
            "short_description": {
                "fi": "Mikä on kohtuullista? Tule mukaan miettimään! Lukupiiri sopii kaikille, joita kohtuullisuus kiinnostaa. "
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Lukupiiri on osa Suomen luonnonsuojeluliiton uudenmaanpiirin Kohtuusklubin toimintaa"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kohtuusklubin toukokuun lukupiiri "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23axdi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23axq4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?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:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "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": "2025-05-05T06:57:17.614188Z",
            "last_modified_time": "2025-05-05T07:40:32.497542Z",
            "date_published": null,
            "start_time": "2025-05-24T11:00:00Z",
            "end_time": "2025-05-24T14: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,
            "info_url": null,
            "description": {
                "fi": "Graffiti Goes Kirjasto – Tule mukaan värittämään kevättä!<p><br></p><p>Tule viettämään rentoa kevätiltaa Kauklahden kirjaston ja nuorisotilan tapahtumassa! Pääset kokeilemaan spraymaalausta ohjatusti, testaamaan 3D-tulostusta, tekemään kädentaitoja ja nauttimaan hyvästä seurasta.</p><p>Ei ilmoittautumista, ei maksuja – vain rentoa yhdessäoloa ja hauskaa tekemistä.</p><p>Ota kaverit mukaan ja nähdään kirjastolla!</p><p>📍 Missä? Kauklahden kirjasto &amp; nuorisotila (Hansakallio 2)</p><p>📅 Milloin? 24.5.2025 klo 14-17 (nuokku auki tapahtuman jälkeen 17-22)</p><p><br></p><p>Järjestää: Kauklahden kirjasto ja Kauklahden nuorisotila</p>",
                "sv": "Graffiti Goes Bibliotek – Kom och färga våren!<p><br></p><p>Kom och tillbringa en avslappnad vårkväll på Kauklahtis bibliotek och ungdomsgård!</p><p>Du får prova på spraymålning med handledning, testa 3D-utskrifter, pyssla med hantverk och njuta av trevligt sällskap.</p><p>Ingen anmälan, inga avgifter – bara skönt häng och rolig sysselsättning.</p><p>Ta med dina kompisar och vi ses på biblioteket!</p><p>📍 Var? Kauklahtis bibliotek &amp; ungdomsgård (Hansakallio 2)</p><p>📅 När? 24.5.2025 kl. 14–17 (ungdomsgård öppet efter evenemanget kl. 17–22)</p><p><br></p><p>Arrangör: Kauklahtis bibliotek och Kauklahtis ungdomsgård</p>",
                "en": "Graffiti Goes Library – Come Add Some Color to Spring!<p><br></p><p>Spend a relaxed spring afternoon at the Kauklahti Library and Youth house event! Try spray painting with guidance, experiment with 3D printing, get creative with crafts, and enjoy great company.</p><p>No registration, no fees – just chill vibes and fun activities.</p><p>Bring your friends and see you at the library!</p><p>📍 Where? Kauklahti Library &amp; Youth house (Hansakallio 2)</p><p>📅 When? May 24, 2025, from 2 PM to 5 PM (youth house open after the event from 5 PM to 10 PM)</p><p><br></p><p>Organised by: Kauklahti Library and Kauklahti Youth House</p>"
            },
            "short_description": {
                "fi": "Graffiti Goes Kirjasto – Tule mukaan värittämään kevättä! ",
                "sv": "Graffiti Goes Bibliotek – Kom och färga våren!",
                "en": "Graffiti Goes Library – Come Add Some Color to Spring!"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "name": {
                "fi": "Graffiti Goes Kirjasto",
                "sv": "Graffiti Goes Bibliotek",
                "en": "Graffiti Goes Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23axq4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66138",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p21812/?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": 689404,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T06:13:46.397258Z",
                    "last_modified_time": "2025-05-05T06:13:46.397277Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767351.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/689404/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-05T06:13:46.307658Z",
            "last_modified_time": "2025-05-05T06:13:46.516605Z",
            "date_published": null,
            "start_time": "2025-06-12T13:00:00Z",
            "end_time": "2025-06-12T15: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3B58523A8F685B833AF9DA27DB8A2E7A/Taidepihan_avajaiset_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/3B58523A8F685B833AF9DA27DB8A2E7A/Invigning_av_Konstgarden_",
                "en": "http://www.vuotalo.fi/en/events/event/3B58523A8F685B833AF9DA27DB8A2E7A/Opening_of_the_Vuotalo_Art_Yard_"
            },
            "description": {
                "fi": "<p>Tervetuloa Vuotalon Taidepihan avajaisiin Helsinki-päivänä!</p><p>Helsingin kuvataidekoulun ympäristötaidenäyttely avautuu Vuotalon alapihalla, josta näin ollen tulee Taidepiha!</p><p>Vuotalon Taidepihan betoniseinään toteutettavaan keramiikkareliefi -ympäristötaideteokseen osallistuu yli sata 12–18-vuotiasta oppilasta. Värikäs yhteisteos koostuu kasvi-, hyönteis- ja lintuaiheisista reliefeistä. Teos nostaa esiin kaupunkiympäristössäkin elintärkeitä luontoarvoja.</p><p>Korkealla Taidepihan puissa voi nähdä jättiläiskukkia ja oppilaiden luoman, mielikuvituksellisen lintujen kaupungin. Taidepihassa voi lisäksi tutkia ja ihmetellä oppilaiden jättiläislintuja, kasvoja puissa, japanilaisia kalaviirejä ja Helsinki-päivän nonstop-työpajan yhteisöteoksena syntyviä juhlaviirejä.</p><p>Taidepihan ikkunoihin on ripustettu merellinen kokonaisuus, joka koostuu laivoista, merikartoista, kaloista, merihirviöistä ja muista merkillisistä otuksista sekä mediataiteen oppilaiden tekemistä animaatioista. Helsingin kuvataidekoulun kaikille avoimessa nonstop-työpajassa voi tehdä rekileijan lennätettäväksi kesän tuuliin.</p><p>Helsingin kuvataidekoulu antaa taiteen perusopetusta laajan oppimäärän mukaan kuvataiteessa ja mediataiteissa 5–20-vuotiaille lapsille ja nuorille. Kuvataidekoulu tarjoaa hauskan harrastuksen, jossa voi tavoitteellisesti ja monipuolisesti vuosi vuodelta edeten opiskella kuvataiteita ja mediataiteita.</p><p><b>Tulilinnut esiintyy klo 16.15 ja klo 17</b> <br>Tulilinnut on Helsingin tanssiopiston show-intensiiviryhmä, jossa tanssii 12–15-vuotiaita innokkaita ja tavoitteellisia tanssinharrastajia. Yhteisten tanssituntien lisäksi ryhmä kilpailee aktiivisesti junioritasolla Suomen eri showtanssikilpailuissa ja esiintyy säännöllisesti erilaisissa tapahtumissa.</p><p>Esityksen koreografia on syntynyt oppilaiden ja opettaja Phet Haanpään yhteistyönä. Teos huokuu tanssin riemua ja iloa, ja lavalla nähdään upeita, lahjakkaita nuoria tanssijoita antautumassa tanssin lumoon.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Välkommen till invigningen av Nordhusets Konstgård på Helsingforsdagen!</p><p>Helsingin kuvataidekoulus miljökonstutställning öppnas på Nordhusets nedre gård, som därmed blir Konstgården!</p><p>Över hundra elever i åldern 12–18 år deltar i att skapa miljökonstverket, som är en keramikrelief, och som byggs på betongväggen på Konstgården vid Nordhuset. Det färggranna gemensamma verket består av reliefer med växt-, insekts- och fågelmotiv. Verket lyfter fram livsviktiga naturvärden som finns även i stadsmiljön.</p><p>Högt uppe i Konstgårdens träd kan man se jätteblommor och en fantasifågelstad skapad av eleverna. På Konstgården kan man dessutom undersöka och förundra sig över elevernas jättefåglar, ansikten i träd, japanska fiskflaggor och festvimplar som vi skapar som ett gemensamt verk i Helsingforsdagens nonstop-verkstad.</p><p>På Konstgårdens fönster har man hängt upp en marin helhet som består av fartyg, sjökort, fiskar, havsmonster och andra märkliga varelser samt animationer gjorda av elever i mediekonst. I Helsingin kuvataidekoulus nonstop-verkstad, som är öppen för alla, kan man tillverka en pappersdrake för att flyga in i sommarens vindar.</p><p>Helsingin kuvataidekoulu ger grundläggande konstundervisning enligt den fördjupade lärokursen i bildkonst och mediekonst för barn och unga i åldern 5–20 år. Kuvataidekoulu erbjuder en rolig hobby där man målinriktat och mångsidigt kan studera bildkonst och mediekonst år efter år.</p><p><b>Tulilinnut kl. 16.15 och kl. 17 </b><br>Tulilinnut är en show-intensivgrupp vid Helsingin tanssiopisto, där 12–15-åriga ivriga och målinriktade dansentusiaster dansar. Utöver de gemensamma danslektionerna tävlar gruppen aktivt på juniornivå i olika showdanstävlingar i Finland och uppträder regelbundet på olika evenemang.</p><p>Koreografin har skapats i samarbete mellan eleverna och läraren Phet Haanpää. Verket utstrålar dansens fröjd och glädje, och på scenen ser man fantastiska, begåvade unga dansare som låter sig ledas av dansens förtrollning.</p><p>Fritt inträde</p>",
                "en": "<p>Welcome to the opening of the Vuotalo Art Yard on Helsinki Day!</p><p>The lower yard of Cultural Centre Vuotalo will turn into the Vuotalo Art Yard!</p><p>An exhibition of environmental art by Helsinki Upper Secondary School of Visual Arts will open in the lower yard of Vuotalo, turning the area into the Vuotalo Art Yard! More than a hundred 12–18-year-old students took part in the work of environmental art implemented as a ceramic relief on the concrete wall of the Vuotalo Art Yard. This colourful collaboration consists of plant, insect and bird-themed reliefs. The work highlights natural values that are also vital in an urban environment.</p><p>High up in the trees in the Art Yard, you can see giant flowers and an imaginary city of birds created by the students. In the Art Yard, you can also examine and marvel at the students’ giant birds, the faces on the trees, Japanese carp-shaped windsocks, and the celebratory windsocks created as a piece of communal art in the Helsinki Day non-stop workshop.</p><p>Hung up in the windows of the Art Yard, there is a sea-themed collaborative work comprising ships, nautical charts, fish, sea monsters and other peculiar creatures, as well as animations created by media art students. The non-stop workshop of Helsinki Upper Secondary School of Visual Arts that is open to everyone allows you to make a sled kite and fly it in the summer sky.</p><p>Helsinki Upper Secondary School of Visual Arts provides basic art education in visual art and media art, in accordance with the extended syllabus, for children and young people aged 5–20. The school offers a fun hobby that allows children and young people to study visual art and media art in a goal-oriented and diverse manner, progressing year after year.</p><p><b>Tulilinnut at 16.15 and 17.00</b> <br>Tulilinnut is an intensive group in show dance from Helsinki Dance Institute that comprises passionate and goal-oriented 12–15-year-old dance enthusiasts. In addition to having dance lessons together, the group competes actively at the junior level in various show dance competitions in Finland and regularly performs at various events.</p><p>The choreography for the group’s performance was created in collaboration by the students and their teacher, Phet Haanpää. The performance exudes the joy and pleasure of dance and features magnificent, talented young people indulging in the rapture of dance.</p><p>Free entry</p>"
            },
            "short_description": {
                "fi": "Tervetuloa Vuotalon Taidepihan avajaisiin Helsinki-päivänä!",
                "sv": "Välkommen till invigningen av Nordhusets Konstgård på Helsingforsdagen!",
                "en": "Welcome to the opening of the Vuotalo Art Yard on Helsinki Day!"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidepihan avajaiset – Vuotalon Helsinki-päivä",
                "sv": "Invigning av Konstgården – Helsingforsdagen i Nordhuset",
                "en": "Opening of the Vuotalo Art Yard – Helsinki Day at Vuotalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66138/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66135",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p6455/?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": 689401,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T06:13:45.041219Z",
                    "last_modified_time": "2025-05-05T06:13:45.041237Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767272.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/689401/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-05T06:13:44.969634Z",
            "last_modified_time": "2025-05-05T06:13:45.158761Z",
            "date_published": null,
            "start_time": "2025-06-12T07:00:00Z",
            "end_time": "2025-06-12T09: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/48184EC0BF84BF3C919145DC633076DF/Hetkellinen_kuva",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/48184EC0BF84BF3C919145DC633076DF/Flyktiga_bilder",
                "en": "http://www.vuotalo.fi/en/events/event/48184EC0BF84BF3C919145DC633076DF/Fleeting_picture"
            },
            "description": {
                "fi": "<p>Tule Helsinki-päivänä tekemään ihania taidejuttuja Kulttuuritila Merirastiin! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Merirastin taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Jos sataa ja myrskyää, työpaja siirtyy sisätiloihin.</p><p><b>Hetkellinen kuva -taidepaja klo 10–12</b><br>Teemme lumoavia kuvia hienoon hiekkaan. Kuva on muuttuva ja katoaa helposti. Hiekkakuvia ei pysty ottamaan mukaan kotiin, mutta voit tallentaa ne ottamalla valokuvan.</p><p>Työpajoja ohjaa Chloé Mahy-Hulkko<br>Kielet: suomi, englanti, ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista</p>",
                "sv": "<p>Kom och skapa underbara konstföremål i Kulturlokalen Merirasti på Helsingforsdagen! Verkstäderna är öppna och avgiftsfria för alla och lämpar sig för hela familjen samt för unga.</p><p>I Merirastis konstverkstäder skapar vi konst med olika teman och tekniker tillsammans. Om det regnar och stormar flyttar verkstaden inomhus.</p><p><b>Konstverkstaden Flyktiga bilder kl. 10–12</b><br>Vi skapar förtrollande bilder i fin sand. Bilden är föränderlig och försvinner lätt. Det går inte att ta med sig sandbilderna hem, men du kan spara dem genom att ta ett foto.</p><p>Chloé Mahy-Hulkko leder verkstäderna<br>Språk: finska, engelska, franska</p><p>Fritt inträde, ingen förhandsanmälan</p>",
                "en": "<p>Come and create wonderful works of art at Cultural Space Merirasti on Helsinki Day! The workshops are open to everyone, free of charge, and they are suitable for the whole family and for young people.</p><p>In the art workshops at Merirasti, we will make art together, exploring various themes and techniques. In the event of rain or stormy weather, the workshop will take place indoors.</p><p><b>Art workshop: Fleeting picture 10.00–12.00</b><br>We will draw enchanting pictures in fine sand. The pictures change and easily disappear. You will not be able to bring pictures drawn in sand home with you, but you can save them by taking a photo.</p><p>The workshops are led by Chloé Mahy-Hulkko<br>Languages: Finnish, English, French</p><p>Free entry, no advance registration.</p>"
            },
            "short_description": {
                "fi": "Tule Helsinki-päivänä tekemään ihania taidejuttuja Kulttuuritila Merirastiin! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.",
                "sv": "Kom och skapa underbara konstföremål i Kulturlokalen Merirasti på Helsingforsdagen! Verkstäderna är öppna och avgiftsfria för alla och lämpar sig för hela familjen samt för unga.",
                "en": "Come and create wonderful works of art at Cultural Space Merirasti on Helsinki Day! The workshops are open to everyone, free of charge, and they are suitable for the whole family and for young people."
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "name": {
                "fi": "Hetkellinen kuva – Kulttuuritila Merirasti",
                "sv": "Flyktiga bilder – Kulturlokalen Merirasti",
                "en": "Fleeting picture – Cultural Space Merirasti"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66135/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-3748847",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-jenny-hill-helsingin-kaupunginteatteri-19350643/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-jenny-hill-helsingin-kaupunginteatteri-19350643/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-jenny-hill-helsingin-kaupunginteatteri-19350643/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350601/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350602/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350603/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350612/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350604/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350605/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350606/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350615/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350607/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350608/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350609/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350618/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350619/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350610/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350620/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350637/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350611/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350638/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350640/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350639/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350641/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350642/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350643/?format=api"
                }
            ],
            "images": [
                {
                    "id": 235430,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:41.192055Z",
                    "last_modified_time": "2025-02-17T11:16:41.192070Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/jenny-hill_222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235430/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:15.262399Z",
            "last_modified_time": "2025-05-03T20:17:02.431833Z",
            "date_published": null,
            "start_time": "2025-02-18T16:30:00Z",
            "end_time": "2025-05-03",
            "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,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/jenny-hill-3748847/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/jenny-hill-3748847/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/jenny-hill-3748847/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Minna Rytisalo - Henna Piirto<br><strong>Jenny Hill </strong></p><p>Mäen Jenni eroaa miehestään Jussista ja muuttaa pois espoolaisesta merenrantatalosta yksiöön kantakaupungissa. Lapset ovat jo aikuisia, ja nyt on Jennin aika nähdä, kuka hän on kaikkien odotusten alla. Jenni Mäestä tulee Jenny Hill, nainen, joka alkaa löytää oman äänensä ja oman tapansa elää.</p><p>Jenny Hill on draamakomedia, keski-ikäisen naisen kasvutarina, hillitön ja herkkä. Jenny Hill on silkkaa riemua, se voimaannuttaa, inspiroi, naurattaa ja antaa sylikaupalla oivalluksia ja samastumispintaa.</p><p>Minna Rytisalon sävykäs ja maaginen romaani (2023) kasvaa timanttiseksi näytelmäksi dramaturgi Henna Piirron käsissä. Liisa Mustosen ohjaama esitys yhdistelee sirkustaiteen elementtejä ja tanssia, tarjoilee mahtavia sooloja virtuoosimaisille näyttelijöille ja iskee flamencokengän rytmiikalla.</p><p>Rooleissa: Sari Haapamäki, Aino Seppo, Merja Larivaara, Rauno Ahonen, Vappu Nalbantoglu, Sauli Suonpää, Ursula Salo, Sanna Saarijärvi Elina Hietala</p><p>Kirjailija: Minna Rytisalo<br>Dramatisointi: Henna Piirto<br>Ohjaus: Liisa Mustonen<br>Koreografi: Matleena Laine<br>Lavastus ja pukusuunnittelu: Annina Nevantaus<br>Valosuunnittelu: Kari Leppälä<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Dramaturgi: Sanna Niemeläinen</p><p><br></p>"
            },
            "short_description": {
                "fi": "Minna Rytisalo - Henna Piirto Jenny Hill Mäen Jenni eroaa miehestään Jussista ja muuttaa pois espoolaisesta merenrantatalosta yksiöön kantakaupungissa."
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "name": {
                "fi": "Jenny Hill"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748847/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23ayqq",
            "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/helmet:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23aydq/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T13:50:06.340758Z",
            "last_modified_time": "2025-05-03T14:10:14.800535Z",
            "date_published": null,
            "start_time": "2025-04-01T14:00:00Z",
            "end_time": "2025-05-22T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "description": {
                "fi": "<p>Luetaan kirjoja helpolla ruotsilla ja keskustelaan niistä ruotsiksi.</p>",
                "sv": "<p>Bokcirkeln på lätt svenska passar till exempel för dig som vill ha läsinspiration eller för dig som vill öva på att tala svenska.</p><p>Vi samlas på Sellobiblioteket torsdagen den 22 maj kl. 17-18.30 (Obs! nytt datum) i Kulturutrymmet bredvid de svenska böckerna. Då talar vi om boken En halv gul sol av Chimamanda Ngozi Adichie, och återberättad av Tomas Dömstedt. Läs boken i förväg.</p><p>Anmäl dig till sara.nordlund-laurent@esbo.fi om du vill vara med.</p><p>Bokcirkeln ordnas av Hela Helmet läser som är ett projekt som sprider läslust och -inspiration bland svenskspråkiga vuxna. Vi ordnar program på Helmet-biblioteken i Helsingfors, Esbo, Grankulla och Vanda.</p>"
            },
            "short_description": {
                "fi": "Luetaan kirjoja helpolla ruotsilla ja keskustelaan niistä ruotsiksi.",
                "sv": "Vi läser böcker på lätt svenska och samlas på biblioteket för att tala om böckerna."
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "sv": "Kulturens utrymme"
            },
            "name": {
                "fi": "Selkolukupiiri ruotsin kielellä",
                "sv": "Kom med i vår bokcirkel på lätt svenska!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ayqq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66061",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3879153"
                    },
                    "description": null,
                    "price": {
                        "fi": "44-94 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 553803,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-17T10:14:37.659295Z",
                    "last_modified_time": "2025-04-17T10:14:37.659318Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765665.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/553803/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-17T10:14:37.549609Z",
            "last_modified_time": "2025-05-02T15:13:53.595970Z",
            "date_published": null,
            "start_time": "2025-10-14T16: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/968664AC055BF8D48C8C1F02F66AABBB/Matkalaukku_Chemodan"
            },
            "description": {
                "fi": "<p>14. lokakuuta Savoy-teatterissa esitetään komedia \"Matkalaukku\", joka perustuu Sergei Dovlatovin novelleihin.</p><p>Päähenkilö ottaa mukaansa vain pienen matkalaukun lähtiessään Neuvostoliitosta Yhdysvaltoihin. Vuosien kuluttua hän avaa sen – ja löytää esineitä, jotka muistuttavat menneestä. Jokainen niistä herää eloon tarinassa – hauskassa, surullisessa ja koskettavassa. Nämä ovat kertomuksia ihmisistä, tapahtumista ja tunteista, jotka joskus täyttivät hänen elämänsä.</p><p>Muistojen lempeä haikeus, Dovlatovin ironiset havainnot ja hienovaraiset metaforat heräävät eloon tähtinäyttelijöiden ansiosta. Aleksei Kortnev, Aleksei Agranovitš, Semjon Treskunov ja Nina Škara tuovat tarinoihin aitoutta ja lämpöä.</p><p>Esitykseen sävelletty musiikki luo ainutlaatuisen tunnelman, jossa nauru ja nostalgia kulkevat käsi kädessä, ja yksinkertaisista kertomuksista kasvaa ajatonta pohdintaa rakkaudesta, ystävyydestä ja itsensä etsimisestä.</p><p>Tämä näytelmä kertoo siitä, miten koko elämä voidaan pakata yhteen matkalaukkuun – ja kuinka muistojen lämpö säilyy, vaikka olisit kaukana kotoa. Ja siitä, että vaikeimpinakin aikoina meillä on aina jotakin, mikä tekee meistä vahvempia: muistoja, rakkautta, toivoa.</p><p>Esityksen kesto on noin 2 tuntia ja 10 minuuttia, ilman väliaikaa.</p><p>Esityskieli on venäjä, ei tekstitystä.</p><p>****</p>",
                "ru": "<p>14 октября в театре Savoy в будет представлена комедия «Чемодан», созданная по рассказам Сергея Довлатова.</p><p>Уезжая из Советского Союза в США, герой берет с собой только небольшой чемодан. Спустя годы он открывает его и находит вещи, ставшие напоминанием о прошлом. Каждая из них оживает в рассказе — смешном, грустном и трогательном. Это истории о людях, событиях и чувствах, которые когда-то наполнили его жизнь.</p><p>Светлая грусть воспоминаний, ироничные наблюдения и тонкие метафоры Довлатова оживают благодаря звездному актерскому составу. Алексей Кортнев, Алексей Агранович, Семен Трескунов, Нина Шкара наполняют рассказы искренностью и теплом.</p><p>Музыка, созданная для спектакля, создаёт удивительную атмосферу, где смех соседствует с ностальгией, а простые истории превращаются в вечные темы о любви, дружбе и поисках себя.</p><p>Этот спектакль о том, как уместить всю жизнь в одном чемодане и сохранить тепло воспоминаний, когда ты далеко от дома. И о том, что даже в самые сложные времена у нас всегда остаётся что-то, что делает нас сильнее — память, любовь, надежда.</p><p>Продолжительность спектакля примерно 2 час и 10 минут, без антракта.</p><p>Спектакль идет на русском языке без субтитров.</p>"
            },
            "short_description": {
                "fi": "14. lokakuuta Savoy-teatterissa esitetään komedia \"Matkalaukku\", joka perustuu Sergei Dovlatovin novelleihin."
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Aftersunset Oy"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Matkalaukku / Chemodan"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66061/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23ay6e",
            "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/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490357,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-02T11:55:09.060112Z",
                    "last_modified_time": "2025-05-02T11:55:09.060124Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/8019d0df-34ae-4c4f-a585-fbf5342984b8.jpg",
                    "cropping": "230,0,1150,921",
                    "photographer_name": "",
                    "alt_text": "lapsi maalaa vesiväreillä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490357/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-02T12:02:08.911590Z",
            "last_modified_time": "2025-05-02T12:02:08.911605Z",
            "date_published": "2025-05-02T12:00:00Z",
            "start_time": "2025-07-09T10:00:00Z",
            "end_time": "2025-07-09T10: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,
            "info_url": null,
            "description": {
                "fi": "<p>Tule kuuntelemaan satua ja taiteilemaan Sellon kirjaston Lastenmaan Jaminurkkaan. Kirjastolainen lukee ääneen tarinoita ja osallistujat maalaavat tai piirtävät. Kirjasto tarjoaa materiaalit. Alle kouluikäiset vanhemman kanssa.</p>",
                "sv": "<p>Kom och lyssna på en saga och gör lite konst i Jaminurkka på Sellobibliotekets Lastenmaa. En bibliotekarie läser berättelser högt och deltagarna målar eller ritar. Biblioteket tillhandahåller materialet. Barn under skolåldern med en förälder.</p>",
                "en": "<p>Come listen to a fairy tale and do some art at the Sello Library's Lastenmaa Jaminurkka. A librarian will read the stories aloud and participants will paint or draw. The library will provide materials. Children under school age must be accompanied by a parent.</p>"
            },
            "short_description": {
                "fi": "Satuja ja taiteilua Sellon lastenmaassa",
                "sv": "Sagor och målning",
                "en": "Stories and painting"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Jaminurkka, Lastenmaa",
                "sv": "Jaminurkka, Lastenmaa",
                "en": "Jaminurkka, Lastenmaa"
            },
            "name": {
                "fi": "Satutaidetuokio",
                "sv": "Sagomålning",
                "en": "Story painting session"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ay6e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23azki",
            "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/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490357,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-02T11:55:09.060112Z",
                    "last_modified_time": "2025-05-02T11:55:09.060124Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/8019d0df-34ae-4c4f-a585-fbf5342984b8.jpg",
                    "cropping": "230,0,1150,921",
                    "photographer_name": "",
                    "alt_text": "lapsi maalaa vesiväreillä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490357/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-02T11:56:18.250540Z",
            "last_modified_time": "2025-05-02T11:56:18.250558Z",
            "date_published": "2025-05-02T11:40:00Z",
            "start_time": "2025-06-04T10:00:00Z",
            "end_time": "2025-06-04T10: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,
            "info_url": null,
            "description": {
                "fi": "<p>Tule kuuntelemaan satua ja taiteilemaan Sellon kirjaston Lastenmaan Jaminurkkaan. Kirjastolainen lukee ääneen tarinoita ja osallistujat maalaavat tai piirtävät. Kirjasto tarjoaa materiaalit. Alle kouluikäiset vanhemman kanssa.</p>",
                "sv": "<p>Kom och lyssna på en saga och gör lite konst i Jaminurkka på Sellobibliotekets Lastenmaa. En bibliotekarie läser berättelser högt och deltagarna målar eller ritar. Biblioteket tillhandahåller materialet. Barn under skolåldern med en förälder.</p>",
                "en": "<p>Come listen to a fairy tale and do some art at the Sello Library's Lastenmaa Jaminurkka. A librarian will read the stories aloud and participants will paint or draw. The library will provide materials. Children under school age must be accompanied by a parent.</p>"
            },
            "short_description": {
                "fi": "Satuja ja taiteilua Sellon lastenmaassa",
                "sv": "Sagor och målning",
                "en": "Stories and painting"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Jaminurkka, Lastenmaa",
                "sv": "Jaminurkka, Lastenmaa",
                "en": "Jaminurkka, Lastenmaa"
            },
            "name": {
                "fi": "Satutaidetuokio",
                "sv": "Sagomålning",
                "en": "Story painting session"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23azki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66139",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/",
                        "sv": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/",
                        "en": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 667200,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-02T11:14:04.121642Z",
                    "last_modified_time": "2025-05-02T11:14:04.121668Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769670.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/667200/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-02T11:14:04.029061Z",
            "last_modified_time": "2025-05-02T11:14:04.230096Z",
            "date_published": null,
            "start_time": "2025-06-14T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F701F0E26ECA3C34CDDF97CADB4C619B/Kansantanssijat_liikkeella_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/F701F0E26ECA3C34CDDF97CADB4C619B/Folkdansare_pa_vift_",
                "en": "http://www.vuotalo.fi/en/events/event/F701F0E26ECA3C34CDDF97CADB4C619B/Folk_dancers_on_the_move_"
            },
            "description": {
                "fi": "<p>Tule katsomaan suomenruotsalaisten kansantanssijoiden esityksiä Vuotorille, Vuotalon läheisyyteen.</p><p>Kesto: noin 60 min.<br>Vapaa pääsy</p>",
                "sv": "<p>Kom och se finlandssvenska folkdansare uppträda på Nortorget utanför Nordhuset.</p><p>Längd: Minst 60 min. <br>Fri entré</p>",
                "en": "<p>Come and see performances by Finnish-Swedish folk dancers at Vuotori, near Vuotalo.</p><p>Duration: about 60 min.<br>Free admission</p>"
            },
            "short_description": {
                "fi": "Tule katsomaan suomenruotsalaisten kansantanssijoiden esityksiä Vuotorille, Vuotalon läheisyyteen.",
                "sv": "Kom och se finlandssvenska folkdansare uppträda på Nortorget utanför Nordhuset.",
                "en": "Come and see performances by Finnish-Swedish folk dancers at Vuotori, near Vuotalo."
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "name": {
                "fi": "Kansantanssijat liikkeellä!",
                "sv": "Folkdansare på vift!",
                "en": "Folk dancers on the move!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66139/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23a2gq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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: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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ddci/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-04-28T08:41:00.215397Z",
            "last_modified_time": "2025-05-02T10:09:29.238183Z",
            "date_published": null,
            "start_time": "2025-05-12T05:00:00Z",
            "end_time": "2025-05-18T15: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,
            "info_url": null,
            "description": {
                "fi": "<p>Luontobingon voi värittää, tutut tyypit löytyy kirjastosta ja keväiset merkit luonnosta.</p><p>Luontobingo on sinua varten, joten voit havaita ja rastittaa löytämiäsi keväänmerkkejä ja tuttuja hahmoja niitä kohdattuasi.</p><p>Anna luonnon ja eläinten lumota sinut. Näe sateenkaaritaikuutta ja poutapilviä. Ja ennen kaikkea uppoudu maagisiin maailmoihin!</p><p>Nappaa luontobingo mukaasi lasten ja nuorten osastolta!</p><p><br></p><p>Uppoudu maagisiin tunnelmiin kirjaston maagisella viikolla 12.-18.5.2025!</p>",
                "sv": "<p>Bryt dig lös från vardagsverkligheten under bibliotekens Magiska vecka 12.-18.5.2025!</p><p>Den Magiska veckan tar besökarna med in i fantasivärldar på bibliotek på olika håll i staden.</p>",
                "en": "<p>Travel beyond your everyday reality during Magical Week on 12.-18.5.2025!</p><p>During Magical Week, you have the chance to immerse yourself in fantasy worlds in libraries around the city.</p>"
            },
            "short_description": {
                "fi": "Luontobingo on osa Espoon kaupunginkirjastojen maagisen viikon ohjelmaa!"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "name": {
                "fi": "Maaginen luontobingo Ison Omenan kirjastossa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a2gq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23a5oi",
            "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:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a2xm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a3di/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a3qu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a35m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a4je/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a4vq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a5b4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 151291,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T08:03:45.481404Z",
                    "last_modified_time": "2024-05-23T08:03:45.481484Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Muistikerho.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Muistikerho",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151291/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-05-02T09:16:02.452531Z",
            "last_modified_time": "2025-05-02T09:16:02.452546Z",
            "date_published": null,
            "start_time": "2025-09-15T10:00:00Z",
            "end_time": "2025-12-08T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "description": {
                "fi": "<p>Leppävaaran seniorit kokoontuvat aivojumpan merkeissä.</p>"
            },
            "short_description": {
                "fi": "Leppävaaran seniorit kokoontuvat aivojumpan merkeissä."
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Akseli"
            },
            "name": {
                "fi": "Leppävaaran senioreiden muistikerho"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a5oi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66136",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p6455/?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": 666535,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-02T09:13:59.510594Z",
                    "last_modified_time": "2025-05-02T09:13:59.510611Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767273.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/666535/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-02T09:13:59.458823Z",
            "last_modified_time": "2025-05-02T09:13:59.606326Z",
            "date_published": null,
            "start_time": "2025-06-13T07:00:00Z",
            "end_time": "2025-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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D53D16A5F6F702A8B831429A960FAF98/Morsetus-koru",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D53D16A5F6F702A8B831429A960FAF98/Morsekodsmycke",
                "en": "http://www.vuotalo.fi/en/events/event/D53D16A5F6F702A8B831429A960FAF98/Morse_code_bracelet"
            },
            "description": {
                "fi": "<p>Tule tekemään ihania taidejuttuja Kulttuuritila Merirastiin! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Merirastin taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Jos sataa ja myrskyää, työpaja siirtyy sisätiloihin.</p><p><b>Morsetus-koru -taidepaja klo 10–12</b><br>Tällä kertaa teemme rannekoruja, joissa on salainen viesti. Morsetus tai sähkötys on viestintäkeino, jossa viesti koostuu morseaakkosista. Saat rannekorun mukaasi tai voit vaikka antaa sen (ja viestin) lahjaksi ystävälle.</p><p>Työpajoja ohjaa Chloé Mahy-Hulkko<br>Kielet: suomi, englanti, ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista</p>",
                "sv": "<p>Kom och skapa underbara konstföremål i Kulturlokalen Merirasti! Verkstäderna är öppna och avgiftsfria för alla och lämpar sig för hela familjen samt för unga.</p><p>I Merirastis konstverkstäder skapar vi konst med olika teman och tekniker tillsammans. Om det regnar och stormar flyttar verkstaden inomhus.</p><p><b>Konstverkstaden Morsekodsmycke kl. 10–12</b><br>Den här gången gör vi armband med ett hemligt meddelande. Morsesignalering eller telegrafering är ett kommunikationssätt där meddelandet består av morsealfabetet. Du får ta med dig armbandet hem eller så kan du till exempel ge det (och meddelandet) som en gåva till en vän.</p><p>Chloé Mahy-Hulkko leder verkstäderna<br>Språk: finska, engelska, franska</p><p>Fritt inträde, ingen förhandsanmälan</p>",
                "en": "<p>Come and create wonderful works of art at Cultural Space Merirasti! The workshops are open to everyone, free of charge, and they are suitable for the whole family and for young people.</p><p>In the art workshops at Merirasti, we will make art together, exploring various themes and techniques. In the event of rain or stormy weather, the workshop will take place indoors.</p><p><b>Art workshop: Morse code bracelet 10.00–12.00</b><br>This time, we will make bracelets with a hidden message. Morse code is a communication method in which the message uses codes in place of letters. You can take your bracelet with you or gift it (and the hidden message) to a friend, for example.</p><p>The workshops are led by Chloé Mahy-Hulkko<br>Languages: Finnish, English, French</p><p>Free entry, no advance registration.</p>"
            },
            "short_description": {
                "fi": "Tule tekemään ihania taidejuttuja Kulttuuritila Merirastiin! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.",
                "sv": "Kom och skapa underbara konstföremål i Kulturlokalen Merirasti! Verkstäderna är öppna och avgiftsfria för alla och lämpar sig för hela familjen samt för unga.",
                "en": "Come and create wonderful works of art at Cultural Space Merirasti! The workshops are open to everyone, free of charge, and they are suitable for the whole family and for young people."
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "name": {
                "fi": "Morsetus-koru – Kulttuuritila Merirasti",
                "sv": "Morsekodsmycke – Kulturlokalen Merirasti",
                "en": "Morse code bracelet – Cultural Space Merirasti"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66136/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}