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=1311
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=1312",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=1310"
    },
    "data": [
        {
            "id": "helmet:267659",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8149",
                "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:taka-töölö",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Taka-Töölö",
                            "sv": "Bortre Tölö"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:taka-töölö",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Taka-Töölö",
                            "sv": "Bortre Tölö"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:taka-töölö",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Taka-Töölö",
                            "sv": "Bortre Tölö"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:37.860205Z",
                "last_modified_time": "2024-02-06T13:09:55.654187Z",
                "custom_data": null,
                "email": "toolon_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00250",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 502,
                "image": 7809,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.917463,
                        60.183304
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/toolonkirjasto",
                    "sv": "http://www.helmet.fi/tolobibliotek",
                    "en": "http://www.helmet.fi/toololibrary"
                },
                "telephone": {
                    "fi": "+358 9 310 85025"
                },
                "description": null,
                "street_address": {
                    "fi": "Topeliuksenkatu 6",
                    "sv": "Topeliusgatan 6",
                    "en": "Topeliuksenkatu 6"
                },
                "name": {
                    "fi": "Töölön kirjasto",
                    "sv": "Tölö bibliotek",
                    "en": "Töölö Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11686",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.599909Z",
                    "last_modified_time": "2024-02-06T13:24:15.412278Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki",
                        "sv": "Musik",
                        "en": "Music",
                        "ru": "Музыка"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1808",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "säveltaide",
                        "musikkonst",
                        "tonkonst"
                    ],
                    "created_time": "2023-08-16T05:19:45.424900Z",
                    "last_modified_time": "2023-08-16T05:19:45.425071Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2172,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikki",
                        "sv": "musik",
                        "en": "music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3857,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-04T11:32:35.070108Z",
                    "last_modified_time": "2023-09-04T11:32:35.070131Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{70D8E182-78B4-4782-8892-BA890C52FBC4}/105531",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3857/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-09-04T11:32:33.489200Z",
            "last_modified_time": "2023-10-09T09:30:43.456470Z",
            "date_published": "2023-09-04T10:25:44.483000Z",
            "start_time": "2023-09-30T11:00:00Z",
            "end_time": "2023-09-30T12: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": "Mika Waltari -sali, 4. krs"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa keinahtelemaan musiikillisiin syövereihin Ville ”Lefty” Leppäsen johdattelemana!"
            },
            "description": {
                "fi": "<p>Syyskuisella Finnish Blues Societyn Juuristo-klubilla keinahdellaan yleisön pyynnöstä kaukaisen Hawaijin(kin) musiikillisiin syövereihin Ville ”Lefty” Leppäsen johdattelemana. <br><br> Lefty on pitkän uran tehnyt juurimuusikko ja laulaja/lauluntekijä, joka musiikkitaipaleensa alussa hurahti pullonkaulasoittotyylin kautta Havaijilla kehittyneeseen steel-kitarointiin. <br><br> Syksyisen lauantai-iltapäivän ratoksi on näin tarjolla mannaa kaikille hyvän musiikin ystäville; Leppäsen aiheeseen liittyvää musisointia eri insrumentein sekä toki informatiivisen viihdyttävää tarinointia.<br><br> Tilaisuus on kaikille avoin, tervetuloa! </p><p> <a href=\"https://www.helmet.fi/toolonkirjasto\">Töölön kirjasto</a> </p><p>Tilaisuuden järjestää: Finnish Blues Society &amp; Töölön kirjasto<br><br><br> Kuva: Ville Leppänen</p>"
            },
            "provider": null,
            "name": {
                "fi": "Lap steeliä, Hawaiji-kitarointia & -tarinointia"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267659/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267695",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8269",
                "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:pasila",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Pasila",
                            "sv": "Böle"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itä-pasila",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itä-Pasila",
                            "sv": "Östra Böle"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:pasila",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Pasila",
                            "sv": "Böle"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:42.916028Z",
                "last_modified_time": "2024-02-06T13:09:56.614124Z",
                "custom_data": null,
                "email": "tietopalvelu.pasila@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00520",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 246,
                "image": 7827,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.935858,
                        60.200836
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/pasilankirjasto",
                    "sv": "http://www.helmet.fi/bolebibliotek",
                    "en": "http://www.helmet.fi/pasilalibrary"
                },
                "telephone": {
                    "fi": "+358 9 310 85001"
                },
                "description": null,
                "street_address": {
                    "fi": "Kellosilta 9",
                    "sv": "Klockbron 9",
                    "en": "Kellosilta 9"
                },
                "name": {
                    "fi": "Pasilan kirjasto",
                    "sv": "Böle bibliotek",
                    "en": "Pasila Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8269/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11193",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.465802Z",
                    "last_modified_time": "2024-02-06T13:24:10.002830Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 989,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kirjallisuus",
                        "sv": "Litteratur",
                        "en": "Literature",
                        "ru": "Литературные события"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?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"
                }
            ],
            "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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3863,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-04T14:24:07.545073Z",
                    "last_modified_time": "2023-09-04T14:24:07.545096Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{73DA5824-F03A-4590-B231-202DC21C2A8F}/105549",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3863/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-09-04T14:24:07.408933Z",
            "last_modified_time": "2023-10-09T09:20:06.972406Z",
            "date_published": "2023-09-04T13:23:00Z",
            "start_time": "2023-09-08T06:30:00Z",
            "end_time": "2023-09-08T12: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": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lämpimästi tervetuloa lasten- ja nuortenkirjaseminaariin kansainvälisenä lukutaidon päivänä 8.9.2023!"
            },
            "description": {
                "fi": "<h3>Lämpimästi tervetuloa maksuttomaan lasten- ja nuortenkirjaseminaariin kansainvälisenä lukutaidon päivänä 8.9.2023!</h3><p>Seminaari on nimeltään Mielen kielellä, ja se järjestetään Pasilan kirjaston auditoriossa perjantaina 8.9. klo 9.30-15.30. Seminaari striimataan myös Kirjastokaistalle. Seminaaripäivän jälkeen tallenteet ovat katsottavissa vapaasti Kirjastokaistalta.</p><p>Seminaarissa käsittelemme mielen hyvinvointia ja sen tukemista kirjallisuuden, lukemisen ja sanataiteen keinoin. Seminaari on suunnattu lasten- ja nuorten kirjallisuusalan ja kasvatusalan ammattilaisille, lasten- ja nuortenkirjallisuudesta kiinnostuneille sekä lapsiperheiden vanhemmille.</p><p>Seminaarissa pidetään kolme puheenvuoroa sekä paneelikeskustelu.</p><p> <u> <strong>Ohjelma:</strong> </u> </p><ul> <li>9.30-10.00 ilmoittautuminen Pasilan kirjaston aulassa</li> <li>10.00-10.15 IBBY Finlandin alkusanat</li> <li>10.15-11.15 Puheenvuoro: toimintaterapeutti, nuortenkirjailija <strong>Nadja Sumanen</strong>: \"Mitä sinulle soisin – fiktiivisen nuoren elämä, taakat ja tarpeet terapeutti-kirjailijan kuvaamana\"</li> <li>11.15-12.15 Puheenvuoro: kuvittaja, lastenkirjailija <strong>Katri Kirkkopelto</strong>: “Mollistavia mietteitä, kuvakirjoja suurella tunteella. Kuvakirjailijan puheenvuoro.”</li> <li>12.15-13.15 Omakustanteinen lounas</li> <li>13.15-14.15 Puheenvuoro: lastenpsykiatri, tietokirjailija <strong>Raisa Cacciatore</strong>: \"Lukeminen mielenterveyden kannattelijana fyysisestä ja psyykkisestä näkökulmasta\"</li> <li>14.15-15.30 Paneelikeskustelu: kuvittaja, lastenkirjailija <strong>Mira Mallius</strong>, psykologi, lastenkirjailija <strong>Julia Pöyhönen</strong> ja sanataiteen opettaja, lastenkirjailija <strong>Maami Snellman</strong> keskustelevat sanataiteesta, mielen hyvinvoinnista, mielenterveydestä ja tunnetaidoista lasten- ja nuortenkirjoissa. Paneelikeskustelun vetäjänä IBBY Finlandin puheenjohtaja <strong>Demi Aulos</strong>.</li> </ul><p>Ilmoittaudu osallistujaksi paikan päälle: <a href=\"https://forms.gle/ZLTbYf1Fb7r4gHzX8?fbclid=IwAR0iyUABE8aKQkVEYKSzAZIqW48n5MzyHMReKU4A6oLbeaIRYMq0pbH_m98\">https://forms.gle/ZLTbYf1Fb7r4gHzX8</a></p><p>Striimiin osallistujien ei tarvitse ilmoittautua ennakkoon, mutta lomakkeella voi lähettää myös kysymyksiä puhujille.</p><p>Seminaarin järjestää <strong>IBBY Finland ry</strong>. IBBY Finland on lasten- ja nuortenkirjallisuuden ystävien järjestö, joka tekee vapaaehtoisvoimin töitä lukuilon, lukemisen ja laadukkaan lasten- ja nuortenkirjallisuuden puolesta sekä kotimaassa että ulkomailla.</p><p>Yhteistyössä Kirjastokaista ja Pasilan kirjasto.</p><p>Tervetuloa!</p><p> <a href=\"https://www.helmet.fi/pasilankirjasto\">Pasilan kirjasto</a> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Mielen kielellä - lasten- ja nuortenkirjaseminaari"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267695/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267553",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:51342",
                "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:vironniemi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vironniemi",
                            "sv": "Estnäs"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kluuvi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kluuvi",
                            "sv": "Gloet"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kluuvi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kluuvi",
                            "sv": "Gloet"
                        }
                    }
                ],
                "created_time": "2023-08-15T12:11:22.597441Z",
                "last_modified_time": "2024-04-12T05:09:52.010183Z",
                "custom_data": null,
                "email": "oodi@hel.fi",
                "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": 1220,
                "image": 9855,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.938158,
                        60.17397
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.oodihelsinki.fi/",
                    "sv": "https://oodihelsinki.fi/sv/",
                    "en": "https://oodihelsinki.fi/en/"
                },
                "telephone": {
                    "fi": "+358 9 310 85000"
                },
                "description": {
                    "fi": "Oodi on tapahtumapaikka, lukemisen talo ja monipuolinen kaupunkikokemus.\nOodi tarjoaa tietoja, taitoja ja tarinoita, ja sinne on helppo tulla oppimaan,\neläytymään, nauttimaan ja työskentelemään. Kaikille avoin uuden ajan kirjasto\non elävä ja toiminnallinen kohtaamispaikka.",
                    "sv": "Ode är en evenemangsplats, ett läsandets hus och en mångsidig stadsupplevelse. Det bjuder på kunskap, nya färdigheter och berättelser, och är lättillgänglig för inlärning, inlevelse, arbete och avkoppling. Det är ett modernt bibliotek och en levande och funktionell mötesplats till för alla stadsbor.",
                    "en": "Oodi is a venue for events, a house of reading and a diverse urban experience.\nIt will provide its users with knowledge, new skills and stories, and will be an\neasy place to access for learning, story immersion, work and relaxation. Oodi\nis a library of a new era, a living and functional meeting place open for all."
                },
                "street_address": {
                    "fi": "Töölönlahdenkatu 4",
                    "sv": "Tölöviksgatan 4",
                    "en": "Töölönlahdenkatu 4"
                },
                "name": {
                    "fi": "Keskustakirjasto Oodi",
                    "sv": "Helsingfors centrumbibliotek Ode",
                    "en": "Helsinki Central Library Oodi"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10595",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.573028Z",
                    "last_modified_time": "2024-02-06T13:24:05.656107Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3157,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lapset ja perheet",
                        "sv": "Barn och familjer",
                        "en": "Children and families",
                        "ru": "Lapset ja perheet RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:12005",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.085373Z",
                    "last_modified_time": "2024-02-06T13:24:08.630047Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3415,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lasten tapahtumat",
                        "sv": "Barn",
                        "en": "Kids",
                        "ru": "Детям"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13050",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:15:07.041577Z",
                    "last_modified_time": "2023-08-16T05:15:07.041594Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2890,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapsiperheet",
                        "sv": "barnfamiljer",
                        "en": "families with children"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2690,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:29:31.660291Z",
                    "last_modified_time": "2023-08-15T15:29:31.660322Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{EBBA5A97-76DD-4838-981B-A0EBF179CC16}/94971",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2690/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-01T10:24:51.680946Z",
            "last_modified_time": "2023-10-09T09:20:06.759222Z",
            "date_published": "2023-09-01T09:34:00Z",
            "start_time": "2023-09-04T07:30:00Z",
            "end_time": "2023-09-08T12: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": "Leikkipuisto Loru, 3. krs"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lämpimästi tervetuloa Leikkipuisto Lorun elokuun tuokioihin!"
            },
            "description": {
                "fi": "<p> <b>Maanantai</b> <br> <b>10.30–11.00 </b>Loru liikkuu – liikunnallinen tuokio yli 2-vuotiaille<br><strong>13</strong><b>.00–13.30 </b>Kukkuluuruu – vauvatuokio alle 1-vuotiaille</p><p> <b>Tiistai<br> 11.00–11.30 </b>Vaunujumppa, Oodin piha<br><b>15.00–15.30 </b>Lorun laulut – laulutuokio kaikenikäisille</p><p> <b>Keskiviikko<br> 11.00–13.00 </b>Loru luo – askartelua kaikenikäisille<br><b>14.00–15.30 </b>Loru luo – askartelua kaikenikäisille</p><p> <b>Torstai<br> 11.00–11.30 </b>Liikutaan vauvan kanssa<br><b>15.00–15.30 </b>Loru liikkuu – liikunnallinen tuokio yli 1-vuotiaille</p><p> <b>Perjantai<br> 11.00–12.00 </b>Loru löytää - etsintätuokio yli 2-vuotiaille<br><b>15.00–15.30 </b>Lorun lämmössä - vauvatuokio alle 1-vuotiaille </p><p>Seuraa meitä Instagramissa @leikkipuistoloru </p><p>Tuokiot järjestetään Oodin 3. kerroksessa lastenalueella ellei toisin mainita.<br> Vaunuparkkeja löytyy ensimmäisestä kerroksesta eteläpäädystä ja kolmannesta kerroksesta lastenmaailmasta. Vaunut on mahdollista lukita kiinni ensimmäisen kerroksen vaunuparkissa, mutta muistathan ottaa mukaan oman lukon ja ketjun.</p><p>Tervetuloa!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Leikkipuisto Lorun ohjelma 4.- 8.9."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267553/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:266310",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:51342",
                "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:vironniemi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vironniemi",
                            "sv": "Estnäs"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kluuvi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kluuvi",
                            "sv": "Gloet"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kluuvi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kluuvi",
                            "sv": "Gloet"
                        }
                    }
                ],
                "created_time": "2023-08-15T12:11:22.597441Z",
                "last_modified_time": "2024-04-12T05:09:52.010183Z",
                "custom_data": null,
                "email": "oodi@hel.fi",
                "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": 1220,
                "image": 9855,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.938158,
                        60.17397
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.oodihelsinki.fi/",
                    "sv": "https://oodihelsinki.fi/sv/",
                    "en": "https://oodihelsinki.fi/en/"
                },
                "telephone": {
                    "fi": "+358 9 310 85000"
                },
                "description": {
                    "fi": "Oodi on tapahtumapaikka, lukemisen talo ja monipuolinen kaupunkikokemus.\nOodi tarjoaa tietoja, taitoja ja tarinoita, ja sinne on helppo tulla oppimaan,\neläytymään, nauttimaan ja työskentelemään. Kaikille avoin uuden ajan kirjasto\non elävä ja toiminnallinen kohtaamispaikka.",
                    "sv": "Ode är en evenemangsplats, ett läsandets hus och en mångsidig stadsupplevelse. Det bjuder på kunskap, nya färdigheter och berättelser, och är lättillgänglig för inlärning, inlevelse, arbete och avkoppling. Det är ett modernt bibliotek och en levande och funktionell mötesplats till för alla stadsbor.",
                    "en": "Oodi is a venue for events, a house of reading and a diverse urban experience.\nIt will provide its users with knowledge, new skills and stories, and will be an\neasy place to access for learning, story immersion, work and relaxation. Oodi\nis a library of a new era, a living and functional meeting place open for all."
                },
                "street_address": {
                    "fi": "Töölönlahdenkatu 4",
                    "sv": "Tölöviksgatan 4",
                    "en": "Töölönlahdenkatu 4"
                },
                "name": {
                    "fi": "Keskustakirjasto Oodi",
                    "sv": "Helsingfors centrumbibliotek Ode",
                    "en": "Helsinki Central Library Oodi"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10594",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.988683Z",
                    "last_modified_time": "2024-02-06T13:24:09.272513Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2210,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Koululaiset",
                        "sv": "Skolelever",
                        "en": "Pupils",
                        "ru": "Koululaiset RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11687",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.722776Z",
                    "last_modified_time": "2024-02-06T13:24:07.827439Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 794,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Pelitapahtumat",
                        "sv": "Spel",
                        "en": "Games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16485",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "peruskoululaiset"
                    ],
                    "created_time": "2023-08-16T05:19:09.385735Z",
                    "last_modified_time": "2023-08-16T05:19:09.385751Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8529,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "koululaiset",
                        "sv": "skolelever",
                        "en": "pupils"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?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": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3333,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-16T15:02:25.277362Z",
                    "last_modified_time": "2024-02-06T13:38:22.204214Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{FCB346F7-4F1B-48C3-BF1B-D9ED95CB8649}/101021",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3333/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                }
            ],
            "created_time": "2023-08-22T11:24:14.237568Z",
            "last_modified_time": "2023-10-09T09:20:06.557569Z",
            "date_published": "2023-03-06T14:14:00Z",
            "start_time": "2023-09-08T11:00:00Z",
            "end_time": "2023-09-08T12: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": "Oppimistila 1, 2. krs."
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Minecraft Harrastusryhmät seikkailijat(3.-6.lk)"
            },
            "description": {
                "fi": "<p>Seikkailijat harrastusryhmässä hyppäämme Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otamme vastaan kaikki pelin tuovat haasteet yhdessä! Pelistä ei tarvitse olla aiempaa kokemusta, sillä paikalla on aina kaksi peliohjaajaa, jotka ovat aina valmiita auttamaan.</p><p> <b>aika:</b> perjantaisin klo 14:00-15:30, 8.9.2023 alkaen. Koulujen lomaviikoilla ei järjestetä toimintaa.<br><b>paikka:</b> Oodin 2. kerros, Oppimistila 1</p><p>Ilmoittautuminen: <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.xroc.gg%2Fkoulut%2F&amp;data=05%7C01%7Csanna.m.huttunen%40hel.fi%7Cc3c444592b8e420f7adb08db9d5ab109%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638276785060090778%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=tZ5cyCHnj1bgvHumiwtdyNdxYQw4VYPt%2BCcm%2FCyJlIQ%3D&amp;reserved=0\">https://www.xroc.gg/koulut/</a> <br> Järjestäjä: XRoc Gaming / Harrastamisen Suomen malli </p>"
            },
            "provider": null,
            "name": {
                "fi": "Minecraft Harrastusryhmät-seikkailijat (3.-6.lk)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266310/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267164",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8184",
                "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:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:39.190761Z",
                "last_modified_time": "2024-11-30T06:09:27.009846Z",
                "custom_data": null,
                "email": "itakeskuksen_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 909,
                "image": 7815,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.080221,
                        60.21196
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84927",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home?lng=sv#84927",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home?lng=en-gb#84927"
                },
                "telephone": {
                    "fi": "+358 9 310 85090"
                },
                "description": null,
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "name": {
                    "fi": "Itäkeskuksen kirjasto",
                    "sv": "Östra centrums bibliotek",
                    "en": "Itäkeskus Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10595",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.573028Z",
                    "last_modified_time": "2024-02-06T13:24:05.656107Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3157,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lapset ja perheet",
                        "sv": "Barn och familjer",
                        "en": "Children and families",
                        "ru": "Lapset ja perheet RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10791",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:58.699719Z",
                    "last_modified_time": "2024-02-06T13:24:13.362289Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 396,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Itäkeskuksen kirjasto ",
                        "sv": "Östra centrums bibliotek ",
                        "en": "Itäkeskus Library",
                        "ru": "Библиотека Итякескус"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10791/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:12005",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.085373Z",
                    "last_modified_time": "2024-02-06T13:24:08.630047Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3415,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lasten tapahtumat",
                        "sv": "Barn",
                        "en": "Kids",
                        "ru": "Детям"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13050",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:15:07.041577Z",
                    "last_modified_time": "2023-08-16T05:15:07.041594Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2890,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapsiperheet",
                        "sv": "barnfamiljer",
                        "en": "families with children"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3756,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-29T13:24:05.273879Z",
                    "last_modified_time": "2024-02-06T13:38:15.962161Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{D47992D0-9520-43C6-A7B6-A9F814E46EB2}/105320",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3756/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-29T13:26:24.742430Z",
            "last_modified_time": "2023-10-09T09:20:06.359683Z",
            "date_published": "2023-08-29T12:10:00Z",
            "start_time": "2023-09-08T11:00:00Z",
            "end_time": "2023-09-08T12: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",
                "sv": "Lastenosasto"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Koululaisten askartelukerho kokoontuu Itäkeskuksen kirjaston lastenosastolla torstaisin kello 14-15.",
                "sv": "Skolbarnens pysselklubb ordnas i Östra centrums bibliotek, på barnavdelningen varje torsdag kl 14-15."
            },
            "description": {
                "fi": "<p>Koululaisten askartelukerho kokoontuu Itäkeskuksen kirjaston lastenosastolla torstaisin kello 14-15. </p><p>Tervetuloa mukaan iloiseen askarteluhetkeen!</p><p>Sinun ei tarvitse ilmoittautua etukäteen.</p>",
                "sv": "<p>Skolbarnens pysselklubb ordnas i Östra centrums bibliotek, på barnavdelningen varje torsdag kl 14-15.</p><p>Välkommen med och pyssla i ett glatt gäng!</p><p>Ingen förhandsanmälan. Vi försöker tala med barnen på deras språk.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Koululaisten askartelukerho",
                "sv": "Skolbarnens pysselklubb"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267164/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265255",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8154",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:38.106783Z",
                "last_modified_time": "2024-02-06T13:09:55.741684Z",
                "custom_data": null,
                "email": "rikhardinkadun_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 354,
                "image": 7811,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.946783,
                        60.166336
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/rikhardinkadunkirjasto",
                    "sv": "http://www.helmet.fi/richardsgatansbibliotek",
                    "en": "http://www.helmet.fi/rikhardinkatulibrary"
                },
                "telephone": {
                    "fi": "+358 9 310 85013"
                },
                "description": null,
                "street_address": {
                    "fi": "Rikhardinkatu 3",
                    "sv": "Richardsgatan 3",
                    "en": "Rikhardinkatu 3"
                },
                "name": {
                    "fi": "Rikhardinkadun kirjasto",
                    "sv": "Richardsgatans bibliotek",
                    "en": "Rikhardinkatu Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10840",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:20:02.009690Z",
                    "last_modified_time": "2024-02-06T13:24:29.951609Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 187,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Rikhardinkadun kirjasto ",
                        "sv": "Richardsgatans bibliotek",
                        "en": "Rikhardinkatu Library"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10840/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11699",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.241364Z",
                    "last_modified_time": "2024-02-06T13:24:08.826070Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2655,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Opastukset ja kurssit",
                        "sv": "Undervisning och kurser",
                        "en": "Training and courses",
                        "ru": "Курсы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2149",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "opastaminen",
                        "opastukset",
                        "vägledning"
                    ],
                    "created_time": "2023-08-16T05:13:22.316826Z",
                    "last_modified_time": "2023-08-16T05:13:22.316842Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3280,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opastus",
                        "sv": "guidning",
                        "en": "guidance"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9270",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:05.397638Z",
                    "last_modified_time": "2023-08-16T05:18:05.397655Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 18874,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kurssit",
                        "sv": "kurser",
                        "en": "courses (societal objects)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2639,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:28:38.067145Z",
                    "last_modified_time": "2024-02-06T13:39:09.508698Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{CD66F78D-6AED-451D-BA2A-808C0C717A45}/79633",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2639/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:34:03.007664Z",
            "last_modified_time": "2023-10-09T09:20:06.152992Z",
            "date_published": "2023-08-14T11:39:00Z",
            "start_time": "2023-09-08T06:30:00Z",
            "end_time": "2023-09-08T12: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": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Digitalkkari opastaa tietokoneen, läppärin, tabletin tai älypuhelimen kanssa. Varaa aika opastukseen!"
            },
            "description": {
                "fi": "<p>Ongelmia tietokoneen tai tabletin kanssa? Nyt on mahdollisuus saada apua tietoteknisiin ongelmiin.</p><p>Digitalkkari opastaa tietokoneen, läppärin, tabletin tai älypuhelimen kanssa. Opastukseen voi tuoda oman laitteen mukaan. Digitalkkari on opiskelija, joka suorittaa kirjastossa opintoihinsa liittyvää harjoittelujaksoa. </p><p>Digitalkkari on tavattavissa Rikhardinkadun kirjastossa perjantaisin <strong>18.8.–13.10. klo 9.30–15</strong>.</p><p>Varaa opastusaika puhelimitse: 09 3108 5013, kirjaston asiakaspalvelupisteestä tai sähköisestä ajanvarauskalenterista: <a href=\"https://outlook.office365.com/owa/calendar/Rikhardinkadunkirjasto@helsinginkaupunki.onmicrosoft.com/bookings/\">Digitalkkari ajanvaraus</a></p>"
            },
            "provider": null,
            "name": {
                "fi": "Digitalkkari Rikhardinkadun kirjastossa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265255/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265699",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8292",
                "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:pitäjänmäki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Pitäjänmäki",
                            "sv": "Sockenbacka"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:reimarla",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Reimarla",
                            "sv": "Reimars"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:pitäjänmäki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Pitäjänmäki",
                            "sv": "Sockenbacka"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:44.266875Z",
                "last_modified_time": "2024-08-10T05:09:24.879705Z",
                "custom_data": null,
                "email": "pitajanmaen_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00370",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 133,
                "image": 152072,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.86033,
                        60.226818
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/pitajanmaenkirjasto",
                    "sv": "http://www.helmet.fi/sockenbackabibliotek",
                    "en": "http://www.helmet.fi/pitajanmakilibrary"
                },
                "telephone": {
                    "fi": "+358 9 310 85037"
                },
                "description": null,
                "street_address": {
                    "fi": "Jousipolku 1",
                    "sv": "Pilbågsstigen 1",
                    "en": "Jousipolku 1"
                },
                "name": {
                    "fi": "Pitäjänmäen kirjasto",
                    "sv": "Sockenbacka bibliotek",
                    "en": "Pitäjänmäki Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8292/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10833",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:58.197021Z",
                    "last_modified_time": "2024-02-06T13:24:29.353173Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 132,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Pitäjänmäen kirjasto "
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10833/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11733",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.739009Z",
                    "last_modified_time": "2024-02-06T13:24:07.909651Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2733,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kielikahvilat ja keskusteluryhmät",
                        "sv": "Språkcafeér och diskussionsgrupper",
                        "en": "Language Cafés and discussion groups",
                        "ru": "Языковые кафе и дискуссионные клубы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p14004",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "diskussion"
                    ],
                    "created_time": "2023-08-16T05:19:31.102174Z",
                    "last_modified_time": "2023-08-16T05:19:31.102192Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2619,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "keskustelu",
                        "sv": "samtal",
                        "en": "conversation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p556",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "språk (språkvetenskap)",
                        "kielet",
                        "kieli (kielitiede)",
                        "språk (typer)",
                        "språket"
                    ],
                    "created_time": "2023-08-16T05:19:47.449652Z",
                    "last_modified_time": "2023-08-16T05:19:47.449670Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3262,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kieli ja kielet",
                        "sv": "språk",
                        "en": "languages"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3321,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-16T12:22:56.165489Z",
                    "last_modified_time": "2024-02-06T13:38:19.388840Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{75B4871D-92E1-4821-8B3B-B17ECB3C1BD0}/88559",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3321/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-08-16T12:27:25.384605Z",
            "last_modified_time": "2023-10-09T09:20:05.768973Z",
            "date_published": "2023-08-16T11:22:50.987000Z",
            "start_time": "2023-09-08T10:00:00Z",
            "end_time": "2023-09-08T11: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": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa!"
            },
            "description": {
                "fi": "<p>Osaatko jo suomen kielen alkeet mutta haluat oppia puhumaan suomea paremmin? Tervetuloa Pitäjänmäen kirjaston kielikahvilaan perjantaisin klo 13 - 14. Kielikahvilassa voit harjoitella suomen kieltä ja saat tutustua erilaisiin ihmisiin. Keskustelemme Suomen ja maailman ilmiöistä. Kirjasto tarjoaa osallistujille ilmaisen kahvin tai teen.</p><p>Tervetuloa!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Kielikahvila Pitäjänmäen kirjastossa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265699/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267895",
            "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": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10674",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.769517Z",
                    "last_modified_time": "2024-02-06T13:24:18.056863Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 531,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Opiskelijat",
                        "sv": "Studerande",
                        "en": "Students"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10674/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10675",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.674749Z",
                    "last_modified_time": "2024-02-06T13:24:09.413772Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2300,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Seniorit",
                        "sv": "Seniorer",
                        "en": "Senior citizens"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10676",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:53.490876Z",
                    "last_modified_time": "2024-02-06T13:24:44.241914Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 52,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työnhakijat",
                        "sv": "Arbetssökande",
                        "en": "Job seekers"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10676/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10677",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:23:23.614355Z",
                    "last_modified_time": "2024-02-06T13:28:18.058103Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 38,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yrittäjät",
                        "en": "Entrepreneurs"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10677/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10690",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.435139Z",
                    "last_modified_time": "2024-02-06T13:24:05.676676Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3875,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoo",
                        "sv": "Esbo",
                        "en": "Espoo",
                        "ru": "Espoo RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11686",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.599909Z",
                    "last_modified_time": "2024-02-06T13:24:15.412278Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki",
                        "sv": "Musik",
                        "en": "Music",
                        "ru": "Музыка"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4682,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-07T15:25:59.905918Z",
                    "last_modified_time": "2023-09-07T15:25:59.905936Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{6CA7AE5F-569D-4399-AAAE-1B76D78E905F}/105686",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4682/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-09-21T22:24:27.806174Z",
            "last_modified_time": "2023-10-09T07:34:36.128875Z",
            "date_published": "2023-09-07T12:44:00Z",
            "start_time": "2023-09-21T14:15:00Z",
            "end_time": "2023-09-21T14:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "en": "Jukeboksi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "en": "Welcome to a relaxation, where you can sit still or lie on the floor and listen to the peaceful sounds of singing bowls, flutes, guitar and bells."
            },
            "description": {
                "en": "<h3>21.9. at 17.15 - 17.45 Entresse Library, Jukeboksi</h3><p>Welcome to a relaxation, where you can sit still or lie on the floor and listen to the peaceful sounds of singing bowls, flutes, guitar and bells. </p><p>You can bring your own yoga mat, blankets and pillows if you wish. </p><p>The relaxation is fascilitated and the instruments are played by music pedagogue Sakari Heikka.</p><p>#relaxation #peace #silence</p>"
            },
            "provider": null,
            "name": {
                "en": "Music Relaxation"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267895/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:261703",
            "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": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10690",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.435139Z",
                    "last_modified_time": "2024-02-06T13:24:05.676676Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3875,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoo",
                        "sv": "Esbo",
                        "en": "Espoo",
                        "ru": "Espoo RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11733",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.739009Z",
                    "last_modified_time": "2024-02-06T13:24:07.909651Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2733,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kielikahvilat ja keskusteluryhmät",
                        "sv": "Språkcafeér och diskussionsgrupper",
                        "en": "Language Cafés and discussion groups",
                        "ru": "Языковые кафе и дискуссионные клубы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p14004",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "diskussion"
                    ],
                    "created_time": "2023-08-16T05:19:31.102174Z",
                    "last_modified_time": "2023-08-16T05:19:31.102192Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2619,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "keskustelu",
                        "sv": "samtal",
                        "en": "conversation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p556",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "språk (språkvetenskap)",
                        "kielet",
                        "kieli (kielitiede)",
                        "språk (typer)",
                        "språket"
                    ],
                    "created_time": "2023-08-16T05:19:47.449652Z",
                    "last_modified_time": "2023-08-16T05:19:47.449670Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3262,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kieli ja kielet",
                        "sv": "språk",
                        "en": "languages"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2789,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:06.164565Z",
                    "last_modified_time": "2024-02-06T13:38:19.306101Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{4ED2CD39-5E39-4A48-B8FD-C79141C3EBF7}/89667",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2789/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:34:02.011549Z",
            "last_modified_time": "2023-10-09T07:29:29.145523Z",
            "date_published": "2022-09-04T21:00:00Z",
            "start_time": "2023-09-08T09:00:00Z",
            "end_time": "2023-09-08T10: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": "Sininen huone",
                "en": "Pikku Estradi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule oppimaan suomea yhdessä muiden kanssa. Kielikahvilatoiminta on jatkunut jo usean vuoden ajan ja vakiinnuttanut paikkansa maahanmuuttajien suomen kielen taidon kohentajana.",
                "en": "Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Fridays 13.1. - 12.5. at 12:00 - 13:30 in Pikku Estradi. 24.2. and 7.4. Cafe is canceled."
            },
            "description": {
                "fi": "<p>Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30. Kielikahvila kokoontuu syksyllä 1.9 - 15.12. Sinisessä huoneessa, paitsi 20.10. Pajassa klo 12 - 13:30. </p><p>Ryhmää vetää Leena Toivanen 044-5759909, ltoivanen@gmail.com </p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin yhteistyönä.</p>",
                "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!<br><br> Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Fridays 1.9. - 15.12. at 12:00 - 13:30 in Blue Room, except 20.10. in Paja.</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>"
            },
            "provider": null,
            "name": {
                "fi": "SPR:n kielikahvila",
                "en": "Finnish Language Cafe on Fridays"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261703/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:266989",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8184",
                "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:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:39.190761Z",
                "last_modified_time": "2024-11-30T06:09:27.009846Z",
                "custom_data": null,
                "email": "itakeskuksen_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 909,
                "image": 7815,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.080221,
                        60.21196
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84927",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home?lng=sv#84927",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home?lng=en-gb#84927"
                },
                "telephone": {
                    "fi": "+358 9 310 85090"
                },
                "description": null,
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "name": {
                    "fi": "Itäkeskuksen kirjasto",
                    "sv": "Östra centrums bibliotek",
                    "en": "Itäkeskus Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11699",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.241364Z",
                    "last_modified_time": "2024-02-06T13:24:08.826070Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2655,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Opastukset ja kurssit",
                        "sv": "Undervisning och kurser",
                        "en": "Training and courses",
                        "ru": "Курсы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11916",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:50.636163Z",
                    "last_modified_time": "2024-02-06T13:24:25.782402Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 419,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Infonäytöt (Helsinki)",
                        "sv": "Infonäytöt (Helsinki)",
                        "en": "Infonäytöt (Helsinki)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11916/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2149",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "opastaminen",
                        "opastukset",
                        "vägledning"
                    ],
                    "created_time": "2023-08-16T05:13:22.316826Z",
                    "last_modified_time": "2023-08-16T05:13:22.316842Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3280,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opastus",
                        "sv": "guidning",
                        "en": "guidance"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9270",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:05.397638Z",
                    "last_modified_time": "2023-08-16T05:18:05.397655Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 18874,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kurssit",
                        "sv": "kurser",
                        "en": "courses (societal objects)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3811,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-31T13:22:33.472733Z",
                    "last_modified_time": "2023-08-31T13:22:33.472753Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{5EE31AC8-7FDD-40C0-A5F8-BBF0B425CBD2}/105434",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3811/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-08-28T14:27:30.098174Z",
            "last_modified_time": "2023-10-09T07:29:28.521866Z",
            "date_published": "2023-08-28T13:09:00Z",
            "start_time": "2023-09-08T09:00:00Z",
            "end_time": "2023-09-08T10: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": "Nuortenosasto, 2.kerros",
                "en": "Upper floor"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tarjoamme apua aikuisille, jotka opiskelevat suomen kieltä. Autamme suomen kielen kotitehtävissä. Apua saa myös suomenkielisten asiakirjojen ymmärtämiseen tai muihin arjen kielikysymyksiin.",
                "en": "We offer help for adults studying Finnish. We can help with Finnish language coursework as well as understanding documents in Finnish and other daily language questions."
            },
            "description": {
                "fi": "<p> <strong>Suomen kieliapua aikuisille Itäkeskuksen kirjastossa!</strong> </p><p>Tarjoamme apua aikuisille, jotka opiskelevat suomen kieltä. Autamme suomen kielen kotitehtävissä. Apua saa myös suomenkielisten asiakirjojen ymmärtämiseen tai muihin arjen kielikysymyksiin.</p><p>Tarjoamme apua englanniksi, venäjäksi, arabiaksi, ja kurdiksi.</p><p>Maanantaisin klo 15:00-16:00</p><p>Perjantaisin klo 12:00-13:00 </p><p>(Perjantaisin saa osallistua lasten kanssa)</p><p>Vapaa pääsy, ei ilmoittautumista.</p>",
                "en": "<p>We offer help for adults studying Finnish. We can help with Finnish language coursework as well as understanding documents in Finnish and other daily language questions.</p><p>Our helpers speak Arabic, Kurdish, Russian and English.</p><p>Starting Monday September 4th</p><p>Mondays 15:00 - 16:00</p><p>Fridays 12:00 – 13:00 </p><p>On Fridays you are welcome to come with children.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Suomen kieliapua aikuisille",
                "en": "Finnish Language Help for Adults"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266989/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267215",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8154",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:38.106783Z",
                "last_modified_time": "2024-02-06T13:09:55.741684Z",
                "custom_data": null,
                "email": "rikhardinkadun_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 354,
                "image": 7811,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.946783,
                        60.166336
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/rikhardinkadunkirjasto",
                    "sv": "http://www.helmet.fi/richardsgatansbibliotek",
                    "en": "http://www.helmet.fi/rikhardinkatulibrary"
                },
                "telephone": {
                    "fi": "+358 9 310 85013"
                },
                "description": null,
                "street_address": {
                    "fi": "Rikhardinkatu 3",
                    "sv": "Richardsgatan 3",
                    "en": "Rikhardinkatu 3"
                },
                "name": {
                    "fi": "Rikhardinkadun kirjasto",
                    "sv": "Richardsgatans bibliotek",
                    "en": "Rikhardinkatu Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10595",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.573028Z",
                    "last_modified_time": "2024-02-06T13:24:05.656107Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3157,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lapset ja perheet",
                        "sv": "Barn och familjer",
                        "en": "Children and families",
                        "ru": "Lapset ja perheet RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.512501Z",
                    "last_modified_time": "2024-02-06T13:24:05.510383Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2460,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut tapahtumat",
                        "sv": "Övriga evenemang",
                        "en": "Other events",
                        "ru": "Другие "
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13050",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:15:07.041577Z",
                    "last_modified_time": "2023-08-16T05:15:07.041594Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2890,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapsiperheet",
                        "sv": "barnfamiljer",
                        "en": "families with children"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3766,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-30T07:43:19.187202Z",
                    "last_modified_time": "2024-02-06T13:39:49.006066Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{422F7A38-237F-425D-9905-12DADD704263}/105330",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3766/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-30T07:43:19.049196Z",
            "last_modified_time": "2023-10-09T07:29:28.040118Z",
            "date_published": "2023-08-30T06:16:22.290000Z",
            "start_time": "2023-09-08T07:00:00Z",
            "end_time": "2023-09-08T09: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": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa viettämään aikaa kirjastoon!"
            },
            "description": {
                "fi": "<p>Tervetuloa viettämään aikaa kirjastoon! Tarjolla on kahvia ja teetä sekä vaihtuvaa aktiviteettia erityisesti vauva- ja taapero-ikäisille lapsille. Loruttelua, leikkiä, satuja ja kirjavinkkejä niin lapsille kuin aikuisille!</p><p>Perjantaisin <strong>8.9., 22.9., 29.9., 13.10., 27.10., 10.11., 24.11. ja 8.12. klo 10-12.</strong></p>"
            },
            "provider": null,
            "name": {
                "fi": "Perheaamut Rikussa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267215/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264679",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8178",
                "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:mellunkylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Mellunkylä",
                            "sv": "Mellungsby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kontula",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kontula",
                            "sv": "Gårdsbacka"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:mellunkylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Mellunkylä",
                            "sv": "Mellungsby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:38.902881Z",
                "last_modified_time": "2024-06-08T05:09:30.068368Z",
                "custom_data": null,
                "email": "kontulan_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00940",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 192,
                "image": 151382,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.085348,
                        60.23764
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/kontulankirjasto",
                    "sv": "http://www.helmet.fi/gardsbackabibliotek",
                    "en": "http://www.helmet.fi/kontulalibrary"
                },
                "telephone": {
                    "fi": "+358 9 310 85094"
                },
                "description": null,
                "street_address": {
                    "fi": "Ostostie 4",
                    "sv": "Köpvägen 4",
                    "en": "Ostostie 4"
                },
                "name": {
                    "fi": "Kontulan kirjasto",
                    "sv": "Gårdsbacka bibliotek",
                    "en": "Kontula Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8178/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10675",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.674749Z",
                    "last_modified_time": "2024-02-06T13:24:09.413772Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2300,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Seniorit",
                        "sv": "Seniorer",
                        "en": "Senior citizens"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11699",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.241364Z",
                    "last_modified_time": "2024-02-06T13:24:08.826070Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2655,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Opastukset ja kurssit",
                        "sv": "Undervisning och kurser",
                        "en": "Training and courses",
                        "ru": "Курсы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:12023",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:55.279615Z",
                    "last_modified_time": "2024-02-06T13:24:09.436334Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 709,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Senioreille",
                        "sv": "För seniorer",
                        "en": "For senior citizens"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12023/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2149",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "opastaminen",
                        "opastukset",
                        "vägledning"
                    ],
                    "created_time": "2023-08-16T05:13:22.316826Z",
                    "last_modified_time": "2023-08-16T05:13:22.316842Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3280,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opastus",
                        "sv": "guidning",
                        "en": "guidance"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2433",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ikä-ihmiset",
                        "ikäihmiset",
                        "gamlingar",
                        "elderly",
                        "old people",
                        "older adults",
                        "senior citizens",
                        "iäkkäät",
                        "seniorit",
                        "vanhukset",
                        "gamla",
                        "seniorer",
                        "äldre människor",
                        "äldre personer",
                        "åldringar"
                    ],
                    "created_time": "2023-08-16T05:17:43.642288Z",
                    "last_modified_time": "2023-08-16T05:17:43.642316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 15288,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ikääntyneet",
                        "sv": "äldre",
                        "en": "older people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9270",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:05.397638Z",
                    "last_modified_time": "2023-08-16T05:18:05.397655Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 18874,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kurssit",
                        "sv": "kurser",
                        "en": "courses (societal objects)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2891,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:34:01.775068Z",
                    "last_modified_time": "2023-08-15T15:34:01.775087Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{C7F54A26-54FC-4E18-B094-CC94F5D1BD97}/104682",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2891/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:34:01.654775Z",
            "last_modified_time": "2023-10-09T07:29:27.539806Z",
            "date_published": "2023-08-02T13:21:08.163000Z",
            "start_time": "2023-09-08T07:00:00Z",
            "end_time": "2023-09-08T09: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": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tarvitsetko apua älypuhelimen tai tietokoneen käytössä? Enter ry opastaa Kontulan kirjastolla."
            },
            "description": {
                "fi": "<p>Tarvitsetko apua älypuhelimen tai tietokoneen käytössä?<br><br> Enter ry:n vapaaehtoiset vertaisopastajat auttavat tietokoneen, tablettilaitteen ja kännykän käytössä. Ota oma laitteesi mukaan, sekä tarvittavat salasanat ja tunnukset. <br><br> Kontulan kirjastolla opastukset ovat joka toinen perjantai klo 10-12 ajalla 8.9.-1.12.23.<br><br> Varaa itsellesi tunnin mittainen henkilökohtainen opastusaika puhelimitse kirjastosta<br> p.(09) 310 85094 tai paikan päällä infotiskiltä. Opastus on maksutonta.</p><p>Tervetuloa!</p><p>Kuva: Karri Anttila</p>"
            },
            "provider": null,
            "name": {
                "fi": "Enter ry:n tietotekniikkaopastus senioreille"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264679/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265230",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:18620",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:vantaa",
                        "municipality": null,
                        "name": {
                            "fi": "Vantaa",
                            "sv": "Vanda"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:03.098416Z",
                "last_modified_time": "2024-02-06T13:10:28.390250Z",
                "custom_data": null,
                "email": "lansimaki.kirjasto@vantaa.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "01280",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 222,
                "image": 8093,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.11454,
                        60.24641
                    ]
                },
                "address_locality": {
                    "fi": "Vantaa",
                    "sv": "Vanda",
                    "en": "Vantaa"
                },
                "info_url": {
                    "fi": "https://www.helmet.fi/lansimaenkirjasto",
                    "sv": "https://www.helmet.fi/vasterkullabibliotek",
                    "en": "https://www.helmet.fi/lansimakilibrary"
                },
                "telephone": {
                    "fi": "+358 43 825 1548"
                },
                "description": {
                    "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.",
                    "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.",
                    "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software."
                },
                "street_address": {
                    "fi": "Suunnistajankuja 2",
                    "sv": "Orienterargränden 2",
                    "en": "Suunnistajankuja 2"
                },
                "name": {
                    "fi": "Länsimäen kirjasto",
                    "sv": "Västerkulla bibliotek",
                    "en": "Länsimäki Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18620/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10691",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.020768Z",
                    "last_modified_time": "2024-02-06T13:24:10.723059Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2479,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Vantaa",
                        "sv": "Vanda",
                        "en": "Vantaa",
                        "ru": "Vantaa RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11733",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.739009Z",
                    "last_modified_time": "2024-02-06T13:24:07.909651Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2733,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kielikahvilat ja keskusteluryhmät",
                        "sv": "Språkcafeér och diskussionsgrupper",
                        "en": "Language Cafés and discussion groups",
                        "ru": "Языковые кафе и дискуссионные клубы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p14004",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "diskussion"
                    ],
                    "created_time": "2023-08-16T05:19:31.102174Z",
                    "last_modified_time": "2023-08-16T05:19:31.102192Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2619,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "keskustelu",
                        "sv": "samtal",
                        "en": "conversation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p556",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "språk (språkvetenskap)",
                        "kielet",
                        "kieli (kielitiede)",
                        "språk (typer)",
                        "språket"
                    ],
                    "created_time": "2023-08-16T05:19:47.449652Z",
                    "last_modified_time": "2023-08-16T05:19:47.449670Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3262,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kieli ja kielet",
                        "sv": "språk",
                        "en": "languages"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2689,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:29:30.673184Z",
                    "last_modified_time": "2023-08-15T15:29:30.673205Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{1427746A-B03C-4995-A2A0-581527786EBD}/104886",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:34:01.290755Z",
            "last_modified_time": "2023-10-09T06:29:20.819658Z",
            "date_published": "2023-08-14T11:25:39.677000Z",
            "start_time": "2023-09-08T07:00:00Z",
            "end_time": "2023-09-08T08: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": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Opi suomea Länsimäen kirjastolla!"
            },
            "description": {
                "fi": "<p>Opi suomea Länsimäen kirjastolla perjantaisin klo 10.00-11.30. </p><p>Kyseessä on jatkuva suomen kielen kurssi. Sovi osallistumisestasi opettajan kanssa. </p><p>Opettajan yhteystiedot: Gaïdig Dubois, puh. 0405757183</p><p>kuva: Länsimäen kirjasto</p>"
            },
            "provider": null,
            "name": {
                "fi": "Opi suomea aamuryhmä"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265230/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267002",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8192",
                "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:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ala-Malmi",
                            "sv": "Nedre Malm"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:39.318952Z",
                "last_modified_time": "2024-02-06T13:09:55.947599Z",
                "custom_data": null,
                "email": "malmin_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00700",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 229,
                "image": 7816,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.014954,
                        60.25052
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/malminkirjasto",
                    "sv": "http://www.helmet.fi/malmbibliotek",
                    "en": "http://www.helmet.fi/malmilibrary"
                },
                "telephone": {
                    "fi": "+358 9 310 85070"
                },
                "description": null,
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "name": {
                    "fi": "Malmin kirjasto",
                    "sv": "Malms bibliotek",
                    "en": "Malmi Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10595",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.573028Z",
                    "last_modified_time": "2024-02-06T13:24:05.656107Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3157,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lapset ja perheet",
                        "sv": "Barn och familjer",
                        "en": "Children and families",
                        "ru": "Lapset ja perheet RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:12005",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.085373Z",
                    "last_modified_time": "2024-02-06T13:24:08.630047Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3415,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lasten tapahtumat",
                        "sv": "Barn",
                        "en": "Kids",
                        "ru": "Детям"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13050",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:15:07.041577Z",
                    "last_modified_time": "2023-08-16T05:15:07.041594Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2890,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapsiperheet",
                        "sv": "barnfamiljer",
                        "en": "families with children"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3742,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-28T17:24:56.418904Z",
                    "last_modified_time": "2023-08-28T17:24:56.418926Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{E3305FE6-F313-4877-836D-E8B167B82090}/105284",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3742/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-28T17:24:56.274177Z",
            "last_modified_time": "2023-10-09T06:29:20.426736Z",
            "date_published": "2023-08-28T15:59:00Z",
            "start_time": "2023-09-08T07:00:00Z",
            "end_time": "2023-09-08T08: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": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa vauvojen omaan tuokioon Malmin kirjastoon!"
            },
            "description": {
                "fi": "<p>Tervetuloa vauvojen omaan tuokioon loruleikkimään, maistelemaan kirjoja ja viettämään leppoisasti aikaa yhdessä! Tuokioissa on vaihtuvia teemoja, mukaan voi tulla vaikka joka kerta tai silloin, kun vauvan rytmiin sopii. Tuokiot sopivat noin 4-14 kuukauden ikäisille oman aikuisen seurassa. Lisätietoa Suvilta <a href=\"mailto:suvi.vehmas@hel.fi\">suvi.vehmas@hel.fi</a>. </p><p>Koko syksyn teemat: </p><p>8.9. Loruleikkejä </p><p>22.9. Mustikassa! -sosemaalausta </p><p>6.10. Vauvojen luontokylpy (sään salliessa ulkona) </p><p>20.10. Loruja ja kirjavinkkejä pienille </p><p>3.11. Vauvojen luontokylpy (sään salliessa ulkona) </p><p>17.11. Värileikkejä ja musiikkia </p><p>1.12. Punastuu! -sosemaalausta </p><p>15.12. Pienet tontut liikkuu! Jouluiset lorut ja kahvittelua </p>"
            },
            "provider": null,
            "name": {
                "fi": "Vauvojen loruaamut"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267002/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:266754",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15417",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:19.044131Z",
                "last_modified_time": "2025-01-31T06:09:29.808662Z",
                "custom_data": null,
                "email": "sellonkirjasto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02600",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 4240,
                "image": 180919,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.80934,
                        60.217506
                    ]
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925"
                },
                "telephone": {
                    "fi": "+358 9 8165 7603"
                },
                "description": null,
                "street_address": {
                    "fi": "Leppävaarankatu 9",
                    "sv": "Albergagatan 9",
                    "en": "Leppävaarankatu 9"
                },
                "name": {
                    "fi": "Sellon kirjasto",
                    "sv": "Sellobiblioteket",
                    "en": "Sello Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10675",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.674749Z",
                    "last_modified_time": "2024-02-06T13:24:09.413772Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2300,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Seniorit",
                        "sv": "Seniorer",
                        "en": "Senior citizens"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10690",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.435139Z",
                    "last_modified_time": "2024-02-06T13:24:05.676676Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3875,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoo",
                        "sv": "Esbo",
                        "en": "Espoo",
                        "ru": "Espoo RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.512501Z",
                    "last_modified_time": "2024-02-06T13:24:05.510383Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2460,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut tapahtumat",
                        "sv": "Övriga evenemang",
                        "en": "Other events",
                        "ru": "Другие "
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2433",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ikä-ihmiset",
                        "ikäihmiset",
                        "gamlingar",
                        "elderly",
                        "old people",
                        "older adults",
                        "senior citizens",
                        "iäkkäät",
                        "seniorit",
                        "vanhukset",
                        "gamla",
                        "seniorer",
                        "äldre människor",
                        "äldre personer",
                        "åldringar"
                    ],
                    "created_time": "2023-08-16T05:17:43.642288Z",
                    "last_modified_time": "2023-08-16T05:17:43.642316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 15288,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ikääntyneet",
                        "sv": "äldre",
                        "en": "older people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3712,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-25T11:02:33.163746Z",
                    "last_modified_time": "2024-02-06T13:38:59.083441Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{8ADEE60E-2A4A-4C46-83E6-6B485574A182}/105217",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3712/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2023-08-25T11:05:16.630177Z",
            "last_modified_time": "2023-10-09T06:29:19.993921Z",
            "date_published": "2023-08-25T09:36:00Z",
            "start_time": "2023-09-08T07:00:00Z",
            "end_time": "2023-09-08T08: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": "Akseli-sali"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jooga on kokonaisvaltainen käsitys ihmisen hyvinvoinnista ja tarjoaa paljon helppoja harjoituksia terveyden ja tasapainon ylläpitämiseen ja kehittämiseen."
            },
            "description": {
                "fi": "<h3>Perjantaisin klo 10-11 Akseli-salissa ( EI 22.9.) </h3></p><p>Jooga on kokonaisvaltainen käsitys ihmisen hyvinvoinnista ja tarjoaa paljon helppoja harjoituksia terveyden ja tasapainon ylläpitämiseen ja kehittämiseen.</p><p>Seniorijoogaa ohjaa kokenut Markku Sosimäki eli Dada Rasatmakananda. Hän on toiminut jooganopettajana ympäri maailman jo 40 vuoden ajan.</p><p>Tarvitset vain tavalliset mukavat vaatteet ja alustan lattialla olemista varten. Alustaksi kelpaa joogamatto, makuualusta tai mikä tahansa viltti.</p><p>Tervetuloa!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Seniorijoogaa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266754/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:261588",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8150",
                "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:haaga",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Haaga",
                            "sv": "Haga"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:etelä-haaga",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Etelä-Haaga",
                            "sv": "Södra Haga"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:haaga",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Haaga",
                            "sv": "Haga"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:37.983945Z",
                "last_modified_time": "2025-08-06T05:09:26.152118Z",
                "custom_data": null,
                "email": "etela-haagan_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 61,
                "image": 1423650,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.891476,
                        60.213963
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/etelahaagankirjasto",
                    "sv": "http://www.helmet.fi/sodrahagabibliotek",
                    "en": "http://www.helmet.fi/etelahaagalibrary"
                },
                "telephone": {
                    "fi": "+358 9 310 85032"
                },
                "description": null,
                "street_address": {
                    "fi": "Isonnevantie 16 B",
                    "sv": "Stormyrvägen 16 B",
                    "en": "Isonnevantie 16 B"
                },
                "name": {
                    "fi": "Etelä-Haagan kirjasto",
                    "sv": "Södra Haga bibliotek",
                    "en": "Etelä-Haaga Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8150/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10595",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.573028Z",
                    "last_modified_time": "2024-02-06T13:24:05.656107Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3157,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lapset ja perheet",
                        "sv": "Barn och familjer",
                        "en": "Children and families",
                        "ru": "Lapset ja perheet RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:12005",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.085373Z",
                    "last_modified_time": "2024-02-06T13:24:08.630047Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3415,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lasten tapahtumat",
                        "sv": "Barn",
                        "en": "Kids",
                        "ru": "Детям"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13050",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:15:07.041577Z",
                    "last_modified_time": "2023-08-16T05:15:07.041594Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2890,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapsiperheet",
                        "sv": "barnfamiljer",
                        "en": "families with children"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2687,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:29:29.958120Z",
                    "last_modified_time": "2024-02-06T13:38:48.016178Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{EAA9CA43-B035-4982-9838-66A97CFEC178}/75264",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2687/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:33:58.820602Z",
            "last_modified_time": "2023-10-09T05:34:11.223455Z",
            "date_published": "2023-06-16T08:59:00Z",
            "start_time": "2023-09-08T07:00:00Z",
            "end_time": "2023-09-08T07: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": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lorutuokiot vauvoille ja taaperoille joka perjantai klo 10!"
            },
            "description": {
                "fi": "<p>Iloa, kielen oppimista ja sosiaalisuutta edistävää toimintaa loruleikkien muodossa. Tuokiot on tarkoitettu vauvoille ja alle 4-vuotialle lapsille aikuisineen.</p><p>Syyskaudella perjantaisin 18.8.-15.12. klo 10. Huom! pe 6.10. lorutuokio on peruttu sairaustapauksen vuoksi.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Tervetuloa!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Vauvojen ja taaperoiden lorutuokio"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261588/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267284",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:51342",
                "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:vironniemi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vironniemi",
                            "sv": "Estnäs"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kluuvi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kluuvi",
                            "sv": "Gloet"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kluuvi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kluuvi",
                            "sv": "Gloet"
                        }
                    }
                ],
                "created_time": "2023-08-15T12:11:22.597441Z",
                "last_modified_time": "2024-04-12T05:09:52.010183Z",
                "custom_data": null,
                "email": "oodi@hel.fi",
                "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": 1220,
                "image": 9855,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.938158,
                        60.17397
                    ]
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.oodihelsinki.fi/",
                    "sv": "https://oodihelsinki.fi/sv/",
                    "en": "https://oodihelsinki.fi/en/"
                },
                "telephone": {
                    "fi": "+358 9 310 85000"
                },
                "description": {
                    "fi": "Oodi on tapahtumapaikka, lukemisen talo ja monipuolinen kaupunkikokemus.\nOodi tarjoaa tietoja, taitoja ja tarinoita, ja sinne on helppo tulla oppimaan,\neläytymään, nauttimaan ja työskentelemään. Kaikille avoin uuden ajan kirjasto\non elävä ja toiminnallinen kohtaamispaikka.",
                    "sv": "Ode är en evenemangsplats, ett läsandets hus och en mångsidig stadsupplevelse. Det bjuder på kunskap, nya färdigheter och berättelser, och är lättillgänglig för inlärning, inlevelse, arbete och avkoppling. Det är ett modernt bibliotek och en levande och funktionell mötesplats till för alla stadsbor.",
                    "en": "Oodi is a venue for events, a house of reading and a diverse urban experience.\nIt will provide its users with knowledge, new skills and stories, and will be an\neasy place to access for learning, story immersion, work and relaxation. Oodi\nis a library of a new era, a living and functional meeting place open for all."
                },
                "street_address": {
                    "fi": "Töölönlahdenkatu 4",
                    "sv": "Tölöviksgatan 4",
                    "en": "Töölönlahdenkatu 4"
                },
                "name": {
                    "fi": "Keskustakirjasto Oodi",
                    "sv": "Helsingfors centrumbibliotek Ode",
                    "en": "Helsinki Central Library Oodi"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10595",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.573028Z",
                    "last_modified_time": "2024-02-06T13:24:05.656107Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3157,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lapset ja perheet",
                        "sv": "Barn och familjer",
                        "en": "Children and families",
                        "ru": "Lapset ja perheet RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11893",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.282484Z",
                    "last_modified_time": "2024-02-06T13:25:26.452402Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 178,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Keskustakirjasto Oodi",
                        "sv": "Helsingfors centrumbibliotek Ode",
                        "en": "Helsinki Central Library Oodi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:12005",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.085373Z",
                    "last_modified_time": "2024-02-06T13:24:08.630047Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3415,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lasten tapahtumat",
                        "sv": "Barn",
                        "en": "Kids",
                        "ru": "Детям"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13050",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:15:07.041577Z",
                    "last_modified_time": "2023-08-16T05:15:07.041594Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2890,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapsiperheet",
                        "sv": "barnfamiljer",
                        "en": "families with children"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3786,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-30T16:21:25.875851Z",
                    "last_modified_time": "2023-08-30T16:21:25.875872Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{BC2771C6-F310-4A3A-9788-4D8BF6C317A7}/105406",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3786/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-30T12:26:39.446232Z",
            "last_modified_time": "2023-10-08T16:28:39.959381Z",
            "date_published": "2023-08-30T11:26:00Z",
            "start_time": "2023-09-07T05:00:00Z",
            "end_time": "2023-09-07T18: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": "Lasten tapahtumatila, 3. krs"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa kokeilemaan Satuseinän uutta Feel&Play -sovellusta ja oppimaan tunnetaidoista!"
            },
            "description": {
                "fi": "<p>Tervetuloa kokeilemaan Satuseinän uutta Feel &amp; Play -sovellusta Lasten tapahtumatilaan 3. kerrokseen 30.8.-11.9.!</p><p>Feel &amp; Play on musiikillinen sovellus, jonka avulla harjoitellaan tunnetaitoja. Sovelluksen taustalla on ajatus, että jokaisella lapsella on oikeus ilmaista ja harjoitella tunnetaitoja omana itsenään, sellaisena kuin on. Kaikkien tunteiden tunnistaminen ja ilmaiseminen on jokaiselle lapselle sallittua, eikä tunteita luokitella hyviin tai huonoihin, positiivisiin tai negatiivisiin, sallittuihin tai kiellettyihin. Lasta kannustetaan kuuntelemiseen, keskittymiseen ja luovaan ilmaisuun.</p><p>Sovelluksen avulla lapsella on mahdollisuus saada samaistumisen kokemuksia ja välineitä tunneilmaisuun. Luovuutta herätellään tarinankerronnan, klassisen musiikin ja pelillisten osioiden avulla, joiden kautta lapsi pääsee itse kuuntelemaan, maalailemaan musiikin herättämiä tunteita, tai soittamaan fantasiasoitinta. Luova tekeminen on lapsen aisteille avain, jonka kautta opitaan, innostutaan, vahvistutaan ja rentoudutaan. </p><p>Sovelluksen pelilliset osiot ovat helppokäyttöisiä ja lapsiystävällisiä. Sovellus on suunnattu 5-8 vuotiaille, mutta se soveltuu helposti myös nuoremmille tai vanhemmille lapsille. Sovellus toimii parhaiten, kun siihen tutustutaan pienryhmissä yhdessä ohjaavan aikuisen kanssa.</p><p>Pilotointi järjestetään yhteistyössä MusicFairyTalesin kanssa.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Tervetuloa kokeilemaan uutta Satuseinää!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267284/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:258174",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:19217",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:vantaa",
                        "municipality": null,
                        "name": {
                            "fi": "Vantaa",
                            "sv": "Vanda"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:17.493294Z",
                "last_modified_time": "2024-02-06T13:10:31.639869Z",
                "custom_data": null,
                "email": "martinlaakso.kirjasto@vantaa.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "01620",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 190,
                "image": 8126,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.851395,
                        60.277206
                    ]
                },
                "address_locality": {
                    "fi": "Vantaa",
                    "sv": "Vanda",
                    "en": "Vantaa"
                },
                "info_url": {
                    "fi": "https://www.helmet.fi/martinlaaksonkirjasto",
                    "sv": "https://www.helmet.fi/martensdalbibliotek",
                    "en": "https://www.helmet.fi/martinlaaksolibrary"
                },
                "telephone": {
                    "fi": "+358 43 825 0909"
                },
                "description": {
                    "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.",
                    "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.",
                    "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software."
                },
                "street_address": {
                    "fi": "Laajaniityntie 3",
                    "sv": "Bredängsvägen 3",
                    "en": "Laajaniityntie 3"
                },
                "name": {
                    "fi": "Martinlaakson kirjasto",
                    "sv": "Mårtensdals bibliotek",
                    "en": "Martinlaakso Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19217/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10691",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.020768Z",
                    "last_modified_time": "2024-02-06T13:24:10.723059Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2479,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Vantaa",
                        "sv": "Vanda",
                        "en": "Vantaa",
                        "ru": "Vantaa RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11687",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.722776Z",
                    "last_modified_time": "2024-02-06T13:24:07.827439Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 794,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Pelitapahtumat",
                        "sv": "Spel",
                        "en": "Games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?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": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2579,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:53.145065Z",
                    "last_modified_time": "2024-02-06T13:38:58.746360Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9B2F9EC8-37D0-4863-B9F6-C2641C8D4462}/90602",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2579/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:33:58.465000Z",
            "last_modified_time": "2023-10-08T15:20:44.251844Z",
            "date_published": "2023-04-19T07:52:00Z",
            "start_time": "2023-09-07T14:00:00Z",
            "end_time": "2023-09-07T17: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": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule kokeilemaan erilaisia lautapelejä! Tapahtuma on suunnattu nuorille ja aikuisille. Yhteistyössä Suomen lautapeliseura ryn kanssa."
            },
            "description": {
                "fi": "<p>Tervetuloa pelaamaan erilaisia lautapelejä joka torstai klo 17-20!<br><br> Martinlaakson kirjaston lautapelikerho on suunnattu nuorille ja aikuisille. Huomaathan että osassa peleistä tekstit ja säännöt ovat englanniksi.<br><br> Kerhon järjestää Suomen lautapeliseura ry.</p><p>Pelitietoa: <a href=\"https://lautapeliseura.fi/\">lautapeliseura.fi</a></p><p>Kuva: Pixabay.com</p>"
            },
            "provider": null,
            "name": {
                "fi": "Pelataan lautapelejä (aikuisille ja nuorille)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:258174/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:250719",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:18703",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:vantaa",
                        "municipality": null,
                        "name": {
                            "fi": "Vantaa",
                            "sv": "Vanda"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:06.242532Z",
                "last_modified_time": "2024-02-06T13:10:29.153239Z",
                "custom_data": null,
                "email": "tikkurila.kirjasto@vantaa.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "01300",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 660,
                "image": 8102,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.041939,
                        60.29517
                    ]
                },
                "address_locality": {
                    "fi": "Vantaa",
                    "sv": "Vanda",
                    "en": "Vantaa"
                },
                "info_url": {
                    "fi": "https://www.helmet.fi/tikkurilankirjasto",
                    "sv": "https://www.helmet.fi/dickursbybibliotek",
                    "en": "https://www.helmet.fi/tikkurilalibrary"
                },
                "telephone": {
                    "fi": "+358 43 824 8307"
                },
                "description": {
                    "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.",
                    "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.",
                    "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software."
                },
                "street_address": {
                    "fi": "Lummetie 4",
                    "sv": "Näckrosvägen 4",
                    "en": "Lummetie 4"
                },
                "name": {
                    "fi": "Tikkurilan kirjasto",
                    "sv": "Dickursby bibliotek",
                    "en": "Tikkurila Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10691",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.020768Z",
                    "last_modified_time": "2024-02-06T13:24:10.723059Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2479,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Vantaa",
                        "sv": "Vanda",
                        "en": "Vantaa",
                        "ru": "Vantaa RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11686",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.599909Z",
                    "last_modified_time": "2024-02-06T13:24:15.412278Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki",
                        "sv": "Musik",
                        "en": "Music",
                        "ru": "Музыка"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1808",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "säveltaide",
                        "musikkonst",
                        "tonkonst"
                    ],
                    "created_time": "2023-08-16T05:19:45.424900Z",
                    "last_modified_time": "2023-08-16T05:19:45.425071Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2172,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikki",
                        "sv": "musik",
                        "en": "music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2578,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:52.363859Z",
                    "last_modified_time": "2024-02-06T13:38:18.690807Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{01207B38-3272-47FF-9C7B-D7AA8655856D}/76557",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2578/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:33:58.103086Z",
            "last_modified_time": "2023-10-08T15:20:43.784933Z",
            "date_published": "2022-12-28T13:57:00Z",
            "start_time": "2023-09-07T14:00:00Z",
            "end_time": "2023-09-07T17: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": "Musiikkiosasto, 1. krs"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule soittelemaan ja laulamaan helppoja ja tuttuja lauluja Tikkurilan kirjaston musiikkiosaston soittohuoneeseen torstaisin klo 17-20."
            },
            "description": {
                "fi": "<p>Tule soittelemaan ja laulamaan helppoja ja tuttuja lauluja Tikkurilan kirjaston musiikkiosaston soittohuoneeseen torstai-iltaisin.</p><p>Soitetaan ensin alkuperäisartistien tulkintojen mukana, minkä jälkeen porukka itse päättää mihin suuntaan edetään ja millaisia lauluja soitetaan. Apuvälineinä ovat soittohuoneen äänen- ja kuvantoistolaitteet. Sointumerkinnät ja rajallinen määrä nuotteja ovat käytettävissä. Kaikenlaiset soittimet ovat tervetulleita.</p><p>Ei ennakkoilmoittautumista. Maksuton.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Harrastelijasoittajien jamit – avoin ryhmä"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:250719/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268859",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:19580",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:vantaa",
                        "municipality": null,
                        "name": {
                            "fi": "Vantaa",
                            "sv": "Vanda"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:27.303433Z",
                "last_modified_time": "2025-08-08T05:09:33.783809Z",
                "custom_data": null,
                "email": "hakunila.kirjasto@vantaa.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "01200",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 358,
                "image": 8146,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.10364,
                        60.277122
                    ]
                },
                "address_locality": {
                    "fi": "Vantaa",
                    "sv": "Vanda",
                    "en": "Vantaa"
                },
                "info_url": {
                    "fi": "https://www.helmet.fi/hakunilankirjasto",
                    "sv": "https://www.helmet.fi/hakansbolebibliotek",
                    "en": "https://www.helmet.fi/hakunilalibrary"
                },
                "telephone": {
                    "fi": "+358 43 824 8306"
                },
                "description": {
                    "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.",
                    "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.",
                    "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software."
                },
                "street_address": {
                    "fi": "Kimokuja 5",
                    "sv": "Skimmelgränden 5",
                    "en": "Kimokuja 5"
                },
                "name": {
                    "fi": "Hakunilan kirjasto",
                    "sv": "Håkansböle bibliotek",
                    "en": "Hakunila Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10691",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.020768Z",
                    "last_modified_time": "2024-02-06T13:24:10.723059Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2479,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Vantaa",
                        "sv": "Vanda",
                        "en": "Vantaa",
                        "ru": "Vantaa RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11733",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.739009Z",
                    "last_modified_time": "2024-02-06T13:24:07.909651Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2733,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kielikahvilat ja keskusteluryhmät",
                        "sv": "Språkcafeér och diskussionsgrupper",
                        "en": "Language Cafés and discussion groups",
                        "ru": "Языковые кафе и дискуссионные клубы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p14004",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "diskussion"
                    ],
                    "created_time": "2023-08-16T05:19:31.102174Z",
                    "last_modified_time": "2023-08-16T05:19:31.102192Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2619,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "keskustelu",
                        "sv": "samtal",
                        "en": "conversation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p556",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "språk (språkvetenskap)",
                        "kielet",
                        "kieli (kielitiede)",
                        "språk (typer)",
                        "språket"
                    ],
                    "created_time": "2023-08-16T05:19:47.449652Z",
                    "last_modified_time": "2023-08-16T05:19:47.449670Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3262,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kieli ja kielet",
                        "sv": "språk",
                        "en": "languages"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?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": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2576,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:51.105464Z",
                    "last_modified_time": "2023-08-15T15:26:51.105487Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{5FCD13A3-ADB3-4CED-9860-565E17F28B18}/79321",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2576/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-09-26T10:55:43.749548Z",
            "last_modified_time": "2023-10-08T14:17:04.021341Z",
            "date_published": "2023-09-07T13:50:00Z",
            "start_time": "2023-09-07T15:00:00Z",
            "end_time": "2023-09-07T16: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": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa keskustelemaan suomeksi."
            },
            "description": {
                "fi": "<p>Haluatko harjoitella suomen puhumista mukavassa ja turvallisessa ryhmässä? Tule mukaan Hakunilan kirjaston Puhutaan suomea -keskustelukerhoon.</p><p>Voit tulla mukaan myös harjoittelukaveriksi suomea opettelevalle. </p><p>HUOM! Keskustelukerho ei kokoonnu torstaina 12.10.</p><p>Kysy lisää:<br> Paula Puustinen<br> paula.puustinen(at)vantaa.fi<br> puh: 040 480 1828</p><p> <br> Kuva: Unsplash.com / Pricilla du Preez</p>"
            },
            "provider": null,
            "name": {
                "fi": "Puhutaan suomea!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268859/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}