Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&include=location%2Ckeywords&page=181
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 27560,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=182",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=180"
    },
    "data": [
        {
            "id": "espoo_le:agmk22w3we",
            "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": 1965,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "description": null,
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "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": 2023,
                    "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": 2017,
                    "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": 1635,
                    "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": 2012,
                    "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:agggfz66qa",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.165590Z",
                    "last_modified_time": "2023-12-13T11:20:12.165607Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 305,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Suvisaaristo",
                        "sv": "Sommaröarna",
                        "en": "Suvisaaristo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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": 1764,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 8986,
                    "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": 5121,
                    "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:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w7pq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 151380,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-07T11:33:18.307680Z",
                    "last_modified_time": "2024-06-07T11:33:18.307701Z",
                    "name": "Kuva: Unsplash",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa musta konsoliohjain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-27T14:29:14.343788Z",
            "last_modified_time": "2025-05-30T10:59:08.058047Z",
            "date_published": null,
            "start_time": "2025-12-02T14:00:00Z",
            "end_time": "2025-12-02T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Messi",
                "sv": "Messi",
                "en": "Messi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.",
                "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.",
                "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. "
            },
            "description": {
                "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>",
                "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>",
                "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>"
            },
            "provider": null,
            "name": {
                "fi": "K-12 nuortenilta",
                "sv": "K-12 Ungdomarnas kväll",
                "en": "K-12 youth night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w3we/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22w4da",
            "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": 1965,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "description": null,
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "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": 2023,
                    "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": 2017,
                    "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": 1635,
                    "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": 2012,
                    "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:agggfz66qa",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.165590Z",
                    "last_modified_time": "2023-12-13T11:20:12.165607Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 305,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Suvisaaristo",
                        "sv": "Sommaröarna",
                        "en": "Suvisaaristo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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": 1764,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 8986,
                    "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": 5121,
                    "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:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w7pq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 151380,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-07T11:33:18.307680Z",
                    "last_modified_time": "2024-06-07T11:33:18.307701Z",
                    "name": "Kuva: Unsplash",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa musta konsoliohjain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-27T14:29:14.497581Z",
            "last_modified_time": "2025-05-30T10:59:08.021117Z",
            "date_published": null,
            "start_time": "2025-12-09T14:00:00Z",
            "end_time": "2025-12-09T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Messi",
                "sv": "Messi",
                "en": "Messi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.",
                "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.",
                "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. "
            },
            "description": {
                "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>",
                "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>",
                "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>"
            },
            "provider": null,
            "name": {
                "fi": "K-12 nuortenilta",
                "sv": "K-12 Ungdomarnas kväll",
                "en": "K-12 youth night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w4da/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22w4qe",
            "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": 1965,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "description": null,
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "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": 2023,
                    "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": 2017,
                    "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": 1635,
                    "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": 2012,
                    "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:agggfz66qa",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.165590Z",
                    "last_modified_time": "2023-12-13T11:20:12.165607Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 305,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Suvisaaristo",
                        "sv": "Sommaröarna",
                        "en": "Suvisaaristo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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": 1764,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 8986,
                    "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": 5121,
                    "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:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w7pq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 151380,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-07T11:33:18.307680Z",
                    "last_modified_time": "2024-06-07T11:33:18.307701Z",
                    "name": "Kuva: Unsplash",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa musta konsoliohjain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-27T14:29:14.630802Z",
            "last_modified_time": "2025-05-30T10:59:07.978754Z",
            "date_published": null,
            "start_time": "2025-12-16T14:00:00Z",
            "end_time": "2025-12-16T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Messi",
                "sv": "Messi",
                "en": "Messi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.",
                "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.",
                "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. "
            },
            "description": {
                "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>",
                "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>",
                "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>"
            },
            "provider": null,
            "name": {
                "fi": "K-12 nuortenilta",
                "sv": "K-12 Ungdomarnas kväll",
                "en": "K-12 youth night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w4qe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22w45m",
            "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": 1965,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "description": null,
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "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": 2023,
                    "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": 2017,
                    "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": 1635,
                    "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": 2012,
                    "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:agggfz66qa",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.165590Z",
                    "last_modified_time": "2023-12-13T11:20:12.165607Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 305,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Suvisaaristo",
                        "sv": "Sommaröarna",
                        "en": "Suvisaaristo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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": 1764,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 8986,
                    "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": 5121,
                    "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:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w7pq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 151380,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-07T11:33:18.307680Z",
                    "last_modified_time": "2024-06-07T11:33:18.307701Z",
                    "name": "Kuva: Unsplash",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa musta konsoliohjain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-27T14:29:14.765626Z",
            "last_modified_time": "2025-05-30T10:59:07.941715Z",
            "date_published": null,
            "start_time": "2025-12-23T14:00:00Z",
            "end_time": "2025-12-23T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Messi",
                "sv": "Messi",
                "en": "Messi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.",
                "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.",
                "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. "
            },
            "description": {
                "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>",
                "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>",
                "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>"
            },
            "provider": null,
            "name": {
                "fi": "K-12 nuortenilta",
                "sv": "K-12 Ungdomarnas kväll",
                "en": "K-12 youth night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w45m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22w5lq",
            "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": 1965,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "description": null,
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "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": 2023,
                    "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": 2017,
                    "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": 1635,
                    "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": 2012,
                    "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:agggfz66qa",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.165590Z",
                    "last_modified_time": "2023-12-13T11:20:12.165607Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 305,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Suvisaaristo",
                        "sv": "Sommaröarna",
                        "en": "Suvisaaristo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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": 1764,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 8986,
                    "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": 5121,
                    "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:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w7pq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 151380,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-07T11:33:18.307680Z",
                    "last_modified_time": "2024-06-07T11:33:18.307701Z",
                    "name": "Kuva: Unsplash",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa musta konsoliohjain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-27T14:29:14.932768Z",
            "last_modified_time": "2025-05-30T10:59:07.905182Z",
            "date_published": null,
            "start_time": "2025-12-30T14:00:00Z",
            "end_time": "2025-12-30T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Messi",
                "sv": "Messi",
                "en": "Messi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.",
                "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.",
                "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. "
            },
            "description": {
                "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>",
                "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>",
                "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>"
            },
            "provider": null,
            "name": {
                "fi": "K-12 nuortenilta",
                "sv": "K-12 Ungdomarnas kväll",
                "en": "K-12 youth night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w5lq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22w5y4",
            "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": 1965,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "description": null,
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "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": 2023,
                    "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": 2017,
                    "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": 1635,
                    "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": 2012,
                    "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:agggfz66qa",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.165590Z",
                    "last_modified_time": "2023-12-13T11:20:12.165607Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 305,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Suvisaaristo",
                        "sv": "Sommaröarna",
                        "en": "Suvisaaristo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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": 1764,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 8986,
                    "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": 5121,
                    "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:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w7pq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 151380,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-07T11:33:18.307680Z",
                    "last_modified_time": "2024-06-07T11:33:18.307701Z",
                    "name": "Kuva: Unsplash",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa musta konsoliohjain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-27T14:29:15.090849Z",
            "last_modified_time": "2025-05-30T10:59:07.868731Z",
            "date_published": null,
            "start_time": "2026-01-06T14:00:00Z",
            "end_time": "2026-01-06T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Messi",
                "sv": "Messi",
                "en": "Messi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.",
                "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.",
                "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. "
            },
            "description": {
                "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>",
                "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>",
                "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>"
            },
            "provider": null,
            "name": {
                "fi": "K-12 nuortenilta",
                "sv": "K-12 Ungdomarnas kväll",
                "en": "K-12 youth night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w5y4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22w6gu",
            "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": 1965,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "description": null,
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "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": 2023,
                    "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": 2017,
                    "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": 1635,
                    "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": 2012,
                    "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:agggfz66qa",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.165590Z",
                    "last_modified_time": "2023-12-13T11:20:12.165607Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 305,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Suvisaaristo",
                        "sv": "Sommaröarna",
                        "en": "Suvisaaristo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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": 1764,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 8986,
                    "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": 5121,
                    "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:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w7pq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 151380,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-07T11:33:18.307680Z",
                    "last_modified_time": "2024-06-07T11:33:18.307701Z",
                    "name": "Kuva: Unsplash",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa musta konsoliohjain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-27T14:29:15.207868Z",
            "last_modified_time": "2025-05-30T10:59:07.832090Z",
            "date_published": null,
            "start_time": "2026-01-13T14:00:00Z",
            "end_time": "2026-01-13T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Messi",
                "sv": "Messi",
                "en": "Messi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.",
                "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.",
                "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. "
            },
            "description": {
                "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>",
                "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>",
                "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>"
            },
            "provider": null,
            "name": {
                "fi": "K-12 nuortenilta",
                "sv": "K-12 Ungdomarnas kväll",
                "en": "K-12 youth night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w6gu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22w6uq",
            "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": 1965,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "description": null,
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "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": 2023,
                    "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": 2017,
                    "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": 1635,
                    "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": 2012,
                    "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:agggfz66qa",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.165590Z",
                    "last_modified_time": "2023-12-13T11:20:12.165607Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 305,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Suvisaaristo",
                        "sv": "Sommaröarna",
                        "en": "Suvisaaristo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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": 1764,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 8986,
                    "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": 5121,
                    "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:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w7pq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 151380,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-07T11:33:18.307680Z",
                    "last_modified_time": "2024-06-07T11:33:18.307701Z",
                    "name": "Kuva: Unsplash",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa musta konsoliohjain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-27T14:29:15.321607Z",
            "last_modified_time": "2025-05-30T10:59:07.795088Z",
            "date_published": null,
            "start_time": "2026-01-20T14:00:00Z",
            "end_time": "2026-01-20T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Messi",
                "sv": "Messi",
                "en": "Messi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.",
                "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.",
                "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. "
            },
            "description": {
                "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>",
                "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>",
                "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>"
            },
            "provider": null,
            "name": {
                "fi": "K-12 nuortenilta",
                "sv": "K-12 Ungdomarnas kväll",
                "en": "K-12 youth night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w6uq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22w7b4",
            "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": 1965,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "description": null,
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "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": 2023,
                    "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": 2017,
                    "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": 1635,
                    "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": 2012,
                    "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:agggfz66qa",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.165590Z",
                    "last_modified_time": "2023-12-13T11:20:12.165607Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 305,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Suvisaaristo",
                        "sv": "Sommaröarna",
                        "en": "Suvisaaristo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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": 1764,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 8986,
                    "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": 5121,
                    "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:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w7pq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 151380,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-07T11:33:18.307680Z",
                    "last_modified_time": "2024-06-07T11:33:18.307701Z",
                    "name": "Kuva: Unsplash",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa musta konsoliohjain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-27T14:29:15.433378Z",
            "last_modified_time": "2025-05-30T10:59:07.725739Z",
            "date_published": null,
            "start_time": "2026-01-27T14:00:00Z",
            "end_time": "2026-01-27T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Messi",
                "sv": "Messi",
                "en": "Messi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.",
                "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.",
                "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. "
            },
            "description": {
                "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>",
                "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>",
                "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>"
            },
            "provider": null,
            "name": {
                "fi": "K-12 nuortenilta",
                "sv": "K-12 Ungdomarnas kväll",
                "en": "K-12 youth night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w7b4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22w7pq",
            "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": 1965,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "description": null,
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "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": 2023,
                    "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": 2017,
                    "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": 1635,
                    "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": 2012,
                    "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:agggfz66qa",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.165590Z",
                    "last_modified_time": "2023-12-13T11:20:12.165607Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 305,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Suvisaaristo",
                        "sv": "Sommaröarna",
                        "en": "Suvisaaristo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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": 1764,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 8986,
                    "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": 5121,
                    "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:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wqzm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wrgu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wrtq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wsau/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wsoy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ws3y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wtje/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wtwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wudm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wuqe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wu5q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wvky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wvya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wwfq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wwta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wxba/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wxpa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wx4e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wyjq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wyxy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wzgy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wzt4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w2bm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w2oe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w23e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w3iq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w3we/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w4da/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w4qe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w45m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w5lq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w5y4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w6gu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w6uq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w7b4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 151380,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-07T11:33:18.307680Z",
                    "last_modified_time": "2024-06-07T11:33:18.307701Z",
                    "name": "Kuva: Unsplash",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa musta konsoliohjain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-27T14:29:07.564906Z",
            "last_modified_time": "2025-05-30T10:59:05.799332Z",
            "date_published": null,
            "start_time": "2025-06-03T13:00:00Z",
            "end_time": "2026-01-27T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Messi",
                "sv": "Messi",
                "en": "Messi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.",
                "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.",
                "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. "
            },
            "description": {
                "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>",
                "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>",
                "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>"
            },
            "provider": null,
            "name": {
                "fi": "K-12 nuortenilta",
                "sv": "K-12 Ungdomarnas kväll",
                "en": "K-12 youth night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w7pq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:6189b765-3b3d-f011-b4cc-000d3ab0762c",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:65018",
                "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:24:52.783782Z",
                "last_modified_time": "2025-04-23T07:10:15.824317Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "02650",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 12,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.809614,
                        60.22529
                    ]
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://www.espoo.fi/sv/alberga-skola",
                    "sv": "https://www.espoo.fi/sv/alberga-skola",
                    "en": "https://www.espoo.fi/sv/alberga-skola"
                },
                "telephone": null,
                "description": {
                    "fi": "Alberga skola on ruotsinkielinen peruskoulu joka tarjoaa opetusta vuosiluokille 1-6.",
                    "sv": "Alberga skola har ca 100 elever och är belägen invid Alberga idrottspark, där det finns fina möjligheter till naturupplevelser och olika idrottsverksamheter under alla årstider. I Alberga skola arbetar vi för jämlikhet och respekt. Vi jobbar målmedvetet och mångsidigt med läsning. I Monikko finns det 4 enheter under samma tak: Alberga skola (åk 1-6) och Leppävaaran koulu (åk 1-9) samt Alberga daghem och förskola och Monikon päiväkoti. Enheterna i Monikko samarbetar aktivt och vår gemensamma vision är: \"En hemtrevlig uppväxt- och lärmiljö\".",
                    "en": "Alberga skola is a Swedish-speaking school with grades 1-6."
                },
                "street_address": {
                    "fi": "Veräjäpellonkatu 2-4",
                    "sv": "Grindåkersgatan 2-4",
                    "en": "Veräjäpellonkatu 2-4"
                },
                "name": {
                    "fi": "Alberga skola",
                    "sv": "Alberga skola",
                    "en": "Alberga skola"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:65018/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "yso:p10218",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "klassinen baletti",
                        "balett (konst)",
                        "balettkonst",
                        "klassisk balett"
                    ],
                    "created_time": "2023-08-16T05:12:24.307654Z",
                    "last_modified_time": "2023-08-16T05:12:24.307672Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 50,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "baletti (taiteet)",
                        "sv": "balett (konstarter)",
                        "en": "ballet (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?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": 1324,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11951",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "mediakonst"
                    ],
                    "created_time": "2023-08-16T05:18:49.207705Z",
                    "last_modified_time": "2023-08-16T05:18:49.207723Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "mediataide",
                        "sv": "mediekonst",
                        "en": "media art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "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": 1433,
                    "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"
                },
                {
                    "id": "yso:p12650",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "operettisävellykset",
                        "operettkompositioner"
                    ],
                    "created_time": "2023-08-16T05:18:09.824734Z",
                    "last_modified_time": "2023-08-16T05:18:09.824754Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "operetit",
                        "sv": "operetter",
                        "en": "operettas"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13084",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "natur"
                    ],
                    "created_time": "2023-08-16T05:16:37.985735Z",
                    "last_modified_time": "2023-08-16T05:16:37.985760Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 394,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "luonto",
                        "sv": "naturen",
                        "en": "nature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13876",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lustspel",
                        "comedy films",
                        "huvinäytelmät"
                    ],
                    "created_time": "2023-08-16T05:19:37.901227Z",
                    "last_modified_time": "2023-08-16T05:19:37.901248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 139,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "komediat",
                        "sv": "komedier",
                        "en": "comedies"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1393",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "seurat (järjestötoiminta)",
                        "yhdistykset"
                    ],
                    "created_time": "2023-08-16T05:19:47.711187Z",
                    "last_modified_time": "2024-04-06T04:40:52.636427Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 165,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "järjestöt",
                        "sv": "föreningar",
                        "en": "associations (organisations)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p14614",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "dance-pop",
                        "eurodance",
                        "tanssipop",
                        "danspop",
                        "eurodance"
                    ],
                    "created_time": "2023-08-16T05:18:50.090864Z",
                    "last_modified_time": "2023-08-16T05:18:50.090883Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 65,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "dance",
                        "en": "dance (music)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1574",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "special occasions",
                        "fester",
                        "högtider",
                        "högtider och fester",
                        "parties (celebrations)",
                        "tillställningar (fester)"
                    ],
                    "created_time": "2023-08-16T05:19:43.224807Z",
                    "last_modified_time": "2024-03-22T04:40:51.016442Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "juhlat",
                        "sv": "fester och högtider",
                        "en": "celebrations"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p15937",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "imeväisikäiset",
                        "spädbarn",
                        "infants",
                        "bebisar"
                    ],
                    "created_time": "2023-08-16T05:12:54.715337Z",
                    "last_modified_time": "2023-08-16T05:12:54.715360Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "vauvat",
                        "sv": "babyer",
                        "en": "babies"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16428",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:09.346796Z",
                    "last_modified_time": "2023-08-16T05:19:09.346813Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "farssit",
                        "sv": "farser",
                        "en": "farces"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1657",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "indoktrinaatio",
                        "indoktrinering",
                        "kansalaisvaikuttaminen",
                        "vaikutusmahdollisuudet",
                        "påverkande",
                        "påverkande arbete",
                        "påverkansarbete",
                        "påverkningsmöjligheter"
                    ],
                    "created_time": "2023-08-16T05:19:36.228503Z",
                    "last_modified_time": "2023-08-16T05:19:36.228522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "vaikuttaminen",
                        "sv": "påverkan",
                        "en": "influencing"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p17654",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "summer theaters"
                    ],
                    "created_time": "2023-08-16T05:05:52.996011Z",
                    "last_modified_time": "2023-08-16T05:05:52.996029Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kesäteatterit",
                        "sv": "sommarteatrar",
                        "en": "summer theatres"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p181",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "vanha tanssimusiikki",
                        "gammal dansmusik"
                    ],
                    "created_time": "2023-08-16T05:19:45.914400Z",
                    "last_modified_time": "2023-08-16T05:19:45.914419Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssimusiikki",
                        "sv": "dansmusik",
                        "en": "dance music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p18434",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "Western art music",
                        "Western classical music",
                        "klassinen musiikki",
                        "konserttimusiikki",
                        "länsimainen taidemusiikki",
                        "vakava musiikki",
                        "klassisk musik",
                        "konsertmusik",
                        "seriös musik",
                        "västerländsk konstmusik"
                    ],
                    "created_time": "2023-08-16T05:18:50.976439Z",
                    "last_modified_time": "2023-08-16T05:18:50.976459Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "taidemusiikki",
                        "sv": "konstmusik",
                        "en": "art music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1855",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ei-kielellinen viestintä",
                        "ei-verbaalinen viestintä",
                        "non-verbaalinen viestintä",
                        "ickeverbal kommunikation",
                        "non-verbal kommunikation",
                        "nonverbal kommunikation",
                        "ordlös kommunikation"
                    ],
                    "created_time": "2023-08-16T05:18:35.910098Z",
                    "last_modified_time": "2023-08-16T05:18:35.910122Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sanaton viestintä",
                        "sv": "icke-verbal kommunikation",
                        "en": "nonverbal communication"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1857",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "iskusävelmät",
                        "schlagers",
                        "schlagrar"
                    ],
                    "created_time": "2023-08-16T05:17:39.803522Z",
                    "last_modified_time": "2023-08-16T05:17:39.803541Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "iskelmät",
                        "sv": "schlager",
                        "en": "schlager music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1882",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "rockmusik"
                    ],
                    "created_time": "2023-08-16T05:19:44.077970Z",
                    "last_modified_time": "2023-08-16T05:19:44.077998Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "rock",
                        "sv": "rock (musik)",
                        "en": "rock music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1979",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaus (valokuvaus)",
                        "fotografi (framställning av bilder)"
                    ],
                    "created_time": "2023-08-16T05:19:42.940777Z",
                    "last_modified_time": "2023-08-16T05:19:42.940793Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "valokuvaus",
                        "sv": "fotografering",
                        "en": "photography"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p20421",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "clubs (music)",
                        "jazz clubs",
                        "rock clubs",
                        "jazzklubit",
                        "keikkapaikat",
                        "klubit (musiikki)",
                        "rockklubit",
                        "jazzklubbar",
                        "klubbar (musik)",
                        "rockklubbar"
                    ],
                    "created_time": "2023-08-16T05:10:00.287630Z",
                    "last_modified_time": "2023-08-16T05:10:00.287649Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikkiklubit",
                        "sv": "musikklubbar",
                        "en": "music clubs"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p21812",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "onlineutställningar",
                        "webbutställningar",
                        "digitaaliset näyttelyt",
                        "digitala utställningar",
                        "digital exhibitions"
                    ],
                    "created_time": "2023-08-16T05:10:11.760235Z",
                    "last_modified_time": "2023-08-16T05:10:11.760254Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 247,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "verkkonäyttelyt",
                        "sv": "utställningar på nätet",
                        "en": "online exhibitions"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p22193",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kokeellinen sirkus",
                        "uusi sirkus",
                        "experimentell cirkus"
                    ],
                    "created_time": "2023-08-16T05:10:15.581015Z",
                    "last_modified_time": "2023-08-16T05:10:15.581042Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 142,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nykysirkus",
                        "sv": "nycirkus",
                        "en": "contemporary circus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2240",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "vetenskap (fenomen)"
                    ],
                    "created_time": "2023-08-16T05:16:51.767668Z",
                    "last_modified_time": "2023-08-16T05:16:51.767692Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tiede",
                        "sv": "vetenskap",
                        "en": "science"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2445",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "massamedia"
                    ],
                    "created_time": "2023-08-16T05:19:10.138910Z",
                    "last_modified_time": "2023-08-16T05:19:10.138927Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 339,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "media",
                        "en": "media"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p24597",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvatulkkaus",
                        "bildtolkning för synskadade"
                    ],
                    "created_time": "2023-08-16T05:10:38.516856Z",
                    "last_modified_time": "2023-08-16T05:10:38.516877Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvailutulkkaus",
                        "sv": "syntolkning",
                        "en": "audio description"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25077",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "dockteater (konstarter)",
                        "puppet theater"
                    ],
                    "created_time": "2023-08-16T05:13:40.124933Z",
                    "last_modified_time": "2023-08-16T05:13:40.124951Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nukketeatteri (taiteet)",
                        "sv": "dockteater (teaterkonst)",
                        "en": "puppet theatre"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25216",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "multikonstnärlighet",
                        "multikonst (multikonstnärlig verksamhet)"
                    ],
                    "created_time": "2023-08-16T05:10:43.686451Z",
                    "last_modified_time": "2023-08-16T05:10:43.686469Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 59,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "monitaiteisuus",
                        "sv": "multikonstnärlig verksamhet",
                        "en": "multi-art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25476",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "3-D-elokuvat",
                        "3-ulotteiset elokuvat",
                        "kolmiulotteiset elokuvat",
                        "3-D-filmer",
                        "tredimensionella filmer"
                    ],
                    "created_time": "2023-08-16T05:07:03.891303Z",
                    "last_modified_time": "2023-08-16T05:07:03.891323Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 49,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "3D-elokuvat",
                        "sv": "3D-filmer",
                        "en": "3D films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25977",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "pop-up phenomena"
                    ],
                    "created_time": "2023-08-16T05:07:09.514665Z",
                    "last_modified_time": "2023-08-16T05:07:09.514684Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pop up -ilmiöt",
                        "sv": "pop up-fenomen",
                        "en": "pop up phenomena"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2698",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "graafinen taide",
                        "taidegrafiikka",
                        "grafik (bildkonst)",
                        "grafisk konst",
                        "konstgrafik"
                    ],
                    "created_time": "2023-08-16T05:19:35.073591Z",
                    "last_modified_time": "2023-08-16T05:19:35.073610Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "grafiikka",
                        "sv": "grafik",
                        "en": "graphics (visual arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2762",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:33.337239Z",
                    "last_modified_time": "2023-08-16T05:19:33.337304Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 345,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "terveys",
                        "sv": "hälsa",
                        "en": "health"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2841",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "folklore",
                        "etninen musiikki",
                        "etnomusiikki",
                        "etnisk musik",
                        "ethnic music",
                        "traditional music",
                        "nykykansanmusiikki",
                        "perinnemusiikki",
                        "tanhumusiikki",
                        "etnomusik",
                        "folkdansmusik",
                        "nutidsfolkmusik",
                        "traditionell musik"
                    ],
                    "created_time": "2023-08-16T05:19:34.213952Z",
                    "last_modified_time": "2023-08-16T05:19:34.213970Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kansanmusiikki",
                        "sv": "folkmusik",
                        "en": "folk music (traditional music)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2969",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:40.535052Z",
                    "last_modified_time": "2023-08-16T05:19:40.535069Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "popmusiikki",
                        "sv": "popmusik",
                        "en": "pop music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29778",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "hardrock",
                        "hårdrock"
                    ],
                    "created_time": "2023-08-16T05:11:22.955383Z",
                    "last_modified_time": "2023-08-16T05:11:22.955399Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "hard rock",
                        "en": "hard rock"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p318",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lastenleikit",
                        "barnlekar"
                    ],
                    "created_time": "2023-08-16T05:19:10.824660Z",
                    "last_modified_time": "2023-08-16T05:19:10.824677Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 64,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "leikit",
                        "sv": "lekar",
                        "en": "plays and games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p37827",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ordkonstpedagogik",
                        "ordkonstundervisning"
                    ],
                    "created_time": "2023-08-16T05:15:59.381056Z",
                    "last_modified_time": "2023-08-16T05:15:59.381073Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sanataidekasvatus",
                        "sv": "ordkonstfostran",
                        "en": "literary art education"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p38773",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "art of comics",
                        "comics (art)",
                        "tecknad seriekonst"
                    ],
                    "created_time": "2023-08-16T05:16:03.115690Z",
                    "last_modified_time": "2023-08-16T05:16:03.115707Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sarjakuvataide",
                        "sv": "seriekonst",
                        "en": "comic art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?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": 559,
                    "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"
                },
                {
                    "id": "yso:p4357",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kontroll över livet",
                        "livshantering",
                        "livskontroll"
                    ],
                    "created_time": "2023-08-16T05:18:41.919048Z",
                    "last_modified_time": "2023-08-16T05:18:41.919208Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elämänhallinta",
                        "sv": "livskompetens",
                        "en": "life management"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p485",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "handarbete",
                        "hantverk",
                        "handarbete och hantverk (arbete)",
                        "hantverk och handarbete (aktivitet)"
                    ],
                    "created_time": "2023-08-16T05:19:43.703641Z",
                    "last_modified_time": "2023-08-16T05:19:43.703658Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 77,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "käsityö (toiminta)",
                        "sv": "handarbete och hantverk (aktivitet)",
                        "en": "handcrafting"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4892",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "fairs",
                        "trade events",
                        "messut (kauppa)",
                        "handelsmässor",
                        "mässor (handel)"
                    ],
                    "created_time": "2023-08-16T05:17:55.604253Z",
                    "last_modified_time": "2023-08-16T05:17:55.604308Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "messut (tapahtumat)",
                        "sv": "mässor (evenemang)",
                        "en": "trade fairs"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5000",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "draama",
                        "dramas (plays)",
                        "stage plays",
                        "theatrical plays",
                        "teatterikappaleet",
                        "draman",
                        "dramer",
                        "pjäser",
                        "teaterpjäser",
                        "teaterstycken"
                    ],
                    "created_time": "2023-08-16T05:19:45.568394Z",
                    "last_modified_time": "2023-08-16T05:19:45.568415Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "näytelmät",
                        "sv": "skådespel",
                        "en": "plays"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5007",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "art of circus",
                        "sirkus (taidelajit)",
                        "cirkus (konstart)",
                        "cirkuskonst"
                    ],
                    "created_time": "2023-08-16T05:18:56.386288Z",
                    "last_modified_time": "2023-08-16T05:18:56.386306Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 170,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sirkustaide",
                        "sv": "cirkus (konstarter)",
                        "en": "circus (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5164",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:11:59.271137Z",
                    "last_modified_time": "2023-08-16T05:11:59.271154Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 86,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "osallisuus",
                        "sv": "delaktighet",
                        "en": "involvement (participation)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6033",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "surroundings",
                        "omgivning"
                    ],
                    "created_time": "2023-08-16T05:19:42.063394Z",
                    "last_modified_time": "2023-08-16T05:19:42.063413Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 134,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ympäristö",
                        "sv": "miljö",
                        "en": "environment"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6421",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "musiikkidraamat",
                        "oopperasävellykset",
                        "oopperateokset",
                        "operakompositioner",
                        "operaverk"
                    ],
                    "created_time": "2023-08-16T05:19:28.559874Z",
                    "last_modified_time": "2023-08-16T05:19:28.559895Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "oopperat",
                        "sv": "operor (verk)",
                        "en": "operas"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6455",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "design",
                        "design",
                        "design"
                    ],
                    "created_time": "2023-08-16T05:18:25.621979Z",
                    "last_modified_time": "2023-08-16T05:18:25.621998Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 124,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "muotoilu",
                        "sv": "formgivning",
                        "en": "design (artistic creation)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6674",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "barnskådespel"
                    ],
                    "created_time": "2023-08-16T05:17:18.220243Z",
                    "last_modified_time": "2023-08-16T05:17:18.220283Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lastennäytelmät",
                        "sv": "barnpjäser",
                        "en": "children's plays"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6834",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "merkkikielet",
                        "dövas teckenspråk",
                        "teckenspråk (döva)"
                    ],
                    "created_time": "2023-08-16T05:19:23.507717Z",
                    "last_modified_time": "2023-08-16T05:19:23.507734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "viittomakieli",
                        "sv": "teckenspråk",
                        "en": "sign language"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7157",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "showt"
                    ],
                    "created_time": "2023-08-16T05:18:00.485084Z",
                    "last_modified_time": "2025-01-14T04:42:31.632733Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "show't",
                        "sv": "shower",
                        "en": "shows"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7158",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kabareer"
                    ],
                    "created_time": "2023-08-16T05:17:19.628571Z",
                    "last_modified_time": "2023-08-16T05:17:19.628596Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kabareet",
                        "sv": "kabaréer",
                        "en": "cabarets"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7266",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "konkretismi (kuvataide)",
                        "konkretism (konst)"
                    ],
                    "created_time": "2023-08-16T05:08:25.346620Z",
                    "last_modified_time": "2023-08-16T05:08:25.346640Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 148,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "konkreettinen taide",
                        "sv": "konkret konst",
                        "en": "concrete art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7349",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "safety",
                        "security",
                        "säkerhet (trygghet)",
                        "trygghet"
                    ],
                    "created_time": "2023-08-16T05:19:42.690635Z",
                    "last_modified_time": "2023-08-16T05:19:42.690652Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 59,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "turvallisuus",
                        "sv": "säkerhet och trygghet",
                        "en": "safety and security"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7969",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:02.409975Z",
                    "last_modified_time": "2023-08-16T05:18:02.409999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sanataide",
                        "sv": "ordkonst",
                        "en": "literary art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8025",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "rakennustaide",
                        "byggnadskonst"
                    ],
                    "created_time": "2023-08-16T05:19:07.593256Z",
                    "last_modified_time": "2023-08-16T05:19:07.593299Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 50,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "arkkitehtuuri",
                        "sv": "arkitektur",
                        "en": "architecture"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3143,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8368",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "videotallenteet"
                    ],
                    "created_time": "2023-08-16T05:16:24.119002Z",
                    "last_modified_time": "2023-08-16T05:16:24.119030Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "video",
                        "en": "video"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8434",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:26.670455Z",
                    "last_modified_time": "2023-08-16T05:19:26.670472Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "viihdemusiikki",
                        "sv": "underhållningsmusik",
                        "en": "light music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8470",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:40.879074Z",
                    "last_modified_time": "2023-08-16T05:19:40.879092Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 63,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kestävä kehitys",
                        "sv": "hållbar utveckling",
                        "en": "sustainable development"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8475",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:19.897765Z",
                    "last_modified_time": "2023-08-16T05:19:19.897782Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuriperintö",
                        "sv": "kulturarv",
                        "en": "cultural heritage"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8674",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:12:16.381863Z",
                    "last_modified_time": "2023-08-16T05:12:16.381880Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssikasvatus",
                        "sv": "dansfostran",
                        "en": "dance education"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9058",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "musical theatre",
                        "musikaaliteatteri",
                        "musikalteater",
                        "music theater (art forms)",
                        "musical theater"
                    ],
                    "created_time": "2023-08-16T05:16:26.790933Z",
                    "last_modified_time": "2023-08-16T05:16:26.790952Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 53,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikkiteatteri (taiteet)",
                        "sv": "musikteater (teaterkonst)",
                        "en": "music theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9241",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:59.766886Z",
                    "last_modified_time": "2023-08-16T05:18:59.766906Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "satiiri",
                        "sv": "satir",
                        "en": "satire"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9244",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "stå-upp-komik"
                    ],
                    "created_time": "2023-08-16T05:08:33.693878Z",
                    "last_modified_time": "2023-08-16T05:08:33.693903Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 82,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "stand up -komiikka",
                        "sv": "ståuppkomik",
                        "en": "stand-up comedy"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9375",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lopptorg",
                        "second hand-butiker"
                    ],
                    "created_time": "2023-08-16T05:14:52.226647Z",
                    "last_modified_time": "2023-08-16T05:14:52.226662Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirpputorit",
                        "sv": "loppmarknader",
                        "en": "flea markets"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9376",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "bazaars (charities)",
                        "rummage sales"
                    ],
                    "created_time": "2023-08-16T05:12:20.116401Z",
                    "last_modified_time": "2023-08-16T05:12:20.116418Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "myyjäiset",
                        "sv": "försäljningar (evenemang)",
                        "en": "jumble sales"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9778",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:24.039733Z",
                    "last_modified_time": "2023-08-16T05:19:24.039749Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "yhteiskunta",
                        "sv": "samhället",
                        "en": "society"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:f1fff9bc-a85e-405c-94db-baff20b37f56/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TLDG_174_Toistuvat_tapahtumat_v112141050341"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api"
                }
            ],
            "created_time": "2025-05-30T09:54:04.245853Z",
            "last_modified_time": "2025-05-30T09:54:04.245875Z",
            "date_published": "2025-05-30T09:49:45Z",
            "start_time": "2025-05-30T09:58:00Z",
            "end_time": "2025-05-30T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 2,
            "audience_max_age": 24,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 150,
            "minimum_attendee_capacity": 100,
            "enrolment_start_time": "2025-05-30T08:00:00+03:00",
            "enrolment_end_time": "2025-05-30T14:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "TLDG_174_Toistuvat tapahtumat v1"
            },
            "description": {
                "fi": "<div><p>TLDG_174_Toistuvat tapahtumat v1</p></div>"
            },
            "provider": {
                "fi": "Digia"
            },
            "name": {
                "fi": "TLDG_174_Toistuvat tapahtumat v1"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6189b765-3b3d-f011-b4cc-000d3ab0762c/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:9d7ed465-3b3d-f011-b4cc-000d3a69710f",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:65018",
                "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:24:52.783782Z",
                "last_modified_time": "2025-04-23T07:10:15.824317Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "02650",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 12,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.809614,
                        60.22529
                    ]
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://www.espoo.fi/sv/alberga-skola",
                    "sv": "https://www.espoo.fi/sv/alberga-skola",
                    "en": "https://www.espoo.fi/sv/alberga-skola"
                },
                "telephone": null,
                "description": {
                    "fi": "Alberga skola on ruotsinkielinen peruskoulu joka tarjoaa opetusta vuosiluokille 1-6.",
                    "sv": "Alberga skola har ca 100 elever och är belägen invid Alberga idrottspark, där det finns fina möjligheter till naturupplevelser och olika idrottsverksamheter under alla årstider. I Alberga skola arbetar vi för jämlikhet och respekt. Vi jobbar målmedvetet och mångsidigt med läsning. I Monikko finns det 4 enheter under samma tak: Alberga skola (åk 1-6) och Leppävaaran koulu (åk 1-9) samt Alberga daghem och förskola och Monikon päiväkoti. Enheterna i Monikko samarbetar aktivt och vår gemensamma vision är: \"En hemtrevlig uppväxt- och lärmiljö\".",
                    "en": "Alberga skola is a Swedish-speaking school with grades 1-6."
                },
                "street_address": {
                    "fi": "Veräjäpellonkatu 2-4",
                    "sv": "Grindåkersgatan 2-4",
                    "en": "Veräjäpellonkatu 2-4"
                },
                "name": {
                    "fi": "Alberga skola",
                    "sv": "Alberga skola",
                    "en": "Alberga skola"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:65018/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "yso:p10218",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "klassinen baletti",
                        "balett (konst)",
                        "balettkonst",
                        "klassisk balett"
                    ],
                    "created_time": "2023-08-16T05:12:24.307654Z",
                    "last_modified_time": "2023-08-16T05:12:24.307672Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 50,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "baletti (taiteet)",
                        "sv": "balett (konstarter)",
                        "en": "ballet (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?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": 1324,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11951",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "mediakonst"
                    ],
                    "created_time": "2023-08-16T05:18:49.207705Z",
                    "last_modified_time": "2023-08-16T05:18:49.207723Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "mediataide",
                        "sv": "mediekonst",
                        "en": "media art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "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": 1433,
                    "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"
                },
                {
                    "id": "yso:p12650",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "operettisävellykset",
                        "operettkompositioner"
                    ],
                    "created_time": "2023-08-16T05:18:09.824734Z",
                    "last_modified_time": "2023-08-16T05:18:09.824754Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "operetit",
                        "sv": "operetter",
                        "en": "operettas"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13084",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "natur"
                    ],
                    "created_time": "2023-08-16T05:16:37.985735Z",
                    "last_modified_time": "2023-08-16T05:16:37.985760Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 394,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "luonto",
                        "sv": "naturen",
                        "en": "nature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13876",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lustspel",
                        "comedy films",
                        "huvinäytelmät"
                    ],
                    "created_time": "2023-08-16T05:19:37.901227Z",
                    "last_modified_time": "2023-08-16T05:19:37.901248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 139,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "komediat",
                        "sv": "komedier",
                        "en": "comedies"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1393",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "seurat (järjestötoiminta)",
                        "yhdistykset"
                    ],
                    "created_time": "2023-08-16T05:19:47.711187Z",
                    "last_modified_time": "2024-04-06T04:40:52.636427Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 165,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "järjestöt",
                        "sv": "föreningar",
                        "en": "associations (organisations)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p14614",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "dance-pop",
                        "eurodance",
                        "tanssipop",
                        "danspop",
                        "eurodance"
                    ],
                    "created_time": "2023-08-16T05:18:50.090864Z",
                    "last_modified_time": "2023-08-16T05:18:50.090883Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 65,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "dance",
                        "en": "dance (music)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1574",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "special occasions",
                        "fester",
                        "högtider",
                        "högtider och fester",
                        "parties (celebrations)",
                        "tillställningar (fester)"
                    ],
                    "created_time": "2023-08-16T05:19:43.224807Z",
                    "last_modified_time": "2024-03-22T04:40:51.016442Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "juhlat",
                        "sv": "fester och högtider",
                        "en": "celebrations"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p15937",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "imeväisikäiset",
                        "spädbarn",
                        "infants",
                        "bebisar"
                    ],
                    "created_time": "2023-08-16T05:12:54.715337Z",
                    "last_modified_time": "2023-08-16T05:12:54.715360Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "vauvat",
                        "sv": "babyer",
                        "en": "babies"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16428",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:09.346796Z",
                    "last_modified_time": "2023-08-16T05:19:09.346813Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "farssit",
                        "sv": "farser",
                        "en": "farces"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1657",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "indoktrinaatio",
                        "indoktrinering",
                        "kansalaisvaikuttaminen",
                        "vaikutusmahdollisuudet",
                        "påverkande",
                        "påverkande arbete",
                        "påverkansarbete",
                        "påverkningsmöjligheter"
                    ],
                    "created_time": "2023-08-16T05:19:36.228503Z",
                    "last_modified_time": "2023-08-16T05:19:36.228522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "vaikuttaminen",
                        "sv": "påverkan",
                        "en": "influencing"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p17654",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "summer theaters"
                    ],
                    "created_time": "2023-08-16T05:05:52.996011Z",
                    "last_modified_time": "2023-08-16T05:05:52.996029Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kesäteatterit",
                        "sv": "sommarteatrar",
                        "en": "summer theatres"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p181",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "vanha tanssimusiikki",
                        "gammal dansmusik"
                    ],
                    "created_time": "2023-08-16T05:19:45.914400Z",
                    "last_modified_time": "2023-08-16T05:19:45.914419Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssimusiikki",
                        "sv": "dansmusik",
                        "en": "dance music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p18434",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "Western art music",
                        "Western classical music",
                        "klassinen musiikki",
                        "konserttimusiikki",
                        "länsimainen taidemusiikki",
                        "vakava musiikki",
                        "klassisk musik",
                        "konsertmusik",
                        "seriös musik",
                        "västerländsk konstmusik"
                    ],
                    "created_time": "2023-08-16T05:18:50.976439Z",
                    "last_modified_time": "2023-08-16T05:18:50.976459Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "taidemusiikki",
                        "sv": "konstmusik",
                        "en": "art music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1855",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ei-kielellinen viestintä",
                        "ei-verbaalinen viestintä",
                        "non-verbaalinen viestintä",
                        "ickeverbal kommunikation",
                        "non-verbal kommunikation",
                        "nonverbal kommunikation",
                        "ordlös kommunikation"
                    ],
                    "created_time": "2023-08-16T05:18:35.910098Z",
                    "last_modified_time": "2023-08-16T05:18:35.910122Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sanaton viestintä",
                        "sv": "icke-verbal kommunikation",
                        "en": "nonverbal communication"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1857",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "iskusävelmät",
                        "schlagers",
                        "schlagrar"
                    ],
                    "created_time": "2023-08-16T05:17:39.803522Z",
                    "last_modified_time": "2023-08-16T05:17:39.803541Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "iskelmät",
                        "sv": "schlager",
                        "en": "schlager music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1882",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "rockmusik"
                    ],
                    "created_time": "2023-08-16T05:19:44.077970Z",
                    "last_modified_time": "2023-08-16T05:19:44.077998Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "rock",
                        "sv": "rock (musik)",
                        "en": "rock music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1979",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaus (valokuvaus)",
                        "fotografi (framställning av bilder)"
                    ],
                    "created_time": "2023-08-16T05:19:42.940777Z",
                    "last_modified_time": "2023-08-16T05:19:42.940793Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "valokuvaus",
                        "sv": "fotografering",
                        "en": "photography"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p20421",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "clubs (music)",
                        "jazz clubs",
                        "rock clubs",
                        "jazzklubit",
                        "keikkapaikat",
                        "klubit (musiikki)",
                        "rockklubit",
                        "jazzklubbar",
                        "klubbar (musik)",
                        "rockklubbar"
                    ],
                    "created_time": "2023-08-16T05:10:00.287630Z",
                    "last_modified_time": "2023-08-16T05:10:00.287649Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikkiklubit",
                        "sv": "musikklubbar",
                        "en": "music clubs"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p21812",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "onlineutställningar",
                        "webbutställningar",
                        "digitaaliset näyttelyt",
                        "digitala utställningar",
                        "digital exhibitions"
                    ],
                    "created_time": "2023-08-16T05:10:11.760235Z",
                    "last_modified_time": "2023-08-16T05:10:11.760254Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 247,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "verkkonäyttelyt",
                        "sv": "utställningar på nätet",
                        "en": "online exhibitions"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p22193",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kokeellinen sirkus",
                        "uusi sirkus",
                        "experimentell cirkus"
                    ],
                    "created_time": "2023-08-16T05:10:15.581015Z",
                    "last_modified_time": "2023-08-16T05:10:15.581042Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 142,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nykysirkus",
                        "sv": "nycirkus",
                        "en": "contemporary circus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2240",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "vetenskap (fenomen)"
                    ],
                    "created_time": "2023-08-16T05:16:51.767668Z",
                    "last_modified_time": "2023-08-16T05:16:51.767692Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tiede",
                        "sv": "vetenskap",
                        "en": "science"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2445",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "massamedia"
                    ],
                    "created_time": "2023-08-16T05:19:10.138910Z",
                    "last_modified_time": "2023-08-16T05:19:10.138927Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 339,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "media",
                        "en": "media"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p24597",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvatulkkaus",
                        "bildtolkning för synskadade"
                    ],
                    "created_time": "2023-08-16T05:10:38.516856Z",
                    "last_modified_time": "2023-08-16T05:10:38.516877Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvailutulkkaus",
                        "sv": "syntolkning",
                        "en": "audio description"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25077",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "dockteater (konstarter)",
                        "puppet theater"
                    ],
                    "created_time": "2023-08-16T05:13:40.124933Z",
                    "last_modified_time": "2023-08-16T05:13:40.124951Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nukketeatteri (taiteet)",
                        "sv": "dockteater (teaterkonst)",
                        "en": "puppet theatre"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25216",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "multikonstnärlighet",
                        "multikonst (multikonstnärlig verksamhet)"
                    ],
                    "created_time": "2023-08-16T05:10:43.686451Z",
                    "last_modified_time": "2023-08-16T05:10:43.686469Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 59,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "monitaiteisuus",
                        "sv": "multikonstnärlig verksamhet",
                        "en": "multi-art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25476",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "3-D-elokuvat",
                        "3-ulotteiset elokuvat",
                        "kolmiulotteiset elokuvat",
                        "3-D-filmer",
                        "tredimensionella filmer"
                    ],
                    "created_time": "2023-08-16T05:07:03.891303Z",
                    "last_modified_time": "2023-08-16T05:07:03.891323Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 49,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "3D-elokuvat",
                        "sv": "3D-filmer",
                        "en": "3D films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25977",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "pop-up phenomena"
                    ],
                    "created_time": "2023-08-16T05:07:09.514665Z",
                    "last_modified_time": "2023-08-16T05:07:09.514684Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pop up -ilmiöt",
                        "sv": "pop up-fenomen",
                        "en": "pop up phenomena"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2698",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "graafinen taide",
                        "taidegrafiikka",
                        "grafik (bildkonst)",
                        "grafisk konst",
                        "konstgrafik"
                    ],
                    "created_time": "2023-08-16T05:19:35.073591Z",
                    "last_modified_time": "2023-08-16T05:19:35.073610Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "grafiikka",
                        "sv": "grafik",
                        "en": "graphics (visual arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2762",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:33.337239Z",
                    "last_modified_time": "2023-08-16T05:19:33.337304Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 345,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "terveys",
                        "sv": "hälsa",
                        "en": "health"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2841",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "folklore",
                        "etninen musiikki",
                        "etnomusiikki",
                        "etnisk musik",
                        "ethnic music",
                        "traditional music",
                        "nykykansanmusiikki",
                        "perinnemusiikki",
                        "tanhumusiikki",
                        "etnomusik",
                        "folkdansmusik",
                        "nutidsfolkmusik",
                        "traditionell musik"
                    ],
                    "created_time": "2023-08-16T05:19:34.213952Z",
                    "last_modified_time": "2023-08-16T05:19:34.213970Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kansanmusiikki",
                        "sv": "folkmusik",
                        "en": "folk music (traditional music)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2969",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:40.535052Z",
                    "last_modified_time": "2023-08-16T05:19:40.535069Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "popmusiikki",
                        "sv": "popmusik",
                        "en": "pop music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29778",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "hardrock",
                        "hårdrock"
                    ],
                    "created_time": "2023-08-16T05:11:22.955383Z",
                    "last_modified_time": "2023-08-16T05:11:22.955399Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "hard rock",
                        "en": "hard rock"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p318",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lastenleikit",
                        "barnlekar"
                    ],
                    "created_time": "2023-08-16T05:19:10.824660Z",
                    "last_modified_time": "2023-08-16T05:19:10.824677Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 64,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "leikit",
                        "sv": "lekar",
                        "en": "plays and games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p37827",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ordkonstpedagogik",
                        "ordkonstundervisning"
                    ],
                    "created_time": "2023-08-16T05:15:59.381056Z",
                    "last_modified_time": "2023-08-16T05:15:59.381073Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sanataidekasvatus",
                        "sv": "ordkonstfostran",
                        "en": "literary art education"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p38773",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "art of comics",
                        "comics (art)",
                        "tecknad seriekonst"
                    ],
                    "created_time": "2023-08-16T05:16:03.115690Z",
                    "last_modified_time": "2023-08-16T05:16:03.115707Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sarjakuvataide",
                        "sv": "seriekonst",
                        "en": "comic art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?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": 559,
                    "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"
                },
                {
                    "id": "yso:p4357",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kontroll över livet",
                        "livshantering",
                        "livskontroll"
                    ],
                    "created_time": "2023-08-16T05:18:41.919048Z",
                    "last_modified_time": "2023-08-16T05:18:41.919208Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elämänhallinta",
                        "sv": "livskompetens",
                        "en": "life management"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p485",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "handarbete",
                        "hantverk",
                        "handarbete och hantverk (arbete)",
                        "hantverk och handarbete (aktivitet)"
                    ],
                    "created_time": "2023-08-16T05:19:43.703641Z",
                    "last_modified_time": "2023-08-16T05:19:43.703658Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 77,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "käsityö (toiminta)",
                        "sv": "handarbete och hantverk (aktivitet)",
                        "en": "handcrafting"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4892",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "fairs",
                        "trade events",
                        "messut (kauppa)",
                        "handelsmässor",
                        "mässor (handel)"
                    ],
                    "created_time": "2023-08-16T05:17:55.604253Z",
                    "last_modified_time": "2023-08-16T05:17:55.604308Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "messut (tapahtumat)",
                        "sv": "mässor (evenemang)",
                        "en": "trade fairs"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5000",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "draama",
                        "dramas (plays)",
                        "stage plays",
                        "theatrical plays",
                        "teatterikappaleet",
                        "draman",
                        "dramer",
                        "pjäser",
                        "teaterpjäser",
                        "teaterstycken"
                    ],
                    "created_time": "2023-08-16T05:19:45.568394Z",
                    "last_modified_time": "2023-08-16T05:19:45.568415Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "näytelmät",
                        "sv": "skådespel",
                        "en": "plays"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5007",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "art of circus",
                        "sirkus (taidelajit)",
                        "cirkus (konstart)",
                        "cirkuskonst"
                    ],
                    "created_time": "2023-08-16T05:18:56.386288Z",
                    "last_modified_time": "2023-08-16T05:18:56.386306Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 170,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sirkustaide",
                        "sv": "cirkus (konstarter)",
                        "en": "circus (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5164",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:11:59.271137Z",
                    "last_modified_time": "2023-08-16T05:11:59.271154Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 86,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "osallisuus",
                        "sv": "delaktighet",
                        "en": "involvement (participation)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6033",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "surroundings",
                        "omgivning"
                    ],
                    "created_time": "2023-08-16T05:19:42.063394Z",
                    "last_modified_time": "2023-08-16T05:19:42.063413Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 134,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ympäristö",
                        "sv": "miljö",
                        "en": "environment"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6421",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "musiikkidraamat",
                        "oopperasävellykset",
                        "oopperateokset",
                        "operakompositioner",
                        "operaverk"
                    ],
                    "created_time": "2023-08-16T05:19:28.559874Z",
                    "last_modified_time": "2023-08-16T05:19:28.559895Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "oopperat",
                        "sv": "operor (verk)",
                        "en": "operas"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6455",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "design",
                        "design",
                        "design"
                    ],
                    "created_time": "2023-08-16T05:18:25.621979Z",
                    "last_modified_time": "2023-08-16T05:18:25.621998Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 124,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "muotoilu",
                        "sv": "formgivning",
                        "en": "design (artistic creation)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6674",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "barnskådespel"
                    ],
                    "created_time": "2023-08-16T05:17:18.220243Z",
                    "last_modified_time": "2023-08-16T05:17:18.220283Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lastennäytelmät",
                        "sv": "barnpjäser",
                        "en": "children's plays"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6834",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "merkkikielet",
                        "dövas teckenspråk",
                        "teckenspråk (döva)"
                    ],
                    "created_time": "2023-08-16T05:19:23.507717Z",
                    "last_modified_time": "2023-08-16T05:19:23.507734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "viittomakieli",
                        "sv": "teckenspråk",
                        "en": "sign language"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7157",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "showt"
                    ],
                    "created_time": "2023-08-16T05:18:00.485084Z",
                    "last_modified_time": "2025-01-14T04:42:31.632733Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "show't",
                        "sv": "shower",
                        "en": "shows"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7158",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kabareer"
                    ],
                    "created_time": "2023-08-16T05:17:19.628571Z",
                    "last_modified_time": "2023-08-16T05:17:19.628596Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kabareet",
                        "sv": "kabaréer",
                        "en": "cabarets"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7266",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "konkretismi (kuvataide)",
                        "konkretism (konst)"
                    ],
                    "created_time": "2023-08-16T05:08:25.346620Z",
                    "last_modified_time": "2023-08-16T05:08:25.346640Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 148,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "konkreettinen taide",
                        "sv": "konkret konst",
                        "en": "concrete art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7349",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "safety",
                        "security",
                        "säkerhet (trygghet)",
                        "trygghet"
                    ],
                    "created_time": "2023-08-16T05:19:42.690635Z",
                    "last_modified_time": "2023-08-16T05:19:42.690652Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 59,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "turvallisuus",
                        "sv": "säkerhet och trygghet",
                        "en": "safety and security"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7969",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:02.409975Z",
                    "last_modified_time": "2023-08-16T05:18:02.409999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sanataide",
                        "sv": "ordkonst",
                        "en": "literary art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8025",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "rakennustaide",
                        "byggnadskonst"
                    ],
                    "created_time": "2023-08-16T05:19:07.593256Z",
                    "last_modified_time": "2023-08-16T05:19:07.593299Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 50,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "arkkitehtuuri",
                        "sv": "arkitektur",
                        "en": "architecture"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3143,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8368",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "videotallenteet"
                    ],
                    "created_time": "2023-08-16T05:16:24.119002Z",
                    "last_modified_time": "2023-08-16T05:16:24.119030Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "video",
                        "en": "video"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8434",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:26.670455Z",
                    "last_modified_time": "2023-08-16T05:19:26.670472Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "viihdemusiikki",
                        "sv": "underhållningsmusik",
                        "en": "light music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8470",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:40.879074Z",
                    "last_modified_time": "2023-08-16T05:19:40.879092Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 63,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kestävä kehitys",
                        "sv": "hållbar utveckling",
                        "en": "sustainable development"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8475",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:19.897765Z",
                    "last_modified_time": "2023-08-16T05:19:19.897782Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuriperintö",
                        "sv": "kulturarv",
                        "en": "cultural heritage"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8674",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:12:16.381863Z",
                    "last_modified_time": "2023-08-16T05:12:16.381880Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssikasvatus",
                        "sv": "dansfostran",
                        "en": "dance education"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9058",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "musical theatre",
                        "musikaaliteatteri",
                        "musikalteater",
                        "music theater (art forms)",
                        "musical theater"
                    ],
                    "created_time": "2023-08-16T05:16:26.790933Z",
                    "last_modified_time": "2023-08-16T05:16:26.790952Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 53,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikkiteatteri (taiteet)",
                        "sv": "musikteater (teaterkonst)",
                        "en": "music theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9241",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:59.766886Z",
                    "last_modified_time": "2023-08-16T05:18:59.766906Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "satiiri",
                        "sv": "satir",
                        "en": "satire"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9244",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "stå-upp-komik"
                    ],
                    "created_time": "2023-08-16T05:08:33.693878Z",
                    "last_modified_time": "2023-08-16T05:08:33.693903Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 82,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "stand up -komiikka",
                        "sv": "ståuppkomik",
                        "en": "stand-up comedy"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9375",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lopptorg",
                        "second hand-butiker"
                    ],
                    "created_time": "2023-08-16T05:14:52.226647Z",
                    "last_modified_time": "2023-08-16T05:14:52.226662Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirpputorit",
                        "sv": "loppmarknader",
                        "en": "flea markets"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9376",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "bazaars (charities)",
                        "rummage sales"
                    ],
                    "created_time": "2023-08-16T05:12:20.116401Z",
                    "last_modified_time": "2023-08-16T05:12:20.116418Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "myyjäiset",
                        "sv": "försäljningar (evenemang)",
                        "en": "jumble sales"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9778",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:24.039733Z",
                    "last_modified_time": "2023-08-16T05:19:24.039749Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "yhteiskunta",
                        "sv": "samhället",
                        "en": "society"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:f1fff9bc-a85e-405c-94db-baff20b37f56/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TLDG_174_Toistuvat_tapahtumat_v112141050340"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api"
                }
            ],
            "created_time": "2025-05-30T09:53:34.788938Z",
            "last_modified_time": "2025-05-30T09:53:34.788958Z",
            "date_published": "2025-05-30T09:49:37Z",
            "start_time": "2025-05-30T09:58:00Z",
            "end_time": "2025-05-30T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 2,
            "audience_max_age": 24,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 150,
            "minimum_attendee_capacity": 100,
            "enrolment_start_time": "2025-05-30T08:00:00+03:00",
            "enrolment_end_time": "2025-05-30T14:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "TLDG_174_Toistuvat tapahtumat v1"
            },
            "description": {
                "fi": "<div><p>TLDG_174_Toistuvat tapahtumat v1</p></div>"
            },
            "provider": {
                "fi": "Digia"
            },
            "name": {
                "fi": "TLDG_174_Toistuvat tapahtumat v1"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:9d7ed465-3b3d-f011-b4cc-000d3a69710f/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:f1fff9bc-a85e-405c-94db-baff20b37f56",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:65018",
                "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:24:52.783782Z",
                "last_modified_time": "2025-04-23T07:10:15.824317Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "02650",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 12,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.809614,
                        60.22529
                    ]
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://www.espoo.fi/sv/alberga-skola",
                    "sv": "https://www.espoo.fi/sv/alberga-skola",
                    "en": "https://www.espoo.fi/sv/alberga-skola"
                },
                "telephone": null,
                "description": {
                    "fi": "Alberga skola on ruotsinkielinen peruskoulu joka tarjoaa opetusta vuosiluokille 1-6.",
                    "sv": "Alberga skola har ca 100 elever och är belägen invid Alberga idrottspark, där det finns fina möjligheter till naturupplevelser och olika idrottsverksamheter under alla årstider. I Alberga skola arbetar vi för jämlikhet och respekt. Vi jobbar målmedvetet och mångsidigt med läsning. I Monikko finns det 4 enheter under samma tak: Alberga skola (åk 1-6) och Leppävaaran koulu (åk 1-9) samt Alberga daghem och förskola och Monikon päiväkoti. Enheterna i Monikko samarbetar aktivt och vår gemensamma vision är: \"En hemtrevlig uppväxt- och lärmiljö\".",
                    "en": "Alberga skola is a Swedish-speaking school with grades 1-6."
                },
                "street_address": {
                    "fi": "Veräjäpellonkatu 2-4",
                    "sv": "Grindåkersgatan 2-4",
                    "en": "Veräjäpellonkatu 2-4"
                },
                "name": {
                    "fi": "Alberga skola",
                    "sv": "Alberga skola",
                    "en": "Alberga skola"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:65018/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "yso:p10218",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "klassinen baletti",
                        "balett (konst)",
                        "balettkonst",
                        "klassisk balett"
                    ],
                    "created_time": "2023-08-16T05:12:24.307654Z",
                    "last_modified_time": "2023-08-16T05:12:24.307672Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 50,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "baletti (taiteet)",
                        "sv": "balett (konstarter)",
                        "en": "ballet (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?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": 1324,
                    "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:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8986,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11951",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "mediakonst"
                    ],
                    "created_time": "2023-08-16T05:18:49.207705Z",
                    "last_modified_time": "2023-08-16T05:18:49.207723Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "mediataide",
                        "sv": "mediekonst",
                        "en": "media art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "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": 1433,
                    "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"
                },
                {
                    "id": "yso:p12650",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "operettisävellykset",
                        "operettkompositioner"
                    ],
                    "created_time": "2023-08-16T05:18:09.824734Z",
                    "last_modified_time": "2023-08-16T05:18:09.824754Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "operetit",
                        "sv": "operetter",
                        "en": "operettas"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13084",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "natur"
                    ],
                    "created_time": "2023-08-16T05:16:37.985735Z",
                    "last_modified_time": "2023-08-16T05:16:37.985760Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 394,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "luonto",
                        "sv": "naturen",
                        "en": "nature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13876",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lustspel",
                        "comedy films",
                        "huvinäytelmät"
                    ],
                    "created_time": "2023-08-16T05:19:37.901227Z",
                    "last_modified_time": "2023-08-16T05:19:37.901248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 139,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "komediat",
                        "sv": "komedier",
                        "en": "comedies"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1393",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "seurat (järjestötoiminta)",
                        "yhdistykset"
                    ],
                    "created_time": "2023-08-16T05:19:47.711187Z",
                    "last_modified_time": "2024-04-06T04:40:52.636427Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 165,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "järjestöt",
                        "sv": "föreningar",
                        "en": "associations (organisations)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p14614",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "dance-pop",
                        "eurodance",
                        "tanssipop",
                        "danspop",
                        "eurodance"
                    ],
                    "created_time": "2023-08-16T05:18:50.090864Z",
                    "last_modified_time": "2023-08-16T05:18:50.090883Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 65,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "dance",
                        "en": "dance (music)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1574",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "special occasions",
                        "fester",
                        "högtider",
                        "högtider och fester",
                        "parties (celebrations)",
                        "tillställningar (fester)"
                    ],
                    "created_time": "2023-08-16T05:19:43.224807Z",
                    "last_modified_time": "2024-03-22T04:40:51.016442Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "juhlat",
                        "sv": "fester och högtider",
                        "en": "celebrations"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p15937",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "imeväisikäiset",
                        "spädbarn",
                        "infants",
                        "bebisar"
                    ],
                    "created_time": "2023-08-16T05:12:54.715337Z",
                    "last_modified_time": "2023-08-16T05:12:54.715360Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "vauvat",
                        "sv": "babyer",
                        "en": "babies"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16428",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:09.346796Z",
                    "last_modified_time": "2023-08-16T05:19:09.346813Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "farssit",
                        "sv": "farser",
                        "en": "farces"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1657",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "indoktrinaatio",
                        "indoktrinering",
                        "kansalaisvaikuttaminen",
                        "vaikutusmahdollisuudet",
                        "påverkande",
                        "påverkande arbete",
                        "påverkansarbete",
                        "påverkningsmöjligheter"
                    ],
                    "created_time": "2023-08-16T05:19:36.228503Z",
                    "last_modified_time": "2023-08-16T05:19:36.228522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "vaikuttaminen",
                        "sv": "påverkan",
                        "en": "influencing"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p17654",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "summer theaters"
                    ],
                    "created_time": "2023-08-16T05:05:52.996011Z",
                    "last_modified_time": "2023-08-16T05:05:52.996029Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kesäteatterit",
                        "sv": "sommarteatrar",
                        "en": "summer theatres"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p181",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "vanha tanssimusiikki",
                        "gammal dansmusik"
                    ],
                    "created_time": "2023-08-16T05:19:45.914400Z",
                    "last_modified_time": "2023-08-16T05:19:45.914419Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssimusiikki",
                        "sv": "dansmusik",
                        "en": "dance music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p18434",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "Western art music",
                        "Western classical music",
                        "klassinen musiikki",
                        "konserttimusiikki",
                        "länsimainen taidemusiikki",
                        "vakava musiikki",
                        "klassisk musik",
                        "konsertmusik",
                        "seriös musik",
                        "västerländsk konstmusik"
                    ],
                    "created_time": "2023-08-16T05:18:50.976439Z",
                    "last_modified_time": "2023-08-16T05:18:50.976459Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "taidemusiikki",
                        "sv": "konstmusik",
                        "en": "art music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1855",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ei-kielellinen viestintä",
                        "ei-verbaalinen viestintä",
                        "non-verbaalinen viestintä",
                        "ickeverbal kommunikation",
                        "non-verbal kommunikation",
                        "nonverbal kommunikation",
                        "ordlös kommunikation"
                    ],
                    "created_time": "2023-08-16T05:18:35.910098Z",
                    "last_modified_time": "2023-08-16T05:18:35.910122Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sanaton viestintä",
                        "sv": "icke-verbal kommunikation",
                        "en": "nonverbal communication"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1857",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "iskusävelmät",
                        "schlagers",
                        "schlagrar"
                    ],
                    "created_time": "2023-08-16T05:17:39.803522Z",
                    "last_modified_time": "2023-08-16T05:17:39.803541Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "iskelmät",
                        "sv": "schlager",
                        "en": "schlager music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1882",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "rockmusik"
                    ],
                    "created_time": "2023-08-16T05:19:44.077970Z",
                    "last_modified_time": "2023-08-16T05:19:44.077998Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "rock",
                        "sv": "rock (musik)",
                        "en": "rock music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1979",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaus (valokuvaus)",
                        "fotografi (framställning av bilder)"
                    ],
                    "created_time": "2023-08-16T05:19:42.940777Z",
                    "last_modified_time": "2023-08-16T05:19:42.940793Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "valokuvaus",
                        "sv": "fotografering",
                        "en": "photography"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p20421",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "clubs (music)",
                        "jazz clubs",
                        "rock clubs",
                        "jazzklubit",
                        "keikkapaikat",
                        "klubit (musiikki)",
                        "rockklubit",
                        "jazzklubbar",
                        "klubbar (musik)",
                        "rockklubbar"
                    ],
                    "created_time": "2023-08-16T05:10:00.287630Z",
                    "last_modified_time": "2023-08-16T05:10:00.287649Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikkiklubit",
                        "sv": "musikklubbar",
                        "en": "music clubs"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p21812",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "onlineutställningar",
                        "webbutställningar",
                        "digitaaliset näyttelyt",
                        "digitala utställningar",
                        "digital exhibitions"
                    ],
                    "created_time": "2023-08-16T05:10:11.760235Z",
                    "last_modified_time": "2023-08-16T05:10:11.760254Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 247,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "verkkonäyttelyt",
                        "sv": "utställningar på nätet",
                        "en": "online exhibitions"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p22193",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kokeellinen sirkus",
                        "uusi sirkus",
                        "experimentell cirkus"
                    ],
                    "created_time": "2023-08-16T05:10:15.581015Z",
                    "last_modified_time": "2023-08-16T05:10:15.581042Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 142,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nykysirkus",
                        "sv": "nycirkus",
                        "en": "contemporary circus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2240",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "vetenskap (fenomen)"
                    ],
                    "created_time": "2023-08-16T05:16:51.767668Z",
                    "last_modified_time": "2023-08-16T05:16:51.767692Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tiede",
                        "sv": "vetenskap",
                        "en": "science"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2445",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "massamedia"
                    ],
                    "created_time": "2023-08-16T05:19:10.138910Z",
                    "last_modified_time": "2023-08-16T05:19:10.138927Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 339,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "media",
                        "en": "media"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p24597",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvatulkkaus",
                        "bildtolkning för synskadade"
                    ],
                    "created_time": "2023-08-16T05:10:38.516856Z",
                    "last_modified_time": "2023-08-16T05:10:38.516877Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvailutulkkaus",
                        "sv": "syntolkning",
                        "en": "audio description"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25077",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "dockteater (konstarter)",
                        "puppet theater"
                    ],
                    "created_time": "2023-08-16T05:13:40.124933Z",
                    "last_modified_time": "2023-08-16T05:13:40.124951Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nukketeatteri (taiteet)",
                        "sv": "dockteater (teaterkonst)",
                        "en": "puppet theatre"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25216",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "multikonstnärlighet",
                        "multikonst (multikonstnärlig verksamhet)"
                    ],
                    "created_time": "2023-08-16T05:10:43.686451Z",
                    "last_modified_time": "2023-08-16T05:10:43.686469Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 59,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "monitaiteisuus",
                        "sv": "multikonstnärlig verksamhet",
                        "en": "multi-art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25476",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "3-D-elokuvat",
                        "3-ulotteiset elokuvat",
                        "kolmiulotteiset elokuvat",
                        "3-D-filmer",
                        "tredimensionella filmer"
                    ],
                    "created_time": "2023-08-16T05:07:03.891303Z",
                    "last_modified_time": "2023-08-16T05:07:03.891323Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 49,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "3D-elokuvat",
                        "sv": "3D-filmer",
                        "en": "3D films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25977",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "pop-up phenomena"
                    ],
                    "created_time": "2023-08-16T05:07:09.514665Z",
                    "last_modified_time": "2023-08-16T05:07:09.514684Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pop up -ilmiöt",
                        "sv": "pop up-fenomen",
                        "en": "pop up phenomena"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2698",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "graafinen taide",
                        "taidegrafiikka",
                        "grafik (bildkonst)",
                        "grafisk konst",
                        "konstgrafik"
                    ],
                    "created_time": "2023-08-16T05:19:35.073591Z",
                    "last_modified_time": "2023-08-16T05:19:35.073610Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "grafiikka",
                        "sv": "grafik",
                        "en": "graphics (visual arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2762",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:33.337239Z",
                    "last_modified_time": "2023-08-16T05:19:33.337304Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 345,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "terveys",
                        "sv": "hälsa",
                        "en": "health"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2841",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "folklore",
                        "etninen musiikki",
                        "etnomusiikki",
                        "etnisk musik",
                        "ethnic music",
                        "traditional music",
                        "nykykansanmusiikki",
                        "perinnemusiikki",
                        "tanhumusiikki",
                        "etnomusik",
                        "folkdansmusik",
                        "nutidsfolkmusik",
                        "traditionell musik"
                    ],
                    "created_time": "2023-08-16T05:19:34.213952Z",
                    "last_modified_time": "2023-08-16T05:19:34.213970Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kansanmusiikki",
                        "sv": "folkmusik",
                        "en": "folk music (traditional music)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2969",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:40.535052Z",
                    "last_modified_time": "2023-08-16T05:19:40.535069Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "popmusiikki",
                        "sv": "popmusik",
                        "en": "pop music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29778",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "hardrock",
                        "hårdrock"
                    ],
                    "created_time": "2023-08-16T05:11:22.955383Z",
                    "last_modified_time": "2023-08-16T05:11:22.955399Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "hard rock",
                        "en": "hard rock"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p318",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lastenleikit",
                        "barnlekar"
                    ],
                    "created_time": "2023-08-16T05:19:10.824660Z",
                    "last_modified_time": "2023-08-16T05:19:10.824677Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 64,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "leikit",
                        "sv": "lekar",
                        "en": "plays and games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p37827",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ordkonstpedagogik",
                        "ordkonstundervisning"
                    ],
                    "created_time": "2023-08-16T05:15:59.381056Z",
                    "last_modified_time": "2023-08-16T05:15:59.381073Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sanataidekasvatus",
                        "sv": "ordkonstfostran",
                        "en": "literary art education"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p38773",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "art of comics",
                        "comics (art)",
                        "tecknad seriekonst"
                    ],
                    "created_time": "2023-08-16T05:16:03.115690Z",
                    "last_modified_time": "2023-08-16T05:16:03.115707Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sarjakuvataide",
                        "sv": "seriekonst",
                        "en": "comic art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?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": 559,
                    "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"
                },
                {
                    "id": "yso:p4357",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kontroll över livet",
                        "livshantering",
                        "livskontroll"
                    ],
                    "created_time": "2023-08-16T05:18:41.919048Z",
                    "last_modified_time": "2023-08-16T05:18:41.919208Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elämänhallinta",
                        "sv": "livskompetens",
                        "en": "life management"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p485",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "handarbete",
                        "hantverk",
                        "handarbete och hantverk (arbete)",
                        "hantverk och handarbete (aktivitet)"
                    ],
                    "created_time": "2023-08-16T05:19:43.703641Z",
                    "last_modified_time": "2023-08-16T05:19:43.703658Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 77,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "käsityö (toiminta)",
                        "sv": "handarbete och hantverk (aktivitet)",
                        "en": "handcrafting"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4892",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "fairs",
                        "trade events",
                        "messut (kauppa)",
                        "handelsmässor",
                        "mässor (handel)"
                    ],
                    "created_time": "2023-08-16T05:17:55.604253Z",
                    "last_modified_time": "2023-08-16T05:17:55.604308Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "messut (tapahtumat)",
                        "sv": "mässor (evenemang)",
                        "en": "trade fairs"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5000",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "draama",
                        "dramas (plays)",
                        "stage plays",
                        "theatrical plays",
                        "teatterikappaleet",
                        "draman",
                        "dramer",
                        "pjäser",
                        "teaterpjäser",
                        "teaterstycken"
                    ],
                    "created_time": "2023-08-16T05:19:45.568394Z",
                    "last_modified_time": "2023-08-16T05:19:45.568415Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "näytelmät",
                        "sv": "skådespel",
                        "en": "plays"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5007",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "art of circus",
                        "sirkus (taidelajit)",
                        "cirkus (konstart)",
                        "cirkuskonst"
                    ],
                    "created_time": "2023-08-16T05:18:56.386288Z",
                    "last_modified_time": "2023-08-16T05:18:56.386306Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 170,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sirkustaide",
                        "sv": "cirkus (konstarter)",
                        "en": "circus (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5164",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:11:59.271137Z",
                    "last_modified_time": "2023-08-16T05:11:59.271154Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 86,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "osallisuus",
                        "sv": "delaktighet",
                        "en": "involvement (participation)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6033",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "surroundings",
                        "omgivning"
                    ],
                    "created_time": "2023-08-16T05:19:42.063394Z",
                    "last_modified_time": "2023-08-16T05:19:42.063413Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 134,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ympäristö",
                        "sv": "miljö",
                        "en": "environment"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6421",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "musiikkidraamat",
                        "oopperasävellykset",
                        "oopperateokset",
                        "operakompositioner",
                        "operaverk"
                    ],
                    "created_time": "2023-08-16T05:19:28.559874Z",
                    "last_modified_time": "2023-08-16T05:19:28.559895Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "oopperat",
                        "sv": "operor (verk)",
                        "en": "operas"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6455",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "design",
                        "design",
                        "design"
                    ],
                    "created_time": "2023-08-16T05:18:25.621979Z",
                    "last_modified_time": "2023-08-16T05:18:25.621998Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 124,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "muotoilu",
                        "sv": "formgivning",
                        "en": "design (artistic creation)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6674",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "barnskådespel"
                    ],
                    "created_time": "2023-08-16T05:17:18.220243Z",
                    "last_modified_time": "2023-08-16T05:17:18.220283Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lastennäytelmät",
                        "sv": "barnpjäser",
                        "en": "children's plays"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6834",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "merkkikielet",
                        "dövas teckenspråk",
                        "teckenspråk (döva)"
                    ],
                    "created_time": "2023-08-16T05:19:23.507717Z",
                    "last_modified_time": "2023-08-16T05:19:23.507734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "viittomakieli",
                        "sv": "teckenspråk",
                        "en": "sign language"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7157",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "showt"
                    ],
                    "created_time": "2023-08-16T05:18:00.485084Z",
                    "last_modified_time": "2025-01-14T04:42:31.632733Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "show't",
                        "sv": "shower",
                        "en": "shows"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7158",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kabareer"
                    ],
                    "created_time": "2023-08-16T05:17:19.628571Z",
                    "last_modified_time": "2023-08-16T05:17:19.628596Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kabareet",
                        "sv": "kabaréer",
                        "en": "cabarets"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7266",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "konkretismi (kuvataide)",
                        "konkretism (konst)"
                    ],
                    "created_time": "2023-08-16T05:08:25.346620Z",
                    "last_modified_time": "2023-08-16T05:08:25.346640Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 148,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "konkreettinen taide",
                        "sv": "konkret konst",
                        "en": "concrete art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7349",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "safety",
                        "security",
                        "säkerhet (trygghet)",
                        "trygghet"
                    ],
                    "created_time": "2023-08-16T05:19:42.690635Z",
                    "last_modified_time": "2023-08-16T05:19:42.690652Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 59,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "turvallisuus",
                        "sv": "säkerhet och trygghet",
                        "en": "safety and security"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7969",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:02.409975Z",
                    "last_modified_time": "2023-08-16T05:18:02.409999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sanataide",
                        "sv": "ordkonst",
                        "en": "literary art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8025",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "rakennustaide",
                        "byggnadskonst"
                    ],
                    "created_time": "2023-08-16T05:19:07.593256Z",
                    "last_modified_time": "2023-08-16T05:19:07.593299Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 50,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "arkkitehtuuri",
                        "sv": "arkitektur",
                        "en": "architecture"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3143,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8368",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "videotallenteet"
                    ],
                    "created_time": "2023-08-16T05:16:24.119002Z",
                    "last_modified_time": "2023-08-16T05:16:24.119030Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "video",
                        "en": "video"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8434",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:26.670455Z",
                    "last_modified_time": "2023-08-16T05:19:26.670472Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "viihdemusiikki",
                        "sv": "underhållningsmusik",
                        "en": "light music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8470",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:40.879074Z",
                    "last_modified_time": "2023-08-16T05:19:40.879092Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 63,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kestävä kehitys",
                        "sv": "hållbar utveckling",
                        "en": "sustainable development"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8475",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:19.897765Z",
                    "last_modified_time": "2023-08-16T05:19:19.897782Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuriperintö",
                        "sv": "kulturarv",
                        "en": "cultural heritage"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8674",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:12:16.381863Z",
                    "last_modified_time": "2023-08-16T05:12:16.381880Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssikasvatus",
                        "sv": "dansfostran",
                        "en": "dance education"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9058",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "musical theatre",
                        "musikaaliteatteri",
                        "musikalteater",
                        "music theater (art forms)",
                        "musical theater"
                    ],
                    "created_time": "2023-08-16T05:16:26.790933Z",
                    "last_modified_time": "2023-08-16T05:16:26.790952Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 53,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikkiteatteri (taiteet)",
                        "sv": "musikteater (teaterkonst)",
                        "en": "music theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9241",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:59.766886Z",
                    "last_modified_time": "2023-08-16T05:18:59.766906Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "satiiri",
                        "sv": "satir",
                        "en": "satire"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9244",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "stå-upp-komik"
                    ],
                    "created_time": "2023-08-16T05:08:33.693878Z",
                    "last_modified_time": "2023-08-16T05:08:33.693903Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 82,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "stand up -komiikka",
                        "sv": "ståuppkomik",
                        "en": "stand-up comedy"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9375",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lopptorg",
                        "second hand-butiker"
                    ],
                    "created_time": "2023-08-16T05:14:52.226647Z",
                    "last_modified_time": "2023-08-16T05:14:52.226662Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirpputorit",
                        "sv": "loppmarknader",
                        "en": "flea markets"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9376",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "bazaars (charities)",
                        "rummage sales"
                    ],
                    "created_time": "2023-08-16T05:12:20.116401Z",
                    "last_modified_time": "2023-08-16T05:12:20.116418Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "myyjäiset",
                        "sv": "försäljningar (evenemang)",
                        "en": "jumble sales"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9778",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:24.039733Z",
                    "last_modified_time": "2023-08-16T05:19:24.039749Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "yhteiskunta",
                        "sv": "samhället",
                        "en": "society"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?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": [],
                    "price": {
                        "fi": "0"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=TLDG_174_Toistuvat_tapahtumat_v11214105034"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:9d7ed465-3b3d-f011-b4cc-000d3a69710f/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6189b765-3b3d-f011-b4cc-000d3ab0762c/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api"
                }
            ],
            "created_time": "2025-05-30T09:51:25.384481Z",
            "last_modified_time": "2025-05-30T09:51:25.384510Z",
            "date_published": "2025-05-30T09:49:29Z",
            "start_time": "2025-05-30T09:58:00Z",
            "end_time": "2025-05-30T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 2,
            "audience_max_age": 24,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 150,
            "minimum_attendee_capacity": 100,
            "enrolment_start_time": "2025-05-30T08:00:00+03:00",
            "enrolment_end_time": "2025-05-30T14:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "TLDG_174_Toistuvat tapahtumat v1"
            },
            "description": {
                "fi": "<div><p>TLDG_174_Toistuvat tapahtumat v1</p></div>"
            },
            "provider": {
                "fi": "Digia"
            },
            "name": {
                "fi": "TLDG_174_Toistuvat tapahtumat v1"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:f1fff9bc-a85e-405c-94db-baff20b37f56/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65819",
            "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": 677,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "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."
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "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:105",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.060968Z",
                    "last_modified_time": "2024-02-06T13:19:14.616316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1125,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lastentapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1693,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "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": 586,
                    "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: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": 4840,
                    "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": 3703,
                    "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": 3899,
                    "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": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 968,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29865",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "meksikolainen son",
                        "son (meksikolainen populaarimusiikki)",
                        "son-musiikki",
                        "son (mexikansk musik)",
                        "son-musik"
                    ],
                    "created_time": "2023-08-16T05:14:06.089816Z",
                    "last_modified_time": "2023-08-16T05:14:06.089833Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "son mexicano",
                        "en": "son mexicano"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 934,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 10564,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 613833,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-25T14:13:24.337240Z",
                    "last_modified_time": "2025-04-25T14:13:24.337255Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767561.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613833/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-04-25T14:13:24.286788Z",
            "last_modified_time": "2025-05-30T08:13:53.547091Z",
            "date_published": null,
            "start_time": "2025-09-02T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/23A73644EA5AD89B6A81D1F9A6FBF3D7/Hinni-Hiiren_Omaoma-paiva_Musen_Hinnis_alldeles_egna_dag",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/23A73644EA5AD89B6A81D1F9A6FBF3D7/Hinni-Hiiren_Omaoma-paiva_Musen_Hinnis_alldeles_egna_dag",
                "en": "http://www.annantalo.fi/en/events/event/23A73644EA5AD89B6A81D1F9A6FBF3D7/Hinni-Hiiren_Omaoma-paiva_Musen_Hinnis_alldeles_egna_dag"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!",
                "sv": "Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!",
                "en": "Come to sing and learn about different instruments together with Hinni the Mouse!"
            },
            "description": {
                "fi": "<p>Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!</p><p>Annantalon Kesämuskareista tuttu Tuuli Paasolainen tuo Annantalon takapihan A-lavalle interaktiivisen ja innostavan musiikkiteatteriesityksen.</p><p>Esityksen aikana yleisö pääsee laulamaan, loruttelemaan ja liikkumaan yhdessä innokkaan Hinni-Hiiren kanssa. Taitava Hinni osaa soittaa myös poikkihuilua, kannelta sekä satumaisesti soivia rytmisoittimia. Esitys ilostuttaa ja innostaa musiikin pariin.</p><p>Esitys on vähäsanainen ja sopii kaikille, kielestä tai erityistarpeista riippumatta.</p><p>Klo 9.30 esityksessä lauletaan ja lorutellaan suomeksi ja englanniksi<br>Klo 10.30 esityksessä lauletaan ja lorutellaan suomeksi ja ruotsiksi</p><p>Molempia kieliä käytetään tasapuolisesti, eikä niitä tarvitse osata pysyäkseen Hinni-Hiiren matkassa mukana.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Esitykseen ovat tervetulleita kaikki lapsiperheet sekä isommat lapsiryhmät!</p><p>Ikäsuositus: 0–9-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p>",
                "sv": "<p>Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!</p><p>Tuuli Paasolainen, som är bekant från Annegårdens sommarmusiklekis, för med sig en interaktiv och inspirerande musikteaterföreställning till A-scenen på Annegården.</p><p>Under föreställningen kan publiken sjunga, jollra och röra på sig tillsammans med den entusiastiska Musen Hinni. Den skickliga Hinni kan också spela tvärflöjt, kantele och rytminstrument som ljuder sagolikt. Föreställningen gör åhörarna glada och inspirerar till musikens värld.</p><p>Föreställningen har få ord och passar alla, oavsett språk eller särskilda behov.</p><p>Under föreställningen kl. 9.30 sjunger och läser vi ramsor på finska och engelska.<br>Under föreställningen kl. 10.30 sjunger och läser vi ramsor på finska och svenska.</p><p>Båda språken används jämlikt och man behöver inte kunna språken för att hänga med Musen Hinni.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.<br>Alla barnfamiljer och större barngrupper är välkomna till föreställningen!</p><p>Åldersrekommendation: 0–9-åringar<br>Längd: 40 min.<br>Fritt inträde</p>",
                "en": "<p>Come to sing and learn about different instruments together with Hinni the Mouse!</p><p>Tuuli Paasolainen, who hosts the Annantalo Summertime music playschool, brings an interactive and inspiring musical theatre experience to the A-stage in the Annantalo backyard.</p><p>During the performance, the audience will have the chance to sing, rhyme and move together with the energetic Hinni the Mouse. Hinni is very talented and can play the transverse flute, the kantele and percussions that make storybook sounds. The performance will bring joy and introduce children to music.</p><p>There are very few words in the performance, and it is suitable for anyone regardless of their language or special needs.</p><p>Songs and rhymes will be in Finnish and English in the performance at 9.30<br>Songs and rhymes will be in Finnish and Swedish in the performance at 10.30</p><p>Both languages are used equally, and you do not need to know them to be able to follow Hinni the Mouse’s journey.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.<br>All families with children and larger groups of children are welcome!</p><p>Recommended age: 0–9<br>Duration: 40 min.<br>Free entry</p>"
            },
            "provider": null,
            "name": {
                "fi": "Hinni-Hiiren Omaoma-päivä / Musen Hinnis alldeles egna dag – Musiikkiteatteriesitys kaikenkielisille lapsille",
                "sv": "Hinni-Hiiren Omaoma-päivä / Musen Hinnis alldeles egna dag – För barn på alla språk",
                "en": "Hinni-Hiiren Omaoma-päivä / Musen Hinnis alldeles egna dag – Suitable for children of all languages"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65819/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65818",
            "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": 677,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "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."
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "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:105",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.060968Z",
                    "last_modified_time": "2024-02-06T13:19:14.616316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1125,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lastentapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1693,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "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": 586,
                    "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: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": 4840,
                    "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": 3703,
                    "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": 3899,
                    "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": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 968,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29865",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "meksikolainen son",
                        "son (meksikolainen populaarimusiikki)",
                        "son-musiikki",
                        "son (mexikansk musik)",
                        "son-musik"
                    ],
                    "created_time": "2023-08-16T05:14:06.089816Z",
                    "last_modified_time": "2023-08-16T05:14:06.089833Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "son mexicano",
                        "en": "son mexicano"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 934,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 10564,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 613832,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-25T14:13:24.140622Z",
                    "last_modified_time": "2025-04-25T14:13:24.140638Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767560.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613832/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-04-25T14:13:24.088953Z",
            "last_modified_time": "2025-05-30T08:13:53.362046Z",
            "date_published": null,
            "start_time": "2025-09-02T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C8FA3CA169DC8EB8DB5FDC582D7CB441/Hinni-Hiiren_Omaoma-paiva_Hinni_the_Mouse_s_very_own_Day_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/C8FA3CA169DC8EB8DB5FDC582D7CB441/Hinni-Hiiren_Omaoma-paiva_Hinni_the_Mouse_s_very_own_Day_",
                "en": "http://www.annantalo.fi/en/events/event/C8FA3CA169DC8EB8DB5FDC582D7CB441/Hinni-Hiiren_Omaoma-paiva_Hinni_the_Mouse_s_very_own_Day_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!",
                "sv": "Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!",
                "en": "Come to sing and learn about different instruments together with Hinni the Mouse!"
            },
            "description": {
                "fi": "<p>Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!</p><p>Annantalon Kesämuskareista tuttu Tuuli Paasolainen tuo Annantalon takapihan A-lavalle interaktiivisen ja innostavan musiikkiteatteriesityksen.</p><p>Esityksen aikana yleisö pääsee laulamaan, loruttelemaan ja liikkumaan yhdessä innokkaan Hinni-Hiiren kanssa. Taitava Hinni osaa soittaa myös poikkihuilua, kannelta sekä satumaisesti soivia rytmisoittimia. Esitys ilostuttaa ja innostaa musiikin pariin.</p><p>Esitys on vähäsanainen ja sopii kaikille, kielestä tai erityistarpeista riippumatta.</p><p>Klo 9.30 esityksessä lauletaan ja lorutellaan suomeksi ja englanniksi<br>Klo 10.30 esityksessä lauletaan ja lorutellaan suomeksi ja ruotsiksi</p><p>Molempia kieliä käytetään tasapuolisesti, eikä niitä tarvitse osata pysyäkseen Hinni-Hiiren matkassa mukana.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Esitykseen ovat tervetulleita kaikki lapsiperheet sekä isommat lapsiryhmät!</p><p>Ikäsuositus: 0–9-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p>",
                "sv": "<p>Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!</p><p>Tuuli Paasolainen, som är bekant från Annegårdens sommarmusiklekis, för med sig en interaktiv och inspirerande musikteaterföreställning till A-scenen på Annegården.</p><p>Under föreställningen kan publiken sjunga, jollra och röra på sig tillsammans med den entusiastiska Musen Hinni. Den skickliga Hinni kan också spela tvärflöjt, kantele och rytminstrument som ljuder sagolikt. Föreställningen gör åhörarna glada och inspirerar till musikens värld.</p><p>Föreställningen har få ord och passar alla, oavsett språk eller särskilda behov.</p><p>Under föreställningen kl. 9.30 sjunger och läser vi ramsor på finska och engelska.<br>Under föreställningen kl. 10.30 sjunger och läser vi ramsor på finska och svenska.</p><p>Båda språken används jämlikt och man behöver inte kunna språken för att hänga med Musen Hinni.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.<br>Alla barnfamiljer och större barngrupper är välkomna till föreställningen!</p><p>Åldersrekommendation: 0–9-åringar<br>Längd: 40 min.<br>Fritt inträde</p>",
                "en": "<p>Come to sing and learn about different instruments together with Hinni the Mouse!</p><p>Tuuli Paasolainen, who hosts the Annantalo Summertime music playschool, brings an interactive and inspiring musical theatre experience to the A-stage in the Annantalo backyard.</p><p>During the performance, the audience will have the chance to sing, rhyme and move together with the energetic Hinni the Mouse. Hinni is very talented and can play the transverse flute, the kantele and percussions that make storybook sounds. The performance will bring joy and introduce children to music.</p><p>There are very few words in the performance, and it is suitable for anyone regardless of their language or special needs.</p><p>Songs and rhymes will be in Finnish and English in the performance at 9.30<br>Songs and rhymes will be in Finnish and Swedish in the performance at 10.30</p><p>Both languages are used equally, and you do not need to know them to be able to follow Hinni the Mouse’s journey.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.<br>All families with children and larger groups of children are welcome!</p><p>Recommended age: 0–9<br>Duration: 40 min.<br>Free entry</p>"
            },
            "provider": null,
            "name": {
                "fi": "Hinni-Hiiren Omaoma-päivä / Hinni the Mouse’s very own Day – Musiikkiteatteriesitys kaikenkielisille lapsille",
                "sv": "Hinni-Hiiren Omaoma-päivä / Hinni the Mouse’s very own Day – För barn på alla språk",
                "en": "Hinni-Hiiren Omaoma-päivä / Hinni the Mouse’s very own Day – Suitable for children of all languages"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65818/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22w74u",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15321",
                "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:06.525842Z",
                "last_modified_time": "2024-04-09T05:09:27.777156Z",
                "custom_data": null,
                "email": "kirjasto.entresse@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02770",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 3007,
                "image": 7894,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.657864,
                        60.203636
                    ]
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787"
                },
                "telephone": {
                    "fi": "+358 9 8165 3776"
                },
                "description": null,
                "street_address": {
                    "fi": "Siltakatu 11",
                    "sv": "Brogatan 11",
                    "en": "Siltakatu 11"
                },
                "name": {
                    "fi": "Entressen kirjasto",
                    "sv": "Entressebiblioteket",
                    "en": "Entresse Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz65ie",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.846704Z",
                    "last_modified_time": "2023-12-13T11:20:11.846734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1768,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoon keskus",
                        "sv": "Esbo centrum",
                        "en": "Espoon keskus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65ka",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.861544Z",
                    "last_modified_time": "2023-12-13T11:20:11.861564Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1717,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Muurala",
                        "sv": "Morby",
                        "en": "Muurala"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65l4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.876507Z",
                    "last_modified_time": "2023-12-13T11:20:11.876525Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1711,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunginkallio",
                        "sv": "Stadsberget",
                        "en": "Kaupunginkallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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": 8986,
                    "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": 5121,
                    "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:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 10564,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xbmm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490278,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-02-14T12:48:47.287804Z",
                    "last_modified_time": "2025-02-14T12:48:47.287818Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/07288f28-3b96-43ab-a541-701ad76500c8.png",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "canva",
                    "alt_text": "pelinappuloita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-30T06:03:55.928379Z",
            "last_modified_time": "2025-05-30T06:03:55.928395Z",
            "date_published": null,
            "start_time": "2025-06-25T10:00:00Z",
            "end_time": "2025-06-25T12: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,
            "location_extra_info": {
                "fi": "Lastenosasto"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule pelaamaan! "
            },
            "description": {
                "fi": "<p>Tule pelailemaan lautapelejä kesäkuussa keskiviikkoisin klo 13 kirjaston lastenosastolle.</p><p>Ohjelmassa jännittävä ja nopeatempoinen Bingo, älyllinen Kaleidos- lautapeli, muistipeliä, jotka kehittävät ja vaikuttavat myönteisesti muistiin.</p><p>Suunnattu alakouluikäisille, mutta avoin kaikille halukkaille, tervetuloa!</p><p><br></p><p>Järjestäjä: Kirjasto</p>"
            },
            "provider": null,
            "name": {
                "fi": "Lautapelikerho"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w74u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22xaiu",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15321",
                "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:06.525842Z",
                "last_modified_time": "2024-04-09T05:09:27.777156Z",
                "custom_data": null,
                "email": "kirjasto.entresse@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02770",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 3007,
                "image": 7894,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.657864,
                        60.203636
                    ]
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787"
                },
                "telephone": {
                    "fi": "+358 9 8165 3776"
                },
                "description": null,
                "street_address": {
                    "fi": "Siltakatu 11",
                    "sv": "Brogatan 11",
                    "en": "Siltakatu 11"
                },
                "name": {
                    "fi": "Entressen kirjasto",
                    "sv": "Entressebiblioteket",
                    "en": "Entresse Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz65ie",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.846704Z",
                    "last_modified_time": "2023-12-13T11:20:11.846734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1768,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoon keskus",
                        "sv": "Esbo centrum",
                        "en": "Espoon keskus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65ka",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.861544Z",
                    "last_modified_time": "2023-12-13T11:20:11.861564Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1717,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Muurala",
                        "sv": "Morby",
                        "en": "Muurala"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65l4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.876507Z",
                    "last_modified_time": "2023-12-13T11:20:11.876525Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1711,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunginkallio",
                        "sv": "Stadsberget",
                        "en": "Kaupunginkallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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": 8986,
                    "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": 5121,
                    "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:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 10564,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xbmm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490278,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-02-14T12:48:47.287804Z",
                    "last_modified_time": "2025-02-14T12:48:47.287818Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/07288f28-3b96-43ab-a541-701ad76500c8.png",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "canva",
                    "alt_text": "pelinappuloita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-30T06:03:55.840678Z",
            "last_modified_time": "2025-05-30T06:03:55.840694Z",
            "date_published": null,
            "start_time": "2025-06-18T10:00:00Z",
            "end_time": "2025-06-18T12: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,
            "location_extra_info": {
                "fi": "Lastenosasto"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule pelaamaan! "
            },
            "description": {
                "fi": "<p>Tule pelailemaan lautapelejä kesäkuussa keskiviikkoisin klo 13 kirjaston lastenosastolle.</p><p>Ohjelmassa jännittävä ja nopeatempoinen Bingo, älyllinen Kaleidos- lautapeli, muistipeliä, jotka kehittävät ja vaikuttavat myönteisesti muistiin.</p><p>Suunnattu alakouluikäisille, mutta avoin kaikille halukkaille, tervetuloa!</p><p><br></p><p>Järjestäjä: Kirjasto</p>"
            },
            "provider": null,
            "name": {
                "fi": "Lautapelikerho"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xaiu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22xaui",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15321",
                "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:06.525842Z",
                "last_modified_time": "2024-04-09T05:09:27.777156Z",
                "custom_data": null,
                "email": "kirjasto.entresse@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02770",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 3007,
                "image": 7894,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.657864,
                        60.203636
                    ]
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787"
                },
                "telephone": {
                    "fi": "+358 9 8165 3776"
                },
                "description": null,
                "street_address": {
                    "fi": "Siltakatu 11",
                    "sv": "Brogatan 11",
                    "en": "Siltakatu 11"
                },
                "name": {
                    "fi": "Entressen kirjasto",
                    "sv": "Entressebiblioteket",
                    "en": "Entresse Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz65ie",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.846704Z",
                    "last_modified_time": "2023-12-13T11:20:11.846734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1768,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoon keskus",
                        "sv": "Esbo centrum",
                        "en": "Espoon keskus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65ka",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.861544Z",
                    "last_modified_time": "2023-12-13T11:20:11.861564Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1717,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Muurala",
                        "sv": "Morby",
                        "en": "Muurala"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65l4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.876507Z",
                    "last_modified_time": "2023-12-13T11:20:11.876525Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1711,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunginkallio",
                        "sv": "Stadsberget",
                        "en": "Kaupunginkallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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": 8986,
                    "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": 5121,
                    "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:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 10564,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xbmm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490278,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-02-14T12:48:47.287804Z",
                    "last_modified_time": "2025-02-14T12:48:47.287818Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/07288f28-3b96-43ab-a541-701ad76500c8.png",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "canva",
                    "alt_text": "pelinappuloita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-30T06:03:55.752679Z",
            "last_modified_time": "2025-05-30T06:03:55.752695Z",
            "date_published": null,
            "start_time": "2025-06-11T10:00:00Z",
            "end_time": "2025-06-11T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Lastenosasto"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule pelaamaan! "
            },
            "description": {
                "fi": "<p>Tule pelailemaan lautapelejä kesäkuussa keskiviikkoisin klo 13 kirjaston lastenosastolle.</p><p>Ohjelmassa jännittävä ja nopeatempoinen Bingo, älyllinen Kaleidos- lautapeli, muistipeliä, jotka kehittävät ja vaikuttavat myönteisesti muistiin.</p><p>Suunnattu alakouluikäisille, mutta avoin kaikille halukkaille, tervetuloa!</p><p><br></p><p>Järjestäjä: Kirjasto</p>"
            },
            "provider": null,
            "name": {
                "fi": "Lautapelikerho"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xaui/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22xbau",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15321",
                "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:06.525842Z",
                "last_modified_time": "2024-04-09T05:09:27.777156Z",
                "custom_data": null,
                "email": "kirjasto.entresse@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02770",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 3007,
                "image": 7894,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.657864,
                        60.203636
                    ]
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787"
                },
                "telephone": {
                    "fi": "+358 9 8165 3776"
                },
                "description": null,
                "street_address": {
                    "fi": "Siltakatu 11",
                    "sv": "Brogatan 11",
                    "en": "Siltakatu 11"
                },
                "name": {
                    "fi": "Entressen kirjasto",
                    "sv": "Entressebiblioteket",
                    "en": "Entresse Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz65ie",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.846704Z",
                    "last_modified_time": "2023-12-13T11:20:11.846734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1768,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoon keskus",
                        "sv": "Esbo centrum",
                        "en": "Espoon keskus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65ka",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.861544Z",
                    "last_modified_time": "2023-12-13T11:20:11.861564Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1717,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Muurala",
                        "sv": "Morby",
                        "en": "Muurala"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65l4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.876507Z",
                    "last_modified_time": "2023-12-13T11:20:11.876525Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1711,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunginkallio",
                        "sv": "Stadsberget",
                        "en": "Kaupunginkallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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": 8986,
                    "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": 5121,
                    "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:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 10564,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xbmm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490278,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-02-14T12:48:47.287804Z",
                    "last_modified_time": "2025-02-14T12:48:47.287818Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/07288f28-3b96-43ab-a541-701ad76500c8.png",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "canva",
                    "alt_text": "pelinappuloita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-30T06:03:55.661895Z",
            "last_modified_time": "2025-05-30T06:03:55.661911Z",
            "date_published": null,
            "start_time": "2025-06-04T10:00:00Z",
            "end_time": "2025-06-04T12: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,
            "location_extra_info": {
                "fi": "Lastenosasto"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule pelaamaan! "
            },
            "description": {
                "fi": "<p>Tule pelailemaan lautapelejä kesäkuussa keskiviikkoisin klo 13 kirjaston lastenosastolle.</p><p>Ohjelmassa jännittävä ja nopeatempoinen Bingo, älyllinen Kaleidos- lautapeli, muistipeliä, jotka kehittävät ja vaikuttavat myönteisesti muistiin.</p><p>Suunnattu alakouluikäisille, mutta avoin kaikille halukkaille, tervetuloa!</p><p><br></p><p>Järjestäjä: Kirjasto</p>"
            },
            "provider": null,
            "name": {
                "fi": "Lautapelikerho"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xbau/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22xbmm",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15321",
                "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:06.525842Z",
                "last_modified_time": "2024-04-09T05:09:27.777156Z",
                "custom_data": null,
                "email": "kirjasto.entresse@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02770",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 3007,
                "image": 7894,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.657864,
                        60.203636
                    ]
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787"
                },
                "telephone": {
                    "fi": "+358 9 8165 3776"
                },
                "description": null,
                "street_address": {
                    "fi": "Siltakatu 11",
                    "sv": "Brogatan 11",
                    "en": "Siltakatu 11"
                },
                "name": {
                    "fi": "Entressen kirjasto",
                    "sv": "Entressebiblioteket",
                    "en": "Entresse Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz65ie",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.846704Z",
                    "last_modified_time": "2023-12-13T11:20:11.846734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1768,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoon keskus",
                        "sv": "Esbo centrum",
                        "en": "Espoon keskus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65ka",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.861544Z",
                    "last_modified_time": "2023-12-13T11:20:11.861564Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1717,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Muurala",
                        "sv": "Morby",
                        "en": "Muurala"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65l4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.876507Z",
                    "last_modified_time": "2023-12-13T11:20:11.876525Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1711,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunginkallio",
                        "sv": "Stadsberget",
                        "en": "Kaupunginkallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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": 8986,
                    "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": 5121,
                    "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:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 10564,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3683,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22w74u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xaiu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xaui/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xbau/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490278,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-02-14T12:48:47.287804Z",
                    "last_modified_time": "2025-02-14T12:48:47.287818Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/07288f28-3b96-43ab-a541-701ad76500c8.png",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "canva",
                    "alt_text": "pelinappuloita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-30T06:03:55.055109Z",
            "last_modified_time": "2025-05-30T06:03:55.055119Z",
            "date_published": null,
            "start_time": "2025-06-04T10:00:00Z",
            "end_time": "2025-06-25T12: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,
            "location_extra_info": {
                "fi": "Lastenosasto"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule pelaamaan! "
            },
            "description": {
                "fi": "<p>Tule pelailemaan lautapelejä kesäkuussa keskiviikkoisin klo 13 kirjaston lastenosastolle.</p><p>Ohjelmassa jännittävä ja nopeatempoinen Bingo, älyllinen Kaleidos- lautapeli, muistipeliä, jotka kehittävät ja vaikuttavat myönteisesti muistiin.</p><p>Suunnattu alakouluikäisille, mutta avoin kaikille halukkaille, tervetuloa!</p><p><br></p><p>Järjestäjä: Kirjasto</p>"
            },
            "provider": null,
            "name": {
                "fi": "Lautapelikerho"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xbmm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}