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

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

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 normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). 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&include=location%2Ckeywords&page=811
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 32757,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=812",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=810"
    },
    "data": [
        {
            "id": "espoo_le:agh3sjcxna",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15417",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:19.044131Z",
                "last_modified_time": "2025-01-31T06:09:29.808662Z",
                "custom_data": null,
                "email": "sellonkirjasto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02600",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 4952,
                "image": 180919,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.80934,
                        60.217506
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7603"
                },
                "street_address": {
                    "fi": "Leppävaarankatu 9",
                    "sv": "Albergagatan 9",
                    "en": "Leppävaarankatu 9"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925"
                },
                "description": null,
                "name": {
                    "fi": "Sellon kirjasto",
                    "sv": "Sellobiblioteket",
                    "en": "Sello Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66oi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.151726Z",
                    "last_modified_time": "2023-12-13T11:20:12.151743Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3529,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Leppävaara",
                        "sv": "Alberga",
                        "en": "Leppävaara"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1810",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "työnteko"
                    ],
                    "created_time": "2023-08-16T05:19:48.526591Z",
                    "last_modified_time": "2023-08-16T05:19:48.526612Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 61,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työ",
                        "sv": "arbete",
                        "en": "work"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2024-05-27T07:50:59.335487Z",
            "last_modified_time": "2024-06-05T07:38:33.867892Z",
            "date_published": null,
            "start_time": "2024-06-13T09:00:00Z",
            "end_time": "2024-06-13T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Rekrytointitapahtuma Sellon kirjastossa",
                "sv": "Rekryteringsevenemang i Sellobiblioteket",
                "en": "Recruitment event in Sello Library"
            },
            "info_url": {
                "fi": "https://careers.verisure.com/fi/fi/home"
            },
            "description": {
                "fi": "<p><br>Tässä rekrytointitapahtumassa Verisure esittelee avoimia työpaikkoja, antaa hakuohjeet ja haastattelee hakijoita. </p><p>Ohjelma:</p><p>* Klo 12.00 työnantaja esittäytyy ja kertoo avoimista työpaikoista.</p><p>* Haastattelut alkavat esittelyn jälkeen.</p><p>Kannattaa tulla paikalle heti kello 12, kun työtehtävät esitellään. Esittelyn jälkeen kaikki halukkaat pääsevät työhaastatteluun.</p><p>Tapahtuma päättyy, kun hakijat on haastateltu. Tapahtuma voi siis päättyä jo ennen kello 15.00.</p><p>Jos sinulla on CV, ota se mukaan. CV ei ole kuitenkaan välttämätön.</p><p>Paikalla on myös Espoon kaupungin edustajia, jotka neuvovat työnhaussa.</p><p>Tervetuloa!</p><p>#SinunTyösiPuolella<br></p>",
                "sv": "<p>Evenemanget är på finska. Läs mer om evenemanget på finska.</p><p>#FörDittArbete</p>",
                "en": "<p>The event will be held in Finnish. More information is available on the Finnish event page. </p><p>#YourWorkIsOurWork</p>"
            },
            "name": {
                "fi": "Työnantajatreffit: Verisure",
                "sv": "Työnantajatreffit rekryteringsevenemang: Verisure",
                "en": "Työnantajatreffit recruitment event: Verisure"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Työllisyys Espoo",
                "sv": "Sysselsättning Esbo",
                "en": "Employment Espoo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcxna/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh6orxram",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 870,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxsa4/?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": [
                {
                    "id": 150479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-08T11:19:23.769532Z",
                    "last_modified_time": "2024-03-08T11:19:23.769564Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg",
                    "name": "Sigmund W / Unsplash",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-06-05T06:46:06.525254Z",
            "last_modified_time": "2024-06-05T06:46:06.525288Z",
            "date_published": null,
            "start_time": "2024-06-05T10:00:00Z",
            "end_time": "2024-06-05T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.",
                "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.",
                "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.<br></p>",
                "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>",
                "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  </p>"
            },
            "name": {
                "fi": "Pajailtapäivä ",
                "sv": "Pysseleftermiddag i bibliotekets Makerspace",
                "en": "Arts and crafts afternoon in the library’s Makerspace"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxram/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh6orxrle",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 870,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxsa4/?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": [
                {
                    "id": 150479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-08T11:19:23.769532Z",
                    "last_modified_time": "2024-03-08T11:19:23.769564Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg",
                    "name": "Sigmund W / Unsplash",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-06-05T06:46:05.494860Z",
            "last_modified_time": "2024-06-05T06:46:05.494893Z",
            "date_published": null,
            "start_time": "2024-08-07T10:00:00Z",
            "end_time": "2024-08-07T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.",
                "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.",
                "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.<br></p>",
                "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>",
                "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  </p>"
            },
            "name": {
                "fi": "Pajailtapäivä ",
                "sv": "Pysseleftermiddag i bibliotekets Makerspace",
                "en": "Arts and crafts afternoon in the library’s Makerspace"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxrle/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh6orxrnu",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 870,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxsa4/?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": [
                {
                    "id": 150479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-08T11:19:23.769532Z",
                    "last_modified_time": "2024-03-08T11:19:23.769564Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg",
                    "name": "Sigmund W / Unsplash",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-06-05T06:46:04.502363Z",
            "last_modified_time": "2024-06-05T06:46:04.502396Z",
            "date_published": null,
            "start_time": "2024-07-31T10:00:00Z",
            "end_time": "2024-07-31T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.",
                "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.",
                "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.<br></p>",
                "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>",
                "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  </p>"
            },
            "name": {
                "fi": "Pajailtapäivä ",
                "sv": "Pysseleftermiddag i bibliotekets Makerspace",
                "en": "Arts and crafts afternoon in the library’s Makerspace"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxrnu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh6orxrqa",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 870,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxsa4/?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": [
                {
                    "id": 150479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-08T11:19:23.769532Z",
                    "last_modified_time": "2024-03-08T11:19:23.769564Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg",
                    "name": "Sigmund W / Unsplash",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-06-05T06:46:03.411503Z",
            "last_modified_time": "2024-06-05T06:46:03.411535Z",
            "date_published": null,
            "start_time": "2024-07-24T10:00:00Z",
            "end_time": "2024-07-24T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.",
                "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.",
                "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.<br></p>",
                "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>",
                "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  </p>"
            },
            "name": {
                "fi": "Pajailtapäivä ",
                "sv": "Pysseleftermiddag i bibliotekets Makerspace",
                "en": "Arts and crafts afternoon in the library’s Makerspace"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxrqa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh6orxrsu",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 870,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxsa4/?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": [
                {
                    "id": 150479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-08T11:19:23.769532Z",
                    "last_modified_time": "2024-03-08T11:19:23.769564Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg",
                    "name": "Sigmund W / Unsplash",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-06-05T06:46:02.502533Z",
            "last_modified_time": "2024-06-05T06:46:02.502635Z",
            "date_published": null,
            "start_time": "2024-07-17T10:00:00Z",
            "end_time": "2024-07-17T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.",
                "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.",
                "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.<br></p>",
                "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>",
                "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  </p>"
            },
            "name": {
                "fi": "Pajailtapäivä ",
                "sv": "Pysseleftermiddag i bibliotekets Makerspace",
                "en": "Arts and crafts afternoon in the library’s Makerspace"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxrsu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh6orxru4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 870,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxsa4/?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": [
                {
                    "id": 150479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-08T11:19:23.769532Z",
                    "last_modified_time": "2024-03-08T11:19:23.769564Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg",
                    "name": "Sigmund W / Unsplash",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-06-05T06:46:01.632195Z",
            "last_modified_time": "2024-06-05T06:46:01.632317Z",
            "date_published": null,
            "start_time": "2024-07-10T10:00:00Z",
            "end_time": "2024-07-10T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.",
                "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.",
                "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.<br></p>",
                "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>",
                "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  </p>"
            },
            "name": {
                "fi": "Pajailtapäivä ",
                "sv": "Pysseleftermiddag i bibliotekets Makerspace",
                "en": "Arts and crafts afternoon in the library’s Makerspace"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxru4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh6orxrxa",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 870,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxsa4/?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": [
                {
                    "id": 150479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-08T11:19:23.769532Z",
                    "last_modified_time": "2024-03-08T11:19:23.769564Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg",
                    "name": "Sigmund W / Unsplash",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-06-05T06:46:01.185453Z",
            "last_modified_time": "2024-06-05T06:46:01.185486Z",
            "date_published": null,
            "start_time": "2024-07-03T10:00:00Z",
            "end_time": "2024-07-03T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.",
                "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.",
                "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.<br></p>",
                "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>",
                "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  </p>"
            },
            "name": {
                "fi": "Pajailtapäivä ",
                "sv": "Pysseleftermiddag i bibliotekets Makerspace",
                "en": "Arts and crafts afternoon in the library’s Makerspace"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxrxa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh6orxrze",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 870,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxsa4/?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": [
                {
                    "id": 150479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-08T11:19:23.769532Z",
                    "last_modified_time": "2024-03-08T11:19:23.769564Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg",
                    "name": "Sigmund W / Unsplash",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-06-05T06:46:00.711195Z",
            "last_modified_time": "2024-06-05T06:46:00.711245Z",
            "date_published": null,
            "start_time": "2024-06-26T10:00:00Z",
            "end_time": "2024-06-26T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.",
                "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.",
                "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.<br></p>",
                "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>",
                "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  </p>"
            },
            "name": {
                "fi": "Pajailtapäivä ",
                "sv": "Pysseleftermiddag i bibliotekets Makerspace",
                "en": "Arts and crafts afternoon in the library’s Makerspace"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxrze/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh6orxr4i",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 870,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxsa4/?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": [
                {
                    "id": 150479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-08T11:19:23.769532Z",
                    "last_modified_time": "2024-03-08T11:19:23.769564Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg",
                    "name": "Sigmund W / Unsplash",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-06-05T06:46:00.218605Z",
            "last_modified_time": "2024-06-05T06:46:00.218630Z",
            "date_published": null,
            "start_time": "2024-06-19T10:00:00Z",
            "end_time": "2024-06-19T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.",
                "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.",
                "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.<br></p>",
                "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>",
                "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  </p>"
            },
            "name": {
                "fi": "Pajailtapäivä ",
                "sv": "Pysseleftermiddag i bibliotekets Makerspace",
                "en": "Arts and crafts afternoon in the library’s Makerspace"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxr4i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh6orxr6y",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 870,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxsa4/?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": [
                {
                    "id": 150479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-08T11:19:23.769532Z",
                    "last_modified_time": "2024-03-08T11:19:23.769564Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg",
                    "name": "Sigmund W / Unsplash",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-06-05T06:45:59.717131Z",
            "last_modified_time": "2024-06-05T06:45:59.717157Z",
            "date_published": null,
            "start_time": "2024-06-12T10:00:00Z",
            "end_time": "2024-06-12T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.",
                "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.",
                "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.<br></p>",
                "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>",
                "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  </p>"
            },
            "name": {
                "fi": "Pajailtapäivä ",
                "sv": "Pysseleftermiddag i bibliotekets Makerspace",
                "en": "Arts and crafts afternoon in the library’s Makerspace"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxr6y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh6orxsa4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 870,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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:agh6orxram/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxrle/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxrnu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxrqa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxrsu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxru4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxrxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxrze/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxr4i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxr6y/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-08T11:19:23.769532Z",
                    "last_modified_time": "2024-03-08T11:19:23.769564Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg",
                    "name": "Sigmund W / Unsplash",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-06-05T06:45:56.897260Z",
            "last_modified_time": "2024-06-05T06:45:56.897286Z",
            "date_published": null,
            "start_time": "2024-06-05T10:00:00Z",
            "end_time": "2024-08-07T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.",
                "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.",
                "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.<br></p>",
                "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>",
                "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  </p>"
            },
            "name": {
                "fi": "Pajailtapäivä ",
                "sv": "Pysseleftermiddag i bibliotekets Makerspace",
                "en": "Arts and crafts afternoon in the library’s Makerspace"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6orxsa4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghvp3ripa",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:21431",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:17:36.421691Z",
                "last_modified_time": "2024-02-06T13:10:55.894281Z",
                "custom_data": null,
                "email": "aurora.info@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02940",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 6,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.708786,
                        60.238876
                    ]
                },
                "telephone": {
                    "fi": "+358 46 877 3253"
                },
                "street_address": {
                    "fi": "Järvenperäntie 1-3",
                    "sv": "Träskändavägen 1-3",
                    "en": "Järvenperäntie 1-3"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora",
                    "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora",
                    "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora"
                },
                "description": {
                    "fi": "Lasten kulttuurikeskus Aurora on iloisten kohtaamisten paikka lapsille ja aikuisille. Kolmen rakennuksen uniikki tilakokonaisuus sijaitsee erinomaisten kulkuyhteyksien varrella, lähellä hurmaavaa Träskändan kartanoa. Monenlaisiin käyttötarkoituksiin taipuvat tilat ja suojaisa pihapiiri sekä ulkolava tarjoavat upeat olosuhteet monenlaiselle tapahtumatoiminnalle aina esitystaiteesta harrastetoimintaan sekä erilaisiin taidepajoihin ja yksityistilaisuuksiin.",
                    "sv": "Barnkulturcentret Aurora är en plats för glada möten för barn och vuxna. Den unika helheten med utrymmen i tre byggnader som ligger i närheten av fantastiska Träskända park och gård nås via utmärkta transportförbindelser. Lokalerna passar för många slags aktiviteter och det skyddade gårdsområdet och friluftsscenen erbjuder en fin miljö för många slags evenemang, från föreställande konst till fritidsverksamhet, olika konstverkstäder och privata tillställningar.",
                    "en": "Children's Cultural Centre Aurora is a place of happy experiences for children and adults. This unique complex of three buildings is located close to the charming Träskända Park and Manor and has excellent transport connections. The multipurpose facilities, a courtyard surrounded by the buildings and an outdoor stage, provide a great setting for a wide range of events from performing arts to recreational activities and various art workshops and private events."
                },
                "name": {
                    "fi": "Lasten kulttuurikeskus Aurora",
                    "sv": "Barnkulturcentret Aurora",
                    "en": "Children's Cultural Centre Aurora"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:21431/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz665y",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.276401Z",
                    "last_modified_time": "2023-12-13T11:20:12.276418Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 39,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Bodom",
                        "sv": "Bodom",
                        "en": "Bodom"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz667y",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.292077Z",
                    "last_modified_time": "2023-12-13T11:20:12.292102Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 40,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Röylä",
                        "sv": "Rödskog",
                        "en": "Röylä"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66yu",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.236299Z",
                    "last_modified_time": "2023-12-13T11:20:12.236316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 41,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Lippajärvi",
                        "sv": "Klappträsk",
                        "en": "Lippajärvi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67g4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.349896Z",
                    "last_modified_time": "2023-12-13T11:20:12.349921Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Järvenperä",
                        "sv": "Träskända",
                        "en": "Järvenperä"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz7asq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.697468Z",
                    "last_modified_time": "2023-12-13T11:20:12.697485Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 21,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Högnäs",
                        "sv": "Högnäs",
                        "en": "Högnäs"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1942,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/978446637104935/978460283770237/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-05-08T10:22:41.179078Z",
            "last_modified_time": "2024-06-05T06:35:49.222630Z",
            "date_published": null,
            "start_time": "2024-06-19T06:30:00Z",
            "end_time": "2024-06-19T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Sanaton sirkusesitys, -työpaja ja kirjaston elämysauto Välkky – tervetuloa vapaapääsyiseen lasten aamupäivään Lasten kulttuurikeskus Auroran pihalla!",
                "sv": "Ordlös föreställning, workshop och biblioteksbil – välkommen till förmiddag för barnen på Barnkulturcentret Aurora! Fritt inträde.",
                "en": "A speechless performance, workshop and mobile library– welcome to a free children’s morning event at Children's Cultural Centre Aurora!"
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora/auroran-kesakiertue-siskot-ja-kuusi-sirkusesitys-ja-tyopaja-valkky-ja-play-cafe",
                "sv": "https://admin.espoo.fi/sv/barnkulturcentret-aurora/auroras-sommarturne-systrarna-och-granen-cirkusforestallning-och-workshop-valkky",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora/auroras-summer-tour-circus-performance-siskot-ja-kuusi-workshop-mobile-library-valkky"
            },
            "description": {
                "fi": "<p>Auroran kesäkiertue kurvaa Lasten kulttuurikeskus Auroran omaan pihaan ke 19.6. Katso alta muut tapahtumapaikat.</p><p>Tapahtumapäivä pitää sisällään:<br>Klo 10-10.30\t  Siskot ja kuusi -sirkusesitys, lämminhenkinen ja wow-elämyksellinen sanaton tarina<br>Klo 11-12\t         Non-stop sirkustyöpaja<br>Klo 9.30-12\tKirjaston elämysauto Välkky ja Play Cafén leikkipuistokahvila-auto avoinna, tarvittaessa pidempäänkin.</p><p><br>”Siskot ja kuusi” on kaikenikäisten lämminhenkinen nykysirkusesitys sisarusrakkaudesta, sirkuksesta ja erilaisuudesta. Ilmassa ja maassa tehty akrobatia hämmästyttävät, äänimaisema lumoaa ja väärinkäsityskommellukset naurattavat. Sanaton esitys kuvaa kahden sisaruksen kasvutarinaa ja tarjoaa samalla kauniita oivalluksia ihmissuhteista. Lue lisää: saanaleppanen.com/siskot-ja-kuusi<br>  <br>Ohjaus: Saana Leppänen ja Liina Leppänen <br>Esiintyjät: Saana Leppänen ja Nelma Pietala<br>Sävellys: Thibaud Rancoeur <br>Sanaton<br>Kesto 30 min<br>Vapaa pääsy </p><p><br>Saana Leppänen ja Nelma Pietala ohjaavat myös sirkustyöpajan, jossa pääset kokeilemaan hulavanteita, jongleerausta sekä maa- ja ilma-akrobatiaa! Työpaja ei ole suunnattu päivähoitoryhmille rajallisen osallistujakapasiteetin vuoksi.</p><p><br>Kirjaston elämysauto Välkystä löydät elämyksien lisäksi tapahtuman teemaan sopivaa luettavaa, ja voit myös lainata kirjoja kotiin helmet-kirjastokortilla. </p><p>Lasten kulttuurikeskus Auroran pihalla myös Play Cafén leikkipuistokahvila-auto tarjoaa ihania herkkuja. (Ei koske koko kiertuetta.) Menu: playcafe.fi/evaat</p><p><br>Koko kiertue:<br>Ma 10.6.\tSuvelan asukaspuisto <br>Ke 12.6.\t        Pisan asukaspuisto <br>To 13.6.\t        Soukan asukaspuisto <br>Pe 14.6.\t        Hiirisuon asukaspuisto <br>Ma 17.6.\t        Matinkylän asukaspuisto <br>Ke 19.6. \tLasten kulttuurikeskus Auroran piha </p><p>Säävaraus: Tapahtuma toteutuu tihkusateella, mutta siirtyy, jos sataa enemmän. Mahdollisista muutoksista tiedotetaan tapahtuman facebook-sivulla klo 9.15 mennessä kunakin tapahtumapäivänä.  Facebook-sivu: https://www.facebook.com/events/978446637104935/978460283770237/</p><p>Päiväkodit 2024</p>",
                "sv": "<p>Evenemangsdagen omfattar:</p><p>Kl. 10–10.30 Cirkusföreställningen Systrarna och granen, en varm wow-upplevelse utan ord<br>Kl. 11–12 Non-stop cirkusworkshop<br>Kl. 9.30–12 Bibliotekets allaktivitetsbuss Välkky och Lekparkscafébilen Play Café är öppna, vid behov längre.</p><p>Fritt inträde</p><p>”Systrarna och granen” är varm, nutidscirkus för ung och gammal om syskonkärlek, cirkus och olikhet. Hisnande akrobatik i luften och på marken, förtrollande ljudlandskap och skrattretande malörer. Den ordlösa föreställningen handlar om två syskons uppväxt och ger vackra insikter i mänskliga relationer. Läs mer: saanaleppanen.com/siskot-ja-kuusi</p><p>Ordlös föreställning<br>Längd 30 min<br>Regissörer: Saana Leppänen och Liina Leppänen <br>Artister: Saana Leppänen och Nelma Pietala<br>Musik: Thibaud Rancoeur <br>Produktion: Sirkus Aikamoinen </p><p>Saana Leppänen och Nelma Pietala leder en cirkusworkshop, där du kan pröva på tunnband, jonglering samt akrobatik på marken och i luften! Workshoppen riktar sig inte till dagvårdsgrupper på grund av begränsat deltagarantal.</p><p>I bibliotekets allaktivitetsbuss Välkky bjuds det förutom upplevelser också på litteratur för evenemangets tema, och med bibliotekskortet kan man låna böcker hem. </p><p>Lekparkscafébilen Play Café erbjuder underbara delikatesser. Meny: playcafe.fi/evaat</p><p>Hela turné:</p><p>Måndag 10.6\tSödriks invånarpark <br>Onsdag 12.6\t        Bisa aktivitetspark <br>Torsdag 13.6\tSökö invånarpark <br>Fredag 14.6\t        Mössenkärrs invånarpark <br>Måndag 17.6\t        Mattby aktivitetspark <br>Onsdag 19.6 \tBarnkulturcentret Auroras gård </p><p>Om vädret tillåter: Evenemanget kommer att äga rum med duggregn, men kommer att skjutas upp om det regnar mer. Eventuella ändringar meddelas på evenemangets Facebook-sida senast kl. 9.15 varje evenemangsdag. Facebook-sidan: https://www.facebook.com/events/978446637104935/978460283770237/</p>",
                "en": "<p>Aurora's summer tour arrives to Children's Cultural Centre Aurora on 19th of June.  See the other places and dates of the tour underneath.</p><p>The event includes:<br>10.00–10.30\tCircus performance Siskot ja kuusi, a warm and experience-oriented speechless story<br>11.00–12.00\tNon-stop circus workshop<br>9.30–12.00\tMobile library Välkky and the playground-café car of Play Café are open, even later if needed</p><p>Free admission<br> <br>”Siskot ja kuusi” is a warm-hearted modern circus performance about siblings, circus and being different. Acrobatics performed both on the ground and in the air are sure to amaze while the soundscape sets the atmosphere and the misunderstandings in the story make the audience laugh. This speechless performance is the coming-of-age story of two siblings that offers beautiful insights into relationships. <br>  <br>Speechless<br>Duration 30 min<br>Directors: Saana Leppänen and Liina Leppänen <br>Performers: Saana Leppänen and Nelma Pietala<br>Music: Thibaud Rancoeur <br>Production: Sirkus Aikamoinen <br>Photo: Jussi Sirviö </p><p>Saana Leppänen and Nelma Pietala will also direct a circus workshop where you can try out hula hoops, juggling and acrobatics (both on the ground and in the air)! The workshop is not suitable for daycare groups due to the limited capacity for participants.</p><p>The mobile library Välkky has both fun experiences and reading material matching the theme of the event, and you can also borrow and take home books with your Helmet library card. </p><p>In the yard area of Children's Cultural Centre Aurora also the playground-café car of Play Café serves with its wonderful selection of treats (- not in all the places of the tour). Menu: playcafe.fi/evaat</p><p>Dates and places of the whole tour:<br>Mon 10 June\tSuvela residents’ park <br>Wed 12 June\tPisa residents’ park <br>Thu 13 June\t        Soukka residents’ park <br>Fri 14 June\t        Hiirisuo residents’ park <br>Mon 17 June  \tMatinkylä residents’ park <br>Wed 19 June \tChildren’s Cultural Centre Aurora (yard area) </p><p>Weather permitting: the event takes place with drizzle, but is postponed if it rains more. Any changes will be announced on the event's Facebook page by 9.15 a.m. on each event day. Facebook event: https://www.facebook.com/events/978446637104935/978460283770237/</p><p>Organisers: Children’s Cultural Centre Aurora, Espoonlahti cultural services, Espoo City Library <br></p>"
            },
            "name": {
                "fi": "Auroran kesäkiertue - Siskot ja kuusi -sirkusesitys ja työpaja sekä Välkky",
                "sv": "Auroras sommarturné  Systrarna och granen - cirkusföreställning och workshop & Välkky ",
                "en": "Aurora’s summer tour - Circus performance “Siskot ja kuusi”, workshop & Mobile library Välkky "
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuripalvelut ja Espoon kaupunginkirjasto",
                "sv": "Barnkulturcentret Aurora, kulturtjänsterna i Esboviken, Esbo stadsbibliotek",
                "en": "Children’s Cultural Centre Aurora, Espoonlahti cultural services, Espoo City Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvp3ripa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghydrqp64",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:20267",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:43.629324Z",
                "last_modified_time": "2025-10-10T12:09:19.933947Z",
                "custom_data": null,
                "email": "matinkylan.asukaspuisto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 5,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.746494,
                        60.157536
                    ]
                },
                "telephone": {
                    "fi": "+358 40 636 9957"
                },
                "street_address": {
                    "fi": "Matinraitti 12",
                    "sv": "Mattstråket 12",
                    "en": "Matinraitti 12"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Matinkylän asukaspuisto sijaitsee keskeisellä paikalla Matinkylässä, kävelymatkan päässä Matinkylän metroasemalta. Puiston päärakennus on moderni ja valoisa, ja tarjoaa mukavat puitteet yhdessäoloon ja leikkiin. Puisto on avoin kohtaamispaikka lapsille ja heidän huoltajilleen tai hoitajilleen. Aamupäivisin toiminta painottuu alle kouluikäisiin lapsiin, jotka tulevat puistoon oman vanhemman tai muun hoitajan kanssa. Lisäksi puistossa toimii kerho. Aamuisin ja iltapäivisin puistossa viihtyvät myös 1.-3.-luokkalaiset pikkukoululaiset. Toimintamme on maksutonta. Matinkylän asukaspuisto tarjoaa mahdollisuuden tutustua muihin lapsiperheisiin ja löytää leikkiseuraa. Tavoitteenamme on lämmin, leikillinen ja toisia kunnioittava ilmapiiri. Olemme mukana tukemassa lapsuutta ja vanhemmuutta arjen keskellä. Toimintaamme kuuluu leikin ja yhdessäolon lisäksi monipuolisia aktiviteetteja, kuten kädentaitoja, musiikkia ja liikuntaa. Ohjelmassa voi olla myös erilaisia tapahtumia. Aikuiset ja lapset voivat osallistua toiminnan suunnitteluun yhdessä ohjaajien kanssa. Puiston piha-alue on suuri ja nykyaikainen. Pihaltamme löytyy muun muassa keinuja, useita kiipeilytelineitä, karuselli, jalkapallokenttä ja iso nurmialue. Pienille lapsille on oma aidattu alue, jossa on hiekkalaatikko, pieni liukumäki ja vauvakeinuja. Isompi piha-alue ei ole kokonaan aidattu. Sisätilat ovat avarat ja viihtyisät. Rakennuksessa on iso oleskelutila avokeittiöllä, jossa voi keittää kahvia tai teetä, säilyttää eväitä ja lämmittää ruokaa. Käytävällä on kaksi pienempää wc:tä sekä yksi suurempi lastenhoitohuone, jossa on hoitopöytä. Pottia löytyy useampia pienimmille lapsille. Puistossa on runsaasti leluja ja välineitä sekä sisä- että ulkoleikkeihin. Käytössä on muun muassa polkupyöriä, potkumopoja ja hiekkaleluja. Talvella leikkejä rikastuttavat pulkat, aura-autot, lumikolat ja -lapiot. Aukioloaikoina paikalla on henkilökuntaa, joka on valmis ohjaamaan, opastamaan ja leikittämään asiakkaita. Muistathan, että alle kouluikäiset lapset ovat puistossa aina oman huoltajan tai hoitavan aikuisen seurassa. Näin varmistamme, että kaikilla on turvallista ja mukavaa olla puistossa. Lämpimästi tervetuloa leikkimään ja tapaamaan muita lapsia ja aikuisia - jokainen päivä on hyvä päivä puistossa vierailuun!",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/matinkylan-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/matinkylan-asukaspuisto"
                },
                "name": {
                    "fi": "Matinkylän asukaspuisto",
                    "sv": "Mattby invånarpark",
                    "en": "Matinkylä residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20267/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66by",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.052436Z",
                    "last_modified_time": "2023-12-13T11:20:12.052454Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1532,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Matinkylä",
                        "sv": "Mattby",
                        "en": "Matinkylä"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1942,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/978446637104935/978460283770237/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-05-16T13:55:24.938934Z",
            "last_modified_time": "2024-06-05T06:34:20.666473Z",
            "date_published": null,
            "start_time": "2024-06-17T06:30:00Z",
            "end_time": "2024-06-17T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Sanaton sirkusesitys, -työpaja ja kirjaston elämysauto Välkky – tervetuloa vapaapääsyiseen lasten aamupäivään Matinkylän asukaspuistoon!",
                "sv": "Ordlös föreställning, workshop och biblioteksbil – välkommen till förmiddag för barnen på Mattby aktivitetsparken! Fritt inträde.",
                "en": "A speechless performance, workshop and mobile library– welcome to a free children’s morning event at Matinkylä residents’ park!"
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora/auroran-kesakiertue-siskot-ja-kuusi-sirkusesitys-ja-tyopaja-valkky-ja-play-cafe",
                "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora/auroras-sommarturne-systrarna-och-granen-cirkusforestallning-och-workshop-valkky",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora/auroras-summer-tour-circus-performance-siskot-ja-kuusi-workshop-mobile-library-valkky"
            },
            "description": {
                "fi": "<p>Auroran kesäkiertue kurvaa Matinkylän asukaspuistoon 17.6. Katso alta muut tapahtumapaikat.</p><p>Tapahtumapäivä pitää sisällään:<br>Klo 10-10.30\t  Siskot ja kuusi -sirkusesitys, lämminhenkinen ja wow-elämyksellinen sanaton tarina<br>Klo 11-12\t         Non-stop sirkustyöpaja<br>Klo 9.30-12\tKirjaston elämysauto Välkky avoinna, tarvittaessa pidempäänkin.</p><p><br>”Siskot ja kuusi” on kaikenikäisten lämminhenkinen nykysirkusesitys sisarusrakkaudesta, sirkuksesta ja erilaisuudesta. Ilmassa ja maassa tehty akrobatia hämmästyttävät, äänimaisema lumoaa ja väärinkäsityskommellukset naurattavat. Sanaton esitys kuvaa kahden sisaruksen kasvutarinaa ja tarjoaa samalla kauniita oivalluksia ihmissuhteista. Lue lisää: saanaleppanen.com/siskot-ja-kuusi<br>  <br>Ohjaus: Saana Leppänen ja Liina Leppänen<br>Esiintyjät: Saana Leppänen ja Nelma Pietala<br>Sävellys: Thibaud Rancoeur<br>Sanaton<br>Kesto 30 min<br>Vapaa pääsy</p><p><br>Saana Leppänen ja Nelma Pietala ohjaavat myös sirkustyöpajan, jossa pääset kokeilemaan hulavanteita, jongleerausta sekä maa- ja ilma-akrobatiaa! Työpaja ei ole suunnattu päivähoitoryhmille rajallisen osallistujakapasiteetin vuoksi.</p><p><br>Kirjaston elämysauto Välkystä löydät elämyksien lisäksi tapahtuman teemaan sopivaa luettavaa, ja voit myös lainata kirjoja kotiin helmet-kirjastokortilla. </p><p><br>Koko kiertue:<br>Ma 10.6.\tSuvelan asukaspuisto <br>Ke 12.6.\t        Pisan asukaspuisto <br>To 13.6.\t        Soukan asukaspuisto <br>Pe 14.6.\t        Hiirisuon asukaspuisto <br>Ma 17.6.\t        Matinkylän asukaspuisto <br>Ke 19.6. \tLasten kulttuurikeskus Auroran piha </p><p>Säävaraus: Tapahtuma toteutuu tihkusateella, mutta siirtyy, jos sataa enemmän. Mahdollisista muutoksista tiedotetaan tapahtuman facebook-sivulla klo 9.15 mennessä kunakin tapahtumapäivänä.  Facebook-sivu: https://www.facebook.com/events/978446637104935/978460283770237/</p><p>Päiväkodit 2024</p>",
                "sv": "<p>Evenemangsdagen omfattar:</p><p>Kl. 10–10.30 Cirkusföreställningen Systrarna och granen, en varm wow-upplevelse utan ord<br>Kl. 11–12 Non-stop cirkusworkshop<br>Kl. 9.30–12 Bibliotekets allaktivitetsbuss Välkky är öppen, vid behov längre.</p><p>Fritt inträde</p><p>”Systrarna och granen” (Siskot ja kuusi) är varm, nutidscirkus för ung och gammal om syskonkärlek, cirkus och olikhet. Hisnande akrobatik i luften och på marken, förtrollande ljudlandskap och skrattretande malörer. Den ordlösa föreställningen handlar om två syskons uppväxt och ger vackra insikter i mänskliga relationer. Läs mer: saanaleppanen.com/siskot-ja-kuusi</p><p>Ordlös föreställning<br>Längd 30 min<br>Regissörer: Saana Leppänen och Liina Leppänen <br>Artister: Saana Leppänen och Nelma Pietala<br>Musik: Thibaud Rancoeur <br>Produktion: Sirkus Aikamoinen </p><p>Saana Leppänen och Nelma Pietala leder en cirkusworkshop, där du kan pröva på tunnband, jonglering samt akrobatik på marken och i luften! Workshoppen riktar sig inte till dagvårdsgrupper på grund av begränsat deltagarantal.</p><p>I bibliotekets allaktivitetsbuss Välkky bjuds det förutom upplevelser också på litteratur för evenemangets tema, och med bibliotekskortet kan man låna böcker hem. </p><p>Hela turné:</p><p>Måndag 10.6\tSödriks invånarpark <br>Onsdag 12.6\t        Bisa aktivitetspark <br>Torsdag 13.6\tSökö invånarpark <br>Fredag 14.6\t        Mössenkärrs invånarpark <br>Måndag 17.6\t        Mattby aktivitetspark <br>Onsdag 19.6 \tBarnkulturcentret Auroras gård </p><p>Om vädret tillåter: Evenemanget kommer att äga rum med duggregn, men kommer att skjutas upp om det regnar mer. Eventuella ändringar meddelas på evenemangets Facebook-sida senast kl. 9.15 varje evenemangsdag. Facebook-sidan: https://www.facebook.com/events/978446637104935/978460283770237/</p>",
                "en": "<p>Aurora's summer tour arrives to Matinkylä's residents' park on 17th of June.  See the other places and dates of the tour underneath.</p><p>The event includes:<br>10.00–10.30\tCircus performance Siskot ja kuusi, a warm and experience-oriented speechless story<br>11.00–12.00\tNon-stop circus workshop<br>9.30–12.00\tMobile library Välkky is open, even later if needed</p><p>Free admission<br> <br>”Siskot ja kuusi” is a warm-hearted modern circus performance about siblings, circus and being different. Acrobatics performed both on the ground and in the air are sure to amaze while the soundscape sets the atmosphere and the misunderstandings in the story make the audience laugh. This speechless performance is the coming-of-age story of two siblings that offers beautiful insights into relationships. <br>  <br>Speechless<br>Duration 30 min<br>Performers and director: Saana Leppänen and Liina Leppänen <br>Music: Thibaud Rancoeur <br>Production: Sirkus Aikamoinen <br>Photo: Jussi Sirviö </p><p>Saana and Liina Leppänen will also direct a circus workshop where you can try out hula hoops, juggling and acrobatics (both on the ground and in the air)! The workshop is not suitable for daycare groups due to the limited capacity for participants.</p><p>The mobile library Välkky has both fun experiences and reading material matching the theme of the event, and you can also borrow and take home books with your Helmet library card. </p><p><br>Dates and places of the whole tour:<br>Mon 10 June\tSuvela residents’ park <br>Wed 12 June\tPisa residents’ park <br>Thu 13 June\t        Soukka residents’ park <br>Fri 14 June\t        Hiirisuo residents’ park <br>Mon 17 June  \tMatinkylä residents’ park <br>Wed 19 June \tChildren’s Cultural Centre Aurora (yard area) </p><p>Weather permitting: the event takes place with drizzle, but is postponed if it rains more. Any changes will be announced on the event's Facebook page by 9.15 a.m. on each event day. Facebook event: https://www.facebook.com/events/978446637104935/978460283770237/</p><p>Organisers: Children’s Cultural Centre Aurora, Espoonlahti cultural services, Espoo City Library </p>"
            },
            "name": {
                "fi": "Auroran kesäkiertue - Siskot ja kuusi -sirkusesitys ja työpaja sekä Välkky",
                "sv": "Auroras sommarturné: Systrarna och granen - cirkusföreställning och workshop & Välkky ",
                "en": "Aurora’s summer tour - Circus performance “Siskot ja kuusi”, workshop & Mobile library Välkky "
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuripalvelut ja Espoon kaupunginkirjasto",
                "sv": "Barnkulturcentret Aurora, kulturtjänsterna i Esboviken, Esbo stadsbibliotek",
                "en": "Children’s Cultural Centre Aurora, Espoonlahti cultural services, Espoo City Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghydrqp64/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghydrqpza",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:64122",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:23:13.536899Z",
                "last_modified_time": "2025-12-15T10:10:05.529953Z",
                "custom_data": null,
                "email": "hiirisuon.asukaspuisto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02970",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 17,
                "image": 10342,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.738466,
                        60.30256
                    ]
                },
                "telephone": {
                    "fi": "+358 43 825 4192"
                },
                "street_address": {
                    "fi": "Pohjoisentie 1",
                    "sv": "Norrmarksvägen 1",
                    "en": "Pohjoisentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Hiirisuon asukaspuisto sijaitsee Pohjois-Espoossa Kalajärvellä. Se on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville aikuisille. Asukaspuisto on myös pienen omatoimisen koululaisen vapaa-ajanviettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Puistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Asukaspuiston toiminta on maksutonta. Toimintamme perustuu vapaalle mukavalle yhdessäololle ja puistossa on mahdollisuus kokeilla yhdessä lapsen kanssa kädentaitoja, musiikkia, liikuntaa jne. Toiminnan sisältöön saa esittää toiveita ja niiden toteutukseen pääsee mukaan. Lämpimästi tervetuloa meille leikkimään ja tapaamaan muita lapsia ja aikuisia. Jokainen päivä on hyvä päivä puistossa vierailuun!",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto"
                },
                "name": {
                    "fi": "Hiirisuon asukaspuisto",
                    "sv": "Mössenkärrs invånarpark",
                    "en": "Hiirisuo residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66dy",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.069264Z",
                    "last_modified_time": "2023-12-13T11:20:12.069291Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 169,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kalajärvi",
                        "sv": "Kalajärvi",
                        "en": "Kalajärvi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67rm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.433142Z",
                    "last_modified_time": "2023-12-13T11:20:12.433163Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 113,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Lahnus",
                        "sv": "Lahnus",
                        "en": "Lahnus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67ya",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.485958Z",
                    "last_modified_time": "2023-12-13T11:20:12.485999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 130,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Luukki",
                        "sv": "Luk",
                        "en": "Luukki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1942,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/978446637104935/978460283770237/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-05-16T13:54:07.427857Z",
            "last_modified_time": "2024-06-05T06:32:49.509175Z",
            "date_published": null,
            "start_time": "2024-06-14T06:30:00Z",
            "end_time": "2024-06-14T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Sanaton sirkusesitys, -työpaja ja kirjaston elämysauto Välkky – tervetuloa vapaapääsyiseen lasten aamupäivään Hiirisuon asukaspuistoon!",
                "sv": "Ordlös föreställning, workshop och biblioteksbil – välkommen till förmiddag för barnen på Mössenkärrs invånarparken! Fritt inträde.",
                "en": "A speechless performance, workshop and mobile library– welcome to a free children’s morning event at Hiirisuo's residents' park!"
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora/auroran-kesakiertue-siskot-ja-kuusi-sirkusesitys-ja-tyopaja-valkky-ja-play-cafe",
                "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora/auroras-sommarturne-systrarna-och-granen-cirkusforestallning-och-workshop-valkky",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora/auroras-summer-tour-circus-performance-siskot-ja-kuusi-workshop-mobile-library-valkky"
            },
            "description": {
                "fi": "<p>Auroran kesäkiertue kurvaa Hiirisuon asukaspuistoon 14.6. Katso alta muut tapahtumapaikat.</p><p>Tapahtumapäivä pitää sisällään:<br>Klo 10-10.30\t  Siskot ja kuusi -sirkusesitys, lämminhenkinen ja wow-elämyksellinen sanaton tarina<br>Klo 11-12\t         Non-stop sirkustyöpaja<br>Klo 9.30-12\tKirjaston elämysauto Välkky avoinna, tarvittaessa pidempäänkin.</p><p><br>”Siskot ja kuusi” on kaikenikäisten lämminhenkinen nykysirkusesitys sisarusrakkaudesta, sirkuksesta ja erilaisuudesta. Ilmassa ja maassa tehty akrobatia hämmästyttävät, äänimaisema lumoaa ja väärinkäsityskommellukset naurattavat. Sanaton esitys kuvaa kahden sisaruksen kasvutarinaa ja tarjoaa samalla kauniita oivalluksia ihmissuhteista. Lue lisää: saanaleppanen.com/siskot-ja-kuusi<br>  <br>Ohjaus: Saana Leppänen ja Liina Leppänen<br>Esiintyjät: Saana Leppänen ja Nelma Pietala<br>Sävellys: Thibaud Rancoeur<br>Sanaton<br>Kesto 30 min<br>Vapaa pääsy</p><p><br>Saana Leppänen ja Nelma Pietala ohjaavat myös sirkustyöpajan, jossa pääset kokeilemaan hulavanteita, jongleerausta sekä maa- ja ilma-akrobatiaa! Työpaja ei ole suunnattu päivähoitoryhmille rajallisen osallistujakapasiteetin vuoksi.</p><p><br>Kirjaston elämysauto Välkystä löydät elämyksien lisäksi tapahtuman teemaan sopivaa luettavaa, ja voit myös lainata kirjoja kotiin helmet-kirjastokortilla. </p><p><br>Koko kiertue:<br>Ma 10.6.\tSuvelan asukaspuisto <br>Ke 12.6.\t        Pisan asukaspuisto <br>To 13.6.\t        Soukan asukaspuisto <br>Pe 14.6.\t        Hiirisuon asukaspuisto <br>Ma 17.6.\t        Matinkylän asukaspuisto <br>Ke 19.6. \tLasten kulttuurikeskus Auroran piha </p><p>Säävaraus: Tapahtuma toteutuu tihkusateella, mutta siirtyy, jos sataa enemmän. Mahdollisista muutoksista tiedotetaan tapahtuman facebook-sivulla klo 9.15 mennessä kunakin tapahtumapäivänä.  Facebook-sivu: https://www.facebook.com/events/978446637104935/978460283770237/</p><p>Päiväkodit 2024</p>",
                "sv": "<p>Evenemangsdagen omfattar:</p><p>Kl. 10–10.30 Cirkusföreställningen Systrarna och granen, en varm wow-upplevelse utan ord<br>Kl. 11–12 Non-stop cirkusworkshop<br>Kl. 9.30–12 Bibliotekets allaktivitetsbuss Välkky är öppen, vid behov längre.</p><p>Fritt inträde</p><p>”Systrarna och granen” (Siskot ja kuusi) är varm, nutidscirkus för ung och gammal om syskonkärlek, cirkus och olikhet. Hisnande akrobatik i luften och på marken, förtrollande ljudlandskap och skrattretande malörer. Den ordlösa föreställningen handlar om två syskons uppväxt och ger vackra insikter i mänskliga relationer. Läs mer: saanaleppanen.com/siskot-ja-kuusi</p><p>Ordlös föreställning<br>Längd 30 min<br>Regissörer: Saana Leppänen och Liina Leppänen <br>Artister: Saana Leppänen och Nelma Pietala<br>Musik: Thibaud Rancoeur <br>Produktion: Sirkus Aikamoinen </p><p>Saana Leppänen och Nelma Pietala leder en cirkusworkshop, där du kan pröva på tunnband, jonglering samt akrobatik på marken och i luften! Workshoppen riktar sig inte till dagvårdsgrupper på grund av begränsat deltagarantal.</p><p>I bibliotekets allaktivitetsbuss Välkky bjuds det förutom upplevelser också på litteratur för evenemangets tema, och med bibliotekskortet kan man låna böcker hem. </p><p>Hela turné:</p><p>Måndag 10.6\tSödriks invånarpark <br>Onsdag 12.6\t        Bisa aktivitetspark <br>Torsdag 13.6\tSökö invånarpark <br>Fredag 14.6\t        Mössenkärrs invånarpark <br>Måndag 17.6\t        Mattby aktivitetspark <br>Onsdag 19.6 \tBarnkulturcentret Auroras gård </p><p>Om vädret tillåter: Evenemanget kommer att äga rum med duggregn, men kommer att skjutas upp om det regnar mer. Eventuella ändringar meddelas på evenemangets Facebook-sida senast kl. 9.15 varje evenemangsdag. Facebook-sidan: https://www.facebook.com/events/978446637104935/978460283770237/</p>",
                "en": "<p>Aurora's summer tour arrives to Hiirisuo's residents' park on 14th of June.  See the other places and dates of the tour underneath.</p><p>The event includes:<br>10.00–10.30\tCircus performance Siskot ja kuusi, a warm and experience-oriented speechless story<br>11.00–12.00\tNon-stop circus workshop<br>9.30–12.00\tMobile library Välkky is open, even later if needed</p><p>Free admission<br> <br>”Siskot ja kuusi” is a warm-hearted modern circus performance about siblings, circus and being different. Acrobatics performed both on the ground and in the air are sure to amaze while the soundscape sets the atmosphere and the misunderstandings in the story make the audience laugh. This speechless performance is the coming-of-age story of two siblings that offers beautiful insights into relationships. <br>  <br>Speechless<br>Duration 30 min<br>Performers and director: Saana Leppänen and Liina Leppänen <br>Music: Thibaud Rancoeur <br>Production: Sirkus Aikamoinen <br>Photo: Jussi Sirviö </p><p>Saana and Liina Leppänen will also direct a circus workshop where you can try out hula hoops, juggling and acrobatics (both on the ground and in the air)! The workshop is not suitable for daycare groups due to the limited capacity for participants.</p><p>The mobile library Välkky has both fun experiences and reading material matching the theme of the event, and you can also borrow and take home books with your Helmet library card. </p><p><br>Dates and places of the whole tour:<br>Mon 10 June\tSuvela residents’ park <br>Wed 12 June\tPisa residents’ park <br>Thu 13 June\t        Soukka residents’ park <br>Fri 14 June\t        Hiirisuo residents’ park <br>Mon 17 June  \tMatinkylä residents’ park <br>Wed 19 June \tChildren’s Cultural Centre Aurora (yard area) </p><p>Weather permitting: the event takes place with drizzle, but is postponed if it rains more. Any changes will be announced on the event's Facebook page by 9.15 a.m. on each event day. Facebook event: https://www.facebook.com/events/978446637104935/978460283770237/</p><p>Organisers: Children’s Cultural Centre Aurora, Espoonlahti cultural services, Espoo City Library <br></p>"
            },
            "name": {
                "fi": "Auroran kesäkiertue - Siskot ja kuusi -sirkusesitys ja työpaja sekä Välkky",
                "sv": "Auroras sommarturné: Systrarna och granen - cirkusföreställning och workshop & Välkky ",
                "en": "Aurora’s summer tour - Circus performance “Siskot ja kuusi”, workshop & Mobile library Välkky "
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuripalvelut ja Espoon kaupunginkirjasto",
                "sv": "Barnkulturcentret Aurora, kulturtjänsterna i Esboviken, Esbo stadsbibliotek",
                "en": "Children’s Cultural Centre Aurora, Espoonlahti cultural services, Espoo City Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghydrqpza/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61180",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7258",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.221655Z",
                "last_modified_time": "2024-02-06T13:09:51.033692Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 575,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.947306,
                        60.16663
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 36563"
                },
                "street_address": {
                    "fi": "Kasarmikatu 46-48",
                    "sv": "Kaserngatan 46-48",
                    "en": "Kasarmikatu 46-48"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.savoyteatteri.fi/",
                    "sv": "http://www.savoyteatteri.fi/",
                    "en": "http://www.savoyteatteri.fi/"
                },
                "description": null,
                "name": {
                    "fi": "Savoy-teatteri",
                    "sv": "Savoy-teatern",
                    "en": "Savoy Theatre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:33",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.509726Z",
                    "last_modified_time": "2024-02-06T13:19:13.839978Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 761,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:351",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.568885Z",
                    "last_modified_time": "2024-02-06T13:19:15.244248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 652,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri ja sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:49",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.697675Z",
                    "last_modified_time": "2024-02-06T13:19:14.132899Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 575,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Savoy-teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1942,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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-3514818"
                    },
                    "description": null,
                    "price": {
                        "fi": "38,50/75 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5581,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-21T14:15:02.145220Z",
                    "last_modified_time": "2024-02-06T13:23:31.598651Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738365.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5581/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-21T14:15:02.117343Z",
            "last_modified_time": "2024-06-04T18:12:40.150270Z",
            "date_published": null,
            "start_time": "2024-04-05T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Venäjänkielinen näytelmä"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6D3DE3BAA73A58C1ADCCF2950F31D9D8/Alexander_Filippenko_-_Tekijan_vangitsema"
            },
            "description": {
                "fi": "<p>Venäjänkielinen näytelmä</p><p>У автора в плену.</p><p>Ikäsuositus: K-12</p><p>Kesto n. 1,5 h, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>",
                "ru": "<p>Название моноспектакля Александра Филиппенко отсылает нас к последней строчке знаменитого стихотворения Бориса Пастернака «... ты вечности заложник, у времени в плену».</p><p>Это неслучайно... В спектакль вошли тексты Михаила Зощенко, Аркадия Аверченко, Василия Аксенова, Михаила Жванецкого, Владимира Высоцкого, Сергея Довлатова, Булата Окуджавы и Юрия Левитанского – это целая эпоха, история страны в деталях и мелких бытовых подробностях, которые лучше, чем что бы то ни было, характеризуют ее.</p><p>Александр Филиппенко работал в театрах:  «Сатирикон», «Табакерка», «Практика», «Современник», театре «Школа Драматического Искусства», «Гоголь-центр», имени Моссовета.      <br>                                                                                                                                                                                                                                           <br>С 1990-х годов Александр Филиппенко создает собственные моноспектакли: «Смех отцов», «Демарш энтузиастов», «Трибьют», «У автора в плену» и другие.</p><p>Эти законченные литературно-музыкальные произведения, где звучат прекрасные классические тексты и много музыки.</p><p>Если у великолепного актера Александра Филиппенко и есть какая-то миссия на этой земле, то, наверное, это возможность доказать, что Эстрада – это высокая театральная трибуна для общения с умным и внимательным зрителем.</p><p>В спектакле «У автора в плену» использованы некоторые яркие фрагменты фильмов с участием Александра Филиппенко, которые он прокомментирует и вспомнит своих партнеров и режиссеров.</p><p>В спектакле звучит много музыки, много прекрасных стихов и прозы.</p><p>Недаром сам Филиппенко называет себя \"переводчиком с авторского на зрительский\".                                                                                                                                                                           И мы посмотрим кто у кого окажется «в плену»,-  Филиппенко в плену у своих авторов или мы в плену у таланта и обаяния Александра Филиппенко!</p>"
            },
            "name": {
                "fi": "Alexander Filippenko - Tekijän vangitsema"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "General Bass"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61180/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63416",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7254",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.860628Z",
                "last_modified_time": "2025-03-27T09:09:26.669262Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 862,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.annantalo.fi/",
                    "sv": "https://www.annantalo.fi/sv/framsidan",
                    "en": "https://www.annantalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.",
                    "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.",
                    "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture."
                },
                "name": {
                    "fi": "Annantalo",
                    "sv": "Annegården",
                    "en": "Annantalo Arts Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:46",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.650020Z",
                    "last_modified_time": "2024-02-06T13:19:14.062702Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 712,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Annantalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:52",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.738883Z",
                    "last_modified_time": "2024-02-06T13:19:14.199532Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 618,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4819,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5022,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39492",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "LAN-events",
                        "local area network parties",
                        "LAN-tapahtumat",
                        "lanit",
                        "verkkopelitapahtumat",
                        "LAN-evenemang"
                    ],
                    "created_time": "2023-08-16T05:11:48.242998Z",
                    "last_modified_time": "2023-08-16T05:11:48.243015Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 673,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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": 150675,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-18T10:13:04.290064Z",
                    "last_modified_time": "2024-04-18T10:13:04.290077Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746055.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150675/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-18T10:13:04.270245Z",
            "last_modified_time": "2024-06-04T14:12:50.291174Z",
            "date_published": null,
            "start_time": "2024-06-05T07:00:00Z",
            "end_time": "2024-06-05T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa juhlistamaan kesää ja Annantalon kesätoimintaa Annantalon pihalle!",
                "sv": "Välkommen att fira sommaren och Annegårdens sommarverksamhet på gården till Annegården!",
                "en": "Join us in celebrating the beginning of summer and Annantalo’s summer activities in the Art Centre’s yard!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9AA0FA670D726BBD9536F2A6EBB2DAA0/Kesakauden_avajaiset",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9AA0FA670D726BBD9536F2A6EBB2DAA0/Invigning_av_Annegardens_sommarsasong",
                "en": "http://www.annantalo.fi/en/events/event/9AA0FA670D726BBD9536F2A6EBB2DAA0/Opening_celebration_of_the_Annantalo_summer_season"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan kesää ja Annantalon kesätoimintaa Annantalon pihalle!</p><p>Ohjelmassa kesänavausseremonia, avoimia työpajoja ja näyttelyopastuksia!</p><p><b>Ke 5.6. Klo 10-12<br>Annantalon etupihalla</p><p>Klo 10 kesänavaus</b><br>Puhe Pirjetta Mulari, Annantalon johtaja<br>Musiikkiesitys Jukka Kääriäinen, Annantalon kesätaiteilija<br>Popcorntarjoilu!</p><p><b>Avoin näyttelyopastus Liikkuva laboratorio -näyttelyyn </b><br>Klo 10.30-11.00<br>Klo 11.15-11.45<br>Tervetuloa tutustumaan liikkeessä olevan taiteen näyttelyyn Annantalolle yhdessä näyttelyopas I+Q:n sekä laboratorion vahtimestari B-Ö:n kanssa.</p><p><b>Non-stop -työpajat:</b></p><p><b>Hyönteiselämää</b><br>A-lava, Annantalon takapihalla<br>klo 10-12 ja 13-15</p><p>Bzzz.. Millainen hyönteinen sinä olisit? Pajassa valmistetaan päälle puettavia hyönteisen osia. Omaa hyönteishahmoaan pääsee täydentämään Annantalon puvuston aarteita hyödyntäen. Kun oma hahmo on valmis, se voi seikkailla Annantalon pihalla tai sateen sattuessa tutkia sisällä talomme sopukoita.<br>Alle 8-vuotiaille aikuisen kanssa.</p><p><b>Superluonto</b><br>Annantalon juhlasali<br>klo 10-12 ja 13-15</p><p>Voiko hyönteisellä olla robotin jalat? Tai koneen kädet? Työpajassa rakennetaan tulevaisuuden ötököitä! Toimintaa ohjaajaa taiteilija Christelle Mas, jonka näyttely on koettavissa Annantalon 2. kerroksen lasigalleriassa.<br>Alle 8-vuotiaille aikuisen kanssa.</p><p><b>Vieraile kesätaiteilijan ateljeella</b><br>Annantalon kesätaiteilija on kitaristi, säveltäjä, musiikin monitaituri ja pedagogi Jukka Kääriäinen. Kesän aikana Jukka luo ääniteoksen Annantalon kävijöiden unelmista ja toiveista.<br>Tule kertomaan toiveesi! Voit puhua, laulaa, piirtää tai kirjoittaa.</p><p>Annantalon etupihalla myös nuorille ohjelmaa:<br><b>Katutaide meets Annantalo</b><br>klo 10-16<br>Katutaide rantautuu Annantalon pihalle kesällä 2024! Tervetuloa tutustumaan katutaidekonttiin ja osallistumaan työpajoihin. Toimintaa järjestetään arkipäivinä.<br>Työpajoissa maalataan, piirretään, ja pidetään hauskaa! Tänä kesänä Annantalon pihalla katutaidetta voi tehdä myös tuftaten.<br>Työpajat ovat avoimia ja maksuttomia kaikille nuorille.<br>Osallistumiseen ei tarvita ennakko-osaamista.<br>Työpaja 13-21 vuotiaille.</p>",
                "sv": "<p>Välkommen att fira sommaren och Annegårdens sommarverksamhet på gården till Annegården!</p><p>Programmet inkluderar en öppningsceremoni, workshoppar och guidningar till utställningar.</p>",
                "en": "<p>Join us in celebrating the beginning of summer and Annantalo’s summer activities in the Art Centre’s yard!</p><p>The programme includes the opening ceremony, workshops, and guided tours to the exhibitions.</p>"
            },
            "name": {
                "fi": "Kesäkauden avajaiset",
                "sv": "Invigning av Annegårdens sommarsäsong",
                "en": "Opening celebration of the Annantalo summer season"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63416/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agh6hdkm64",
            "has_user_editable_resources": true,
            "location": {
                "id": "tprek:15417",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:19.044131Z",
                "last_modified_time": "2025-01-31T06:09:29.808662Z",
                "custom_data": null,
                "email": "sellonkirjasto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02600",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 4952,
                "image": 180919,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.80934,
                        60.217506
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7603"
                },
                "street_address": {
                    "fi": "Leppävaarankatu 9",
                    "sv": "Albergagatan 9",
                    "en": "Leppävaarankatu 9"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925"
                },
                "description": null,
                "name": {
                    "fi": "Sellon kirjasto",
                    "sv": "Sellobiblioteket",
                    "en": "Sello Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "yso:p1235",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "motion pictures",
                        "movies",
                        "spelfilmer",
                        "elokuvateokset",
                        "filmverk",
                        "film works"
                    ],
                    "created_time": "2023-08-16T05:19:47.298032Z",
                    "last_modified_time": "2023-08-16T05:19:47.298049Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1715,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvat",
                        "sv": "filmer",
                        "en": "films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/91/?format=api"
            },
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [
                        {
                            "id": 1,
                            "price_group": {
                                "id": 1,
                                "description": {
                                    "fi": "Aikuinen",
                                    "sv": "Vuxen",
                                    "en": "Adult"
                                }
                            },
                            "price": "1.00",
                            "vat_percentage": "25.50",
                            "price_without_vat": "0.80",
                            "vat": "0.20"
                        }
                    ],
                    "info_url": {
                        "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/91/signup-group/create",
                        "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/91/signup-group/create",
                        "en": "https://linkedregistrations.test.hel.ninja/en/registration/91/signup-group/create"
                    },
                    "description": {
                        "fi": ""
                    },
                    "price": {
                        "fi": "1"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-04T14:00:39.462558Z",
            "last_modified_time": "2024-06-04T14:00:39.462578Z",
            "date_published": null,
            "start_time": "2024-01-01T10:00:00Z",
            "end_time": "2025-01-01T10: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": "2024-01-01T12:00:00+02:00",
            "enrolment_end_time": "2025-01-01T09:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Maksullisen tapahtuman ilmoittautumisen testaaminen"
            },
            "info_url": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Maksullisen tapahtuman ilmoittautumisen testaaminen</p>"
            },
            "name": {
                "fi": "Maksullisen tapahtuman ilmoittautumisen testaaminen"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agh6hdkm64/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghxv2iezi",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p10727",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kansalaisaktivismi",
                        "kansalaisosallistuminen",
                        "kansalaisten osallistuminen",
                        "medborgaraktivism",
                        "medborgardeltagande",
                        "engagemang",
                        "medborgarinflytande"
                    ],
                    "created_time": "2023-08-16T05:18:07.639076Z",
                    "last_modified_time": "2023-08-16T05:18:07.639094Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1714,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "osallistuminen",
                        "sv": "deltagande",
                        "en": "participation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-15T06:05:20.101286Z",
            "last_modified_time": "2024-06-04T13:22:24.328688Z",
            "date_published": "2024-05-15T06:05:35.117000Z",
            "start_time": "2024-06-28T10:00:00Z",
            "end_time": "2024-06-28T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa taiteilemaan kukkakoristeita ja kimppuja!\nTapahtuma on maksuton ja sopii kaikenikäisille, \nlapset taiteilevat yhdessä aikuisen kanssa.",
                "sv": "Välkommen att skapa blomdekorationer och buketter! Evenemanget är gratis och passar alla åldrar.",
                "en": "Welcome to create flower decorations and bouquets! The event is free of charge and suitable for all ages."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kukkatapahtuma: Väriloistoa kukista!</p><p>Juhlitaan Pride-viikkoa yhdessä! Tervetuloa nappaamaan iloa kesän värikkäistä kukista!</p><p>Tervetuloa taiteilemaan kukkakoristeita ja kimppuja! Ihana kukkabuffet tarjoilee värikkäitä leikkokukkia, kesän vihreää ja ripauksen kimalletta. Kukkakoristeen voit loihtia tulevaan Pride-kulkueeseen hiuksia tai vaatteita koristamaan! </p><p>Ilahduta kukilla itseäsi tai anna lahjaksi ystävälle! Tapahtumassa hyödynnetään hävikkikukkia saatavuuden mukaan.</p><p>Sopii kaikenikäisille, lapset taiteilevat yhdessä aikuisen kanssa!</p><p>Tapahtuma on maksuton ja kaikille avoin. Tapahtuman järjestää Espoon kulttuuritalot - ja palvelut / Espoonlahden kulttuurihanke, Hupsansaa ry ja Lippulaivan kirjasto.</p><p>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2024.</p>",
                "sv": "<p>Fira Pride-veckan tillsammans med oss!</p><p>Välkommen att skapa blomdekorationer och buketter! Den härliga blomsterbuffén erbjuder färgglada snittblommor, sommarens grönska och lite glitter. </p><p>Gläd dig själv med blommor eller ge dem som gåva till en vän! På evenemanget används överblivna blommor när de finns tillgängliga.</p><p>Evenemanget är gratis och öppet för alla. Det arrangeras av serviceområdet för kulturhus och kulturtjänster i Esbo / Esbovikens kulturprojekt, Hupsansaa rf och Lippulaiva bibliotek.</p><p>Tapahtuman järjestää Espoon kulttuuritalot - ja palvelut / Espoonlahden kulttuurihanke, Hupsansaa ry ja Lippulaivan kirjasto.</p><p>Esbo stad är en Working With Pride-partner till Helsinki Pride 2024.</p><p>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2024.</p>",
                "en": "<p>Celebrate Pride Week with us! </p><p>Join us to create flower decorations and bouquets! The delightful flower buffet offers colorful cut flowers, summer greenery, and a touch of glitter.</p><p>Brighten your day with flowers or give them as a gift to a friend! The event uses leftover flowers when available.</p><p>The event is free and open to everyone. It is organized by Espoo’s Cultural Venues and Services / Espoonlahti Cultural Project, Hupsansaa Association, and Lippulaiva Library.</p><p>Tapahtuman järjestää Espoon kulttuuritalot - ja palvelut / Espoonlahden kulttuurihanke, Hupsansaa ry ja Lippulaivan kirjasto.</p><p>The City of Espoo is a Helsinki Pride 2024 Working With Pride partner.</p><p>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2024.</p>"
            },
            "name": {
                "fi": "Väriloistoa kukista!",
                "sv": "Väriloistoa kukista!",
                "en": "Väriloistoa kukista!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Espoon kulttuuritalot - ja palvelut / Espoonlahden kulttuurihanke, Hupsansaa ry ja Lippulaivan kirjasto",
                "sv": "Serviceområdet för kulturhus och kulturtjänster i Esbo / Esbovikens kulturprojekt, Hupsansaa rf och Lippulaiva bibliotek",
                "en": "Espoo’s Cultural Venues and Services / Espoonlahti Cultural Project, Hupsansaa Association, and Lippulaiva Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghxv2iezi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghydrqqb4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:20355",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:52.089087Z",
                "last_modified_time": "2025-10-23T13:09:20.407614Z",
                "custom_data": null,
                "email": "soukka.asukaspuisto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02360",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 2,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.668879,
                        60.139694
                    ]
                },
                "telephone": {
                    "fi": "+358 46 877 1629"
                },
                "street_address": {
                    "fi": "Soukankaari 10",
                    "sv": "Sökösvängen 10",
                    "en": "Soukankaari 10"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/soukan-asukaspuisto",
                    "sv": "https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/soukan-asukaspuisto",
                    "en": "https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/soukan-asukaspuisto"
                },
                "description": {
                    "fi": "Soukan asukaspuisto sijaitsee vehreässä ympäristössä Soukan koulun vieressä, kävelymatkan päässä metroasemalta. Puistoa ympäröivät metsä, nurmialueet ja pieni puro. Siksi puistosta käytetäänkin usein nimitystä Puropuisto. Puisto on toiminut alueen lapsiperheiden kohtaamispaikkana jo vuodesta 1979. Asukaspuisto tarjoaa lapsille ja perheille viihtyisän ja yhteisöllisen tilan, jossa voi leikkiä, tutustua muihin ja osallistua monipuoliseen toimintaan. Puistossa voi viettää aikaa yhdessä, jakaa arjen iloja ja haasteita, ja löytää seuraa samassa elämäntilanteessa olevista perheistä. Aamupäivisin järjestämme puistossa sekä omatoimista että ohjattua toimintaa sisällä ja ulkona. Ohjelmassa voi olla esimerkiksi musiikkihetkiä, taapero- ja vauva-aamuja, kädentaitoja, kuvasuunnistuksia, leikkejä ja liikuntaratoja. Alle kouluikäiset lapset osallistuvat toimintaan aina oman huoltajan tai muun heitä hoitavan aikuisen seurassa. Puiston pihalla riittää tekemistä kaikenikäisille. Pihalta löytyy mm. köysikiipeilyteline, pienempi kiipeilyteline, iso hämähäkkikeinu, tavalliset keinut ja koripallokori. Puistosta löytyy asfaltoitu ajorata puiston pyörille, frisbeegolf-koreja ja palloseinä. Lisäksi puron vieressä on keinuva leikkilaiva. Puiston iso nurmialue kutsuu temmeltämään. Pihalla on erillinen, kokonaan aidattu pienten puoli, josta löytyy kaksi liukumäkeä, keinuja ja hiekkalaatikko. Puiston hiekkalelut ovat käytössä aukioloaikoina. Eväshetkiä varten pihalta löytyy myös penkkejä ja pöytiä. Suuren pihan lisäksi puiston sisätilat ovat asiakkaiden käytössä. Sisältä meiltä löytyy iso leikkisali ja pienempi leikkihuone sekä runsaasti leluja eri ikäisille lapsille. Askartelutarvikkeita ja kirjoja on myös saatavilla. Keittiössä voi syödä ja lämmittää omia eväitä, ja käytössä on astioita, syöttötuoleja ja mikroaaltouuni. Toinen asiakkaiden käytössä oleva mikro löytyy puiston eteisestä. Asiakkaille on kaksi wc-tilaa, joissa on potat ja toisessa taitettava hoitopöytä. Asukaspuiston toiminta on maksutonta, eikä siihen tarvitse erikseen ilmoittautua. Tervetuloa viettämään mukavaa päivää Soukan asukaspuistoon!",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/soukan-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/soukan-asukaspuisto"
                },
                "name": {
                    "fi": "Soukan asukaspuisto",
                    "sv": "Sökö invånarpark",
                    "en": "Soukka residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20355/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.109319Z",
                    "last_modified_time": "2023-12-13T11:20:12.109338Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 401,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Nöykkiö",
                        "sv": "Nöykis",
                        "en": "Nöykkiö"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67wm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.473201Z",
                    "last_modified_time": "2023-12-13T11:20:12.473221Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 115,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Latokaski",
                        "sv": "Ladusved",
                        "en": "Latokaski"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1942,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/978446637104935/978460283770237/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-05-16T13:52:36.104859Z",
            "last_modified_time": "2024-06-04T09:58:48.820843Z",
            "date_published": null,
            "start_time": "2024-06-13T06:30:00Z",
            "end_time": "2024-06-13T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Sanaton sirkusesitys, -työpaja ja kirjaston elämysauto Välkky – tervetuloa vapaapääsyiseen lasten aamupäivään Soukan asukaspuistoon!",
                "sv": "Ordlös föreställning, workshop och biblioteksbil – välkommen till förmiddag för barnen på Sökö invånarparken! Fritt inträde.",
                "en": "A speechless performance, workshop and mobile library– welcome to a free children’s morning event at Soukka residents’ park!"
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora/auroran-kesakiertue-siskot-ja-kuusi-sirkusesitys-ja-tyopaja-valkky-ja-play-cafe",
                "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora/auroras-sommarturne-systrarna-och-granen-cirkusforestallning-och-workshop-valkky",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora/auroras-summer-tour-circus-performance-siskot-ja-kuusi-workshop-mobile-library-valkky"
            },
            "description": {
                "fi": "<p>Auroran kesäkiertue kurvaa Soukan asukaspuistoon 13.6. Katso alta muut tapahtumapaikat.</p><p>Tapahtumapäivä pitää sisällään:<br>Klo 10-10.30\t  Siskot ja kuusi -sirkusesitys, lämminhenkinen ja wow-elämyksellinen sanaton tarina<br>Klo 11-12\t         Non-stop sirkustyöpaja<br>Klo 9.30-12\tKirjaston elämysauto Välkky avoinna, tarvittaessa pidempäänkin.</p><p><br>”Siskot ja kuusi” on kaikenikäisten lämminhenkinen nykysirkusesitys sisarusrakkaudesta, sirkuksesta ja erilaisuudesta. Ilmassa ja maassa tehty akrobatia hämmästyttävät, äänimaisema lumoaa ja väärinkäsityskommellukset naurattavat. Sanaton esitys kuvaa kahden sisaruksen kasvutarinaa ja tarjoaa samalla kauniita oivalluksia ihmissuhteista. Lue lisää: saanaleppanen.com/siskot-ja-kuusi<br>  <br>Ohjaus: Saana Leppänen ja Liina Leppänen<br>Esiintyjät: Saana Leppänen ja Nelma Pietala<br>Sävellys: Thibaud Rancoeur<br>Sanaton<br>Kesto 30 min<br>Vapaa pääsy</p><p><br>Saana Leppänen ja Nelma Pietala ohjaavat myös sirkustyöpajan, jossa pääset kokeilemaan hulavanteita, jongleerausta sekä maa- ja ilma-akrobatiaa! Työpaja ei ole suunnattu päivähoitoryhmille rajallisen osallistujakapasiteetin vuoksi.</p><p><br>Kirjaston elämysauto Välkystä löydät elämyksien lisäksi tapahtuman teemaan sopivaa luettavaa, ja voit myös lainata kirjoja kotiin helmet-kirjastokortilla. </p><p><br>Koko kiertue:<br>Ma 10.6.\tSuvelan asukaspuisto <br>Ke 12.6.\t        Pisan asukaspuisto <br>To 13.6.\t        Soukan asukaspuisto <br>Pe 14.6.\t        Hiirisuon asukaspuisto <br>Ma 17.6.\t        Matinkylän asukaspuisto <br>Ke 19.6. \tLasten kulttuurikeskus Auroran piha </p><p>Säävaraus: Tapahtuma toteutuu tihkusateella, mutta siirtyy, jos sataa enemmän. Mahdollisista muutoksista tiedotetaan tapahtuman facebook-sivulla klo 9.15 mennessä kunakin tapahtumapäivänä.  Facebook-sivu: https://www.facebook.com/events/978446637104935/978460283770237/</p><p>Päiväkodit 2024</p>",
                "sv": "<p>Evenemangsdagen omfattar:</p><p>Kl. 10–10.30 Cirkusföreställningen Systrarna och granen, en varm wow-upplevelse utan ord<br>Kl. 11–12 Non-stop cirkusworkshop<br>Kl. 9.30–12 Bibliotekets allaktivitetsbuss Välkky är öppen, vid behov längre.</p><p>Fritt inträde</p><p>”Systrarna och granen” (Siskot ja kuusi) är varm, nutidscirkus för ung och gammal om syskonkärlek, cirkus och olikhet. Hisnande akrobatik i luften och på marken, förtrollande ljudlandskap och skrattretande malörer. Den ordlösa föreställningen handlar om två syskons uppväxt och ger vackra insikter i mänskliga relationer. Läs mer: saanaleppanen.com/siskot-ja-kuusi</p><p>Ordlös föreställning<br>Längd 30 min<br>Regissörer: Saana Leppänen och Liina Leppänen <br>Artister: Saana Leppänen och Nelma Pietala<br>Musik: Thibaud Rancoeur <br>Produktion: Sirkus Aikamoinen </p><p>Saana Leppänen och Nelma Pietala leder en cirkusworkshop, där du kan pröva på tunnband, jonglering samt akrobatik på marken och i luften! Workshoppen riktar sig inte till dagvårdsgrupper på grund av begränsat deltagarantal.</p><p>I bibliotekets allaktivitetsbuss Välkky bjuds det förutom upplevelser också på litteratur för evenemangets tema, och med bibliotekskortet kan man låna böcker hem. </p><p>Hela turné:</p><p>Måndag 10.6\tSödriks invånarpark <br>Onsdag 12.6\t        Bisa aktivitetspark <br>Torsdag 13.6\tSökö invånarpark <br>Fredag 14.6\t        Mössenkärrs invånarpark <br>Måndag 17.6\t        Mattby aktivitetspark <br>Onsdag 19.6 \tBarnkulturcentret Auroras gård </p><p>Om vädret tillåter: Evenemanget kommer att äga rum med duggregn, men kommer att skjutas upp om det regnar mer. Eventuella ändringar meddelas på evenemangets Facebook-sida senast kl. 9.15 varje evenemangsdag. Facebook-sidan: https://www.facebook.com/events/978446637104935/978460283770237/</p>",
                "en": "<p>Aurora's summer tour arrives to Soukka's residents' park on 13th of June.  See the other places and dates of the tour underneath.</p><p>The event includes:<br>10.00–10.30\tCircus performance Siskot ja kuusi, a warm and experience-oriented speechless story<br>11.00–12.00\tNon-stop circus workshop<br>9.30–12.00\tMobile library Välkky is open, even later if needed</p><p>Free admission<br> <br>”Siskot ja kuusi” is a warm-hearted modern circus performance about siblings, circus and being different. Acrobatics performed both on the ground and in the air are sure to amaze while the soundscape sets the atmosphere and the misunderstandings in the story make the audience laugh. This speechless performance is the coming-of-age story of two siblings that offers beautiful insights into relationships. <br>  <br>Speechless<br>Duration 30 min<br>Performers and director: Saana Leppänen and Liina Leppänen <br>Music: Thibaud Rancoeur <br>Production: Sirkus Aikamoinen <br>Photo: Jussi Sirviö </p><p>Saana and Liina Leppänen will also direct a circus workshop where you can try out hula hoops, juggling and acrobatics (both on the ground and in the air)! The workshop is not suitable for daycare groups due to the limited capacity for participants.</p><p>The mobile library Välkky has both fun experiences and reading material matching the theme of the event, and you can also borrow and take home books with your Helmet library card. </p><p><br>Dates and places of the whole tour:<br>Mon 10 June\tSuvela residents’ park <br>Wed 12 June\tPisa residents’ park <br>Thu 13 June\t        Soukka residents’ park <br>Fri 14 June\t        Hiirisuo residents’ park <br>Mon 17 June  \tMatinkylä residents’ park <br>Wed 19 June \tChildren’s Cultural Centre Aurora (yard area) </p><p>Weather permitting: the event takes place with drizzle, but is postponed if it rains more. Any changes will be announced on the event's Facebook page by 9.15 a.m. on each event day. Facebook event: https://www.facebook.com/events/978446637104935/978460283770237/</p><p>Organisers: Children’s Cultural Centre Aurora, Espoonlahti cultural services, Espoo City Library <br></p>"
            },
            "name": {
                "fi": "Auroran kesäkiertue - Siskot ja kuusi -sirkusesitys ja työpaja sekä Välkky",
                "sv": "Auroras sommarturné: Systrarna och granen - cirkusföreställning och workshop & Välkky ",
                "en": "Aurora’s summer tour - Circus performance “Siskot ja kuusi”, workshop & Mobile library Välkky "
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuripalvelut ja Espoon kaupunginkirjasto",
                "sv": " Barnkulturcentret Aurora, kulturtjänsterna i Esboviken, Esbo stadsbibliotek",
                "en": "Children’s Cultural Centre Aurora, Espoonlahti cultural services, Espoo City Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghydrqqb4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}