Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 32753,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=1516",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=1514"
    },
    "data": [
        {
            "id": "kulke:60188",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7254",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.860628Z",
                "last_modified_time": "2025-03-27T09:09:26.669262Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 862,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.annantalo.fi/",
                    "sv": "https://www.annantalo.fi/sv/framsidan",
                    "en": "https://www.annantalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.",
                    "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.",
                    "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture."
                },
                "name": {
                    "fi": "Annantalo",
                    "sv": "Annegården",
                    "en": "Annantalo Arts Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:105",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.060968Z",
                    "last_modified_time": "2024-02-06T13:19:14.616316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1314,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lastentapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1953,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:33",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.509726Z",
                    "last_modified_time": "2024-02-06T13:19:13.839978Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 761,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:46",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.650020Z",
                    "last_modified_time": "2024-02-06T13:19:14.062702Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 712,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Annantalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5960,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4813,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5016,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:669",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.230765Z",
                    "last_modified_time": "2024-02-06T13:19:17.537912Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 339,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut kulttuuritapahtumat (monitaide)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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": 13446,
                    "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4094,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:25.538024Z",
                    "last_modified_time": "2023-09-07T14:20:25.538049Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734135.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4094/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:20:25.383800Z",
            "last_modified_time": "2023-10-26T20:13:20.943489Z",
            "date_published": null,
            "start_time": "2023-08-27T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa vauvan kanssa lempeiden tunnelmien maagiseen maailmaan – olemaan, aistimaan ja osallistumaan.",
                "sv": "Välkommen tillsammans med din bebis in i den magiska världen av mjuka stämningar – stig in för att vara, känna och delta.",
                "en": "Welcome to the magical world of mellow moods with your toddler – to be, sense and participate."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/607348B4146A2A09BE21FCE5A657AAEC/Nukketeatteri_Ofelia_co_Hetkia_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/607348B4146A2A09BE21FCE5A657AAEC/Nukketeatteri_Ofelia_co_Stunder_",
                "en": "http://www.annantalo.fi/en/events/event/607348B4146A2A09BE21FCE5A657AAEC/Nukketeatteri_Ofelia_co_Moments_"
            },
            "description": {
                "fi": "<p>Tervetuloa vauvan kanssa lempeiden tunnelmien maagiseen maailmaan – olemaan, aistimaan ja osallistumaan.</p><p>Luomme yhdessä hetkiä, joissa äänet, sävelet, esineet ja soittimet yhdistettynä liikkeeseen johdattelevat tunnelmasta toiseen. Tutut esineet muuttuvat hetkessä olennoiksi, jotka ihmettelevät yhdessä yleisön kanssa ympärillä olevaa maailmaa.</p><p>Toteutuksessa mukana nukketeatteritaiteilijat Anne Lihavainen ja Milla Risku sekä muusikko Saaga Sihvola.</p><p>Kesto: 30–40 min<br>Ikäsuositus: 2–13 kk<br>Maks. 10 vauva + vanhempi -paria per esitys<br>Vapaa pääsy <br>Paikanvaraus: sampofestival.fi</p><p><b>SAMPO Festivaali</b>, Nukketeatteri Sampon järjestämä kansainvälinen nukketeatteritapahtuma, järjestetään 22.–27.8.2023. Annantalo on mukana toteuttamassa festivaalia ja ohjelmassamme on kolme esitystä: Perheen pienimmille suunnatut <i>Me, You, That</i> keskiviikkona 23.8., <i>Moments!</i> sunnuntaina 27.8. sekä alakouluikäisille suunnattu <i>Somewhere else</i> perjantaina 25.8. ja lauantaina 26.8. Kaikki Annantalolla esiintyvät ryhmät, samoin kuin Nukketeatteri Sampo, ovat Annantalon kumppaneita small size -verkostossa.</p><p>Esitysten lisäksi Annantalolla järjestetään <b>Kateryna Lukianenkon</b> projektiin <i>Sixth Sense</i> liittyvä mestarikurssi 22.–24.8. Perjantaina 25.8. klo 13 järjestetään nukketeatterin SAMPOsium Annantalon auditoriossa. Lisätiedot ja lipunmyynti: sampofestival.fi.</p>",
                "sv": "<p>Välkommen tillsammans med din bebis in i den magiska världen av mjuka stämningar – stig in för att vara, känna och delta.</p><p>Tillsammans skapar vi stunder där ljud, melodier, föremål och instrument, kombinerat med rörelse leder oss från en stämning till en annan. Bekanta föremål kan plötsligt förvandlas till varelser som tillsammans med publiken förundras över världen runt omkring oss. Föreställningen är ordlös.</p><p>För förverkligandet står dockteaterkonstnärerna Anne Lihavainen och Milla Risku tillsammans med en musiker Saaga Sihvola.<br> <br>Helheten tar 30–40 minuter. <br>Rekommenderad ålder: 2–13 månader.<br>Max 10 bebisar + förälder/föreställning. <br>Fritt inträde. <br>Platsreservation: sampofestival.fi</p>",
                "en": "<p>Welcome to the magical world of mellow moods with your toddler – to be, sense and participate.</p><p>Together, we create moments where sounds, tones, objects and instruments combined with movement will lead us from one mood to the next. In a flash, familiar objects can turn into beings that wonder the surrounding world together with the audience.</p><p>The performance doesn't use any spoken language and takes 30–40 minutes in its entirety. <br>Max 10 babies with a parent per performance.<br>Age recommendation: 2–13 months. <br>Seat reservation: sampofestival.fi</p>"
            },
            "name": {
                "fi": "Nukketeatteri Ofelia & co: Hetkiä! – SAMPO Festivaali",
                "sv": "Nukketeatteri Ofelia & co: Stunder!",
                "en": "Nukketeatteri Ofelia & co: Moments!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60188/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60183",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7254",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.860628Z",
                "last_modified_time": "2025-03-27T09:09:26.669262Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 862,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.annantalo.fi/",
                    "sv": "https://www.annantalo.fi/sv/framsidan",
                    "en": "https://www.annantalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.",
                    "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.",
                    "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture."
                },
                "name": {
                    "fi": "Annantalo",
                    "sv": "Annegården",
                    "en": "Annantalo Arts Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:102",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.020018Z",
                    "last_modified_time": "2024-02-06T13:19:14.575658Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ohjelmasivun alanosto"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:102/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:105",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.060968Z",
                    "last_modified_time": "2024-02-06T13:19:14.616316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1314,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lastentapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:32",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.496484Z",
                    "last_modified_time": "2024-02-06T13:19:13.818300Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 794,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:350",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.556582Z",
                    "last_modified_time": "2024-02-06T13:19:15.225361Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 429,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:46",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.650020Z",
                    "last_modified_time": "2024-02-06T13:19:14.062702Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 712,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Annantalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5960,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4813,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5016,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": 13446,
                    "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://sampofestival.fi/",
                        "sv": "https://sampofestival.fi/",
                        "en": "https://sampofestival.fi/"
                    },
                    "description": null,
                    "price": {
                        "fi": "16 €",
                        "sv": "16 €",
                        "en": "16 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4060,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:03.538673Z",
                    "last_modified_time": "2023-09-07T14:20:03.538704Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734124.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4060/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:20:03.112892Z",
            "last_modified_time": "2023-10-26T20:13:20.881497Z",
            "date_published": null,
            "start_time": "2023-08-23T10:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Abstrakti kertomus maailman pyöreydestä lapsille.",
                "sv": "En abstrakt berättelse för barn som handlar om jordens rundhet.",
                "en": "An abstract narration about the roundness of the world for the little ones."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/037A89AF67183C34DF790F122F88B221/Studio_DAM_ZA_J_ty_a_to_Mina_sina_ja_tuo",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/037A89AF67183C34DF790F122F88B221/Studio_DAM_ZA_J_ty_a_to_Jag_du_och_det",
                "en": "http://www.annantalo.fi/en/events/event/037A89AF67183C34DF790F122F88B221/Studio_DAM_ZA_J_ty_a_to_Me_You_and_That"
            },
            "description": {
                "fi": "<p>Abstrakti kertomus maailman pyöreydestä lapsille.</p><p>Maailma on pyöreä, maailma pyörii. Tule mukaan pyörimään! Lähdetään seikkailulle galaksien halki yhdessä kosmonauttien kanssa. Vierailemme hehkuvalla planeetalla, kolisevalla planeetalla tai pehmoleluista tehdyllä planeetalla! Tanssijat vievät pikkuyleisön äärettömyyteen ja sitäkin kauemmas.</p><p>Esitys tarjoaa lapsille ensikosketuksen teatteriin ottaen huomioon heidän tarpeensa ja tutustuttaen heidät hienovaraisesti liikkeiden, äänien ja kosketusten maailmaan. Esityksessä yhdistyvät tanssi, akrobatia ja aistileikit, ja se sopii 10 kuukauden ikäisistä 3 vuoden ikäisille lapsille ja heidän vanhemmilleen.</p><p>Ohjaus: Karolína Křížková<br>Musiikki: Jůlie Lupáčová<br>Lavastus: Karolína Jansová<br>Cast: Andrej Lyga, Karolína Křížková</p><p>Kesto: 40 minuuttia<br>Ikäsuositus: 10 kk – 3 vuotta, vanhempien kanssa <br>Liput: 16 €, tiedustelut ja lipunmyynti: sampofestival.fi</p><p><b>SAMPO Festivaali</b>, Nukketeatteri Sampon järjestämä kansainvälinen nukketeatteritapahtuma, järjestetään 22.–27.8.2023. Annantalo on mukana toteuttamassa festivaalia ja ohjelmassamme on kolme esitystä: Perheen pienimmille suunnatut <i>Me, You, That</i> keskiviikkona 23.8., <i>Moments!</i> sunnuntaina 27.8. sekä alakouluikäisille suunnattu <i>Somewhere else</i> perjantaina 25.8. ja lauantaina 26.8. Kaikki Annantalolla esiintyvät ryhmät, samoin kuin Nukketeatteri Sampo, ovat Annantalon kumppaneita small size -verkostossa.</p><p>Esitysten lisäksi Annantalolla järjestetään <b>Kateryna Lukianenkon</b> projektiin <i>Sixth Sense</i> liittyvä mestarikurssi 22.–24.8. Perjantaina 25.8. klo 12 järjestetään nukketeatterin SAMPOsium Annantalon auditoriossa. Lisätiedot ja lipunmyynti: sampofestival.fi.</p>",
                "sv": "<p>En abstrakt berättelse för barn som handlar om jordens rundhet.</p><p>Jorden är rund, jorden snurrar. Häng med och snurra du också! Följ med kosmonauterna på en äventyrlig resa genom galaxerna. Vi besöker den glödande planeten, den rasslande planeten eller en planet som består av mjuka leksaker! Dansarna tar de yngsta i publiken med sig till oändligheten och vidare.</p><p>Föreställningen låter barnen uppleva teater för första gången – den respekterar deras behov och presenterar dem på ett försiktigt sätt för världen av rörelser, ljud och beröring. Den kombinerar dans, akrobatik och lek med sinnena. Föreställningen lämpar sig för barn från tio månader till tre år samt deras föräldrar.</p><p>Regi: Karolína Křížková<br>Musik: Jůlie Lupáčová<br>Scenografi: Karolína Jansová<br>Cast: Andrej Lyga, Karolína Křížková</p><p>Ländg: 40 mins<br>Åldersrekommendation: 10 månad – 3 år, med föreldrar  <br>Biljetter: 16 €, sampofestival.fi</p>",
                "en": "<p>An abstract narration about the roundness of the world for the little ones.</p><p>The world is round, the world spins. Come and spin too! Let's go on an adventurous journey through the galaxies together with the cosmonauts. We will visit the glowing planet, rattling planet or a planet made of soft toys! The dancers will take the smallest audience to infinity and further on.<br> <br>The performance offers children their first contact with the theatre – it respects their needs and sensitively introduces them to the world of movements, sounds and touches. It combines dance, acrobatics and sensory play and it is suitable for children from 10 months to 3 years and their parents.</p><p>Director: Karolína Křížková<br>Music: Jůlie Lupáčová<br>Scenography: Karolína Jansová<br>Cast: Andrej Lyga, Karolína Křížková</p><p>Duration: 40 mins<br>Age recommendation: 10 months – 3 years and their parents<br>Tickets: 16 €, sampofestival.fi</p>"
            },
            "name": {
                "fi": "Studio DAMÚZA: Já, ty a to – Minä, sinä ja tuo – SAMPO Festivaali",
                "sv": "Studio DAMÚZA: Já, ty a to – Jag, du och det – SAMPO Festival",
                "en": "Studio DAMÚZA: Já, ty a to – Me, You and That – SAMPO Festival"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60183/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60182",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7254",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.860628Z",
                "last_modified_time": "2025-03-27T09:09:26.669262Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 862,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.annantalo.fi/",
                    "sv": "https://www.annantalo.fi/sv/framsidan",
                    "en": "https://www.annantalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.",
                    "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.",
                    "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture."
                },
                "name": {
                    "fi": "Annantalo",
                    "sv": "Annegården",
                    "en": "Annantalo Arts Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:102",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.020018Z",
                    "last_modified_time": "2024-02-06T13:19:14.575658Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ohjelmasivun alanosto"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:102/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:105",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.060968Z",
                    "last_modified_time": "2024-02-06T13:19:14.616316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1314,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lastentapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:32",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.496484Z",
                    "last_modified_time": "2024-02-06T13:19:13.818300Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 794,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:350",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.556582Z",
                    "last_modified_time": "2024-02-06T13:19:15.225361Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 429,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:46",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.650020Z",
                    "last_modified_time": "2024-02-06T13:19:14.062702Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 712,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Annantalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5960,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4813,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5016,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": 13446,
                    "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://sampofestival.fi/",
                        "sv": "https://sampofestival.fi/",
                        "en": "https://sampofestival.fi/"
                    },
                    "description": null,
                    "price": {
                        "fi": "16 €",
                        "sv": "16 €",
                        "en": "16 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4058,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:01.659240Z",
                    "last_modified_time": "2023-09-07T14:20:01.659262Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734123.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4058/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:20:01.508900Z",
            "last_modified_time": "2023-10-26T20:13:20.817758Z",
            "date_published": null,
            "start_time": "2023-08-23T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Abstrakti kertomus maailman pyöreydestä lapsille.",
                "sv": "En abstrakt berättelse för barn som handlar om jordens rundhet.",
                "en": "An abstract narration about the roundness of the world for the little ones."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3A316D42F6426DA311E3A4EA7B18A066/Studio_DAM_ZA_J_ty_a_to_Mina_sina_ja_tuo",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/3A316D42F6426DA311E3A4EA7B18A066/Studio_DAM_ZA_J_ty_a_to_Jag_du_och_det",
                "en": "http://www.annantalo.fi/en/events/event/3A316D42F6426DA311E3A4EA7B18A066/Studio_DAM_ZA_J_ty_a_to_Me_You_and_That"
            },
            "description": {
                "fi": "<p>Abstrakti kertomus maailman pyöreydestä lapsille.</p><p>Maailma on pyöreä, maailma pyörii. Tule mukaan pyörimään! Lähdetään seikkailulle galaksien halki yhdessä kosmonauttien kanssa. Vierailemme hehkuvalla planeetalla, kolisevalla planeetalla tai pehmoleluista tehdyllä planeetalla! Tanssijat vievät pikkuyleisön äärettömyyteen ja sitäkin kauemmas.</p><p>Esitys tarjoaa lapsille ensikosketuksen teatteriin ottaen huomioon heidän tarpeensa ja tutustuttaen heidät hienovaraisesti liikkeiden, äänien ja kosketusten maailmaan. Esityksessä yhdistyvät tanssi, akrobatia ja aistileikit, ja se sopii 10 kuukauden ikäisistä 3 vuoden ikäisille lapsille ja heidän vanhemmilleen.</p><p>Ohjaus: Karolína Křížková<br>Musiikki: Jůlie Lupáčová<br>Lavastus: Karolína Jansová<br>Cast: Andrej Lyga, Karolína Křížková</p><p>Kesto: 40 minuuttia<br>Ikäsuositus: 10 kk – 3 vuotta, vanhempien kanssa <br>Liput: 16 €, tiedustelut ja lipunmyynti: sampofestival.fi</p><p><b>SAMPO Festivaali</b>, Nukketeatteri Sampon järjestämä kansainvälinen nukketeatteritapahtuma, järjestetään 22.–27.8.2023. Annantalo on mukana toteuttamassa festivaalia ja ohjelmassamme on kolme esitystä: Perheen pienimmille suunnatut <i>Me, You, That</i> keskiviikkona 23.8., <i>Moments!</i> sunnuntaina 27.8. sekä alakouluikäisille suunnattu <i>Somewhere else</i> perjantaina 25.8. ja lauantaina 26.8. Kaikki Annantalolla esiintyvät ryhmät, samoin kuin Nukketeatteri Sampo, ovat Annantalon kumppaneita small size -verkostossa.</p><p>Esitysten lisäksi Annantalolla järjestetään <b>Kateryna Lukianenkon</b> projektiin <i>Sixth Sense</i> liittyvä mestarikurssi 22.–24.8. Perjantaina 25.8. klo 12 järjestetään nukketeatterin SAMPOsium Annantalon auditoriossa. Lisätiedot ja lipunmyynti: sampofestival.fi.</p>",
                "sv": "<p>En abstrakt berättelse för barn som handlar om jordens rundhet.</p><p>Jorden är rund, jorden snurrar. Häng med och snurra du också! Följ med kosmonauterna på en äventyrlig resa genom galaxerna. Vi besöker den glödande planeten, den rasslande planeten eller en planet som består av mjuka leksaker! Dansarna tar de yngsta i publiken med sig till oändligheten och vidare.</p><p>Föreställningen låter barnen uppleva teater för första gången – den respekterar deras behov och presenterar dem på ett försiktigt sätt för världen av rörelser, ljud och beröring. Den kombinerar dans, akrobatik och lek med sinnena. Föreställningen lämpar sig för barn från tio månader till tre år samt deras föräldrar.</p><p>Regi: Karolína Křížková<br>Musik: Jůlie Lupáčová<br>Scenografi: Karolína Jansová<br>Cast: Andrej Lyga, Karolína Křížková</p><p>Ländg: 40 mins<br>Åldersrekommendation: 10 månad – 3 år, med föreldrar  <br>Biljetter: 16 €, sampofestival.fi</p>",
                "en": "<p>An abstract narration about the roundness of the world for the little ones.</p><p>The world is round, the world spins. Come and spin too! Let's go on an adventurous journey through the galaxies together with the cosmonauts. We will visit the glowing planet, rattling planet or a planet made of soft toys! The dancers will take the smallest audience to infinity and further on.<br> <br>The performance offers children their first contact with the theatre – it respects their needs and sensitively introduces them to the world of movements, sounds and touches. It combines dance, acrobatics and sensory play and it is suitable for children from 10 months to 3 years and their parents.</p><p>Director: Karolína Křížková<br>Music: Jůlie Lupáčová<br>Scenography: Karolína Jansová<br>Cast: Andrej Lyga, Karolína Křížková</p><p>Duration: 40 mins<br>Age recommendation: 10 months – 3 years and their parents<br>Tickets: 16 €, sampofestival.fi</p>"
            },
            "name": {
                "fi": "Studio DAMÚZA: Já, ty a to – Minä, sinä ja tuo – SAMPO Festivaali",
                "sv": "Studio DAMÚZA: Já, ty a to – Jag, du och det – SAMPO Festival",
                "en": "Studio DAMÚZA: Já, ty a to – Me, You and That – SAMPO Festival"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60182/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264865",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8277",
                "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:suutarila",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Suutarila",
                            "sv": "Skomakarböle"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:siltamäki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Siltamäki",
                            "sv": "Brobacka"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:suutarila",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Suutarila",
                            "sv": "Skomakarböle"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:43.783218Z",
                "last_modified_time": "2025-02-28T06:09:26.186086Z",
                "custom_data": null,
                "email": "suutarilan_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00740",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 127,
                "image": 279422,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.003853,
                        60.276405
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85074"
                },
                "street_address": {
                    "fi": "Vaskiniitynkuja 5",
                    "sv": "Kopparängsgränden 5",
                    "en": "Vaskiniitynkuja 5"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/suutarilankirjasto",
                    "sv": "http://www.helmet.fi/skomakarbolebibliotek",
                    "en": "http://www.helmet.fi/suutarilalibrary"
                },
                "description": null,
                "name": {
                    "fi": "Suutarilan kirjasto",
                    "sv": "Skomakarböle bibliotek",
                    "en": "Suutarila Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8277/?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:10847",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:56.319613Z",
                    "last_modified_time": "2024-02-06T13:24:31.038154Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 125,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suutarilan kirjasto "
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10847/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11727",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.526740Z",
                    "last_modified_time": "2024-02-06T13:24:10.745704Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 900,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lukupiirit",
                        "sv": "Bokcirklar",
                        "en": "Book clubs",
                        "ru": "Литературные кружки"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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": 2665,
                    "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2785,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:00.092736Z",
                    "last_modified_time": "2023-08-15T15:32:00.092758Z",
                    "url": "https://www.helmet.fi/download/noname/{E4793FF8-7DE5-456D-9C7F-A341DF7ADBA1}/104756",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2785/?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:51:19.037527Z",
            "last_modified_time": "2023-10-26T16:24:42.699621Z",
            "date_published": "2023-08-07T12:08:00Z",
            "start_time": "2023-10-26T15:00:00Z",
            "end_time": "2023-10-26T16: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,
            "short_description": {
                "fi": "Suutarilan kirjaston lukupiirissä luetaan kiinnostavia kirjoja ja jutellaan niistä teekupin äärellä."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Suutarilan kirjaston lukupiirissä luetaan kiinnostavia kirjoja ja jutellaan niistä teekupin äärellä. Piiri kokoontuu kerran kuussa torstaisin klo 18-19.30 kirjaston monitoimitilassa. Lukupiiriä vetää Maija Sippo. Kirjoja on varattuna kirjastossa lukupiiriläisille.</p> <p>28.9. Jeannette Winterson: Majakanvartija<br> 26.10. Kari Hotakainen: Opetuslapsi<br> 23.11. Miranda July: Avokämmen<br> 14.12. Eeva Kilpi: Animalia: runoja </p> </p> </p> </p> <p> Kuva:Pixabay/ josealbafotos </p> </p>"
            },
            "name": {
                "fi": "Syyskauden lukupiiri"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264865/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268713",
            "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
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85000"
                },
                "street_address": {
                    "fi": "Töölönlahdenkatu 4",
                    "sv": "Tölöviksgatan 4",
                    "en": "Töölönlahdenkatu 4"
                },
                "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/"
                },
                "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."
                },
                "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: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:10778",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:22:35.871605Z",
                    "last_modified_time": "2024-02-06T13:29:31.237819Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 261,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Näyttelyt",
                        "sv": "Utställningar",
                        "en": "Exhibitions"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5121",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:37.715031Z",
                    "last_modified_time": "2023-08-16T05:19:37.715048Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 777,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "näyttelyt",
                        "sv": "utställningar",
                        "en": "exhibitions"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4876,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-21T14:41:02.063966Z",
                    "last_modified_time": "2023-09-21T14:41:02.063986Z",
                    "url": "https://www.helmet.fi/download/noname/{1D2DF3B1-95AF-4661-93DE-AE08F5E8E7D1}/106096",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4876/?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": [],
            "created_time": "2023-09-21T13:32:56.247381Z",
            "last_modified_time": "2023-10-26T16:22:56.444388Z",
            "date_published": "2023-09-21T11:58:00Z",
            "start_time": "2023-09-25T05:00:00Z",
            "end_time": "2023-09-25T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Welcome to Adventures in White Privilege; 50 minutes in the lives of 3 foreigners in Helsinki.",
                "en": "Welcome to Adventures in White Privilege; 50 minutes in the lives of 3 foreigners in Helsinki."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Welcome to Adventures in White Privilege;</p><p>50 minutes in the lives of 3 foreigners in Helsinki.</p><p>Created by Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p><p>A site-specific audiopiece that begins in Oodi central library, and takes the listener on a narrated, comical, musical wander around the railway station and surroundings, and finishes back in Oodi.</p><p>The listener first collects a map entitled \"Adventures in White Privilege\" from the brochure stand next to the info desk on the first floor of Oodi Central Library. The map includes a QR code that can be scanned with a smartphone, which will open a link where the audiopiece can be either streamed or downloaded. The listener can then hear the track through headphones and follow the directions of the audio and the map.</p><p>For potential listeners who require the loan of headphones and/or mp3 player to access the piece, there will be a small number available on request at the info desk.</p><p>The piece is free of charge and will be launched at 15.00 on 24.09.23 and will be available at any time during Oodi's opening hours until 24.10.23.</p><p>The piece is in English, though transcripts in Finnish will be available soon.</p><p>Detailed arranger: Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p>",
                "en": "<p>Welcome to Adventures in White Privilege;</p><p>50 minutes in the lives of 3 foreigners in Helsinki.</p><p>Created by Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p><p>A site-specific audiopiece that begins in Oodi central library, and takes the listener on a narrated, comical, musical wander around the railway station and surroundings, and finishes back in Oodi.</p><p>The listener first collects a map entitled \"Adventures in White Privilege\" from the brochure stand next to the info desk on the first floor of Oodi Central Library. The map includes a QR code that can be scanned with a smartphone, which will open a link where the audiopiece can be either streamed or downloaded. The listener can then hear the track through headphones and follow the directions of the audio and the map.</p><p>For potential listeners who require the loan of headphones and/or mp3 player to access the piece, there will be a small number available on request at the info desk.</p><p>The piece is free of charge and will be launched at 15.00 on 24.09.23 and will be available at any time during Oodi's opening hours until 24.10.23.</p><p>The piece is in English, though transcripts in Finnish will be available soon.</p><p>Detailed arranger: Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p>"
            },
            "name": {
                "fi": "Adventures in White Privilege",
                "en": "Adventures in White Privilege"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "1st floor info",
                "en": "1st floor info"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268713/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268312",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:18262",
                "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:14:55.530181Z",
                "last_modified_time": "2024-02-06T13:10:26.783987Z",
                "custom_data": null,
                "email": "lumo.kirjasto@vantaa.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "01450",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 329,
                "image": 8075,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.076616,
                        60.352
                    ]
                },
                "telephone": {
                    "fi": "+358 43 825 1305"
                },
                "street_address": {
                    "fi": "Urpiaisentie 14",
                    "sv": "Gråsiskvägen 14",
                    "en": "Urpiaisentie 14"
                },
                "address_locality": {
                    "fi": "Vantaa",
                    "sv": "Vanda",
                    "en": "Vantaa"
                },
                "info_url": {
                    "fi": "https://www.helmet.fi/lumonkirjasto",
                    "sv": "https://www.helmet.fi/lumosbibliotek",
                    "en": "https://www.helmet.fi/lumolibrary"
                },
                "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."
                },
                "name": {
                    "fi": "Lumon kirjasto",
                    "sv": "Lumos bibliotek",
                    "en": "Lumo Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4788,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-15T12:34:37.254179Z",
                    "last_modified_time": "2023-09-15T12:34:37.254209Z",
                    "url": "https://www.helmet.fi/download/noname/{9A4915E1-46BA-4D27-BC87-A8D7E7C10670}/105886",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4788/?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-15T12:39:05.238721Z",
            "last_modified_time": "2023-10-26T15:23:01.268396Z",
            "date_published": "2023-09-15T11:03:00Z",
            "start_time": "2023-09-25T05:00:00Z",
            "end_time": "2023-09-25T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Sini-Maaria Vänttisen näyttely Värikäs maailmani Lumon kirjastossa 16.9.-3.10.2023."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Sini-Maaria Vänttisen näyttely Värikäs maailmani Lumon kirjastossa 16.9.-3.10.2023.</p><p>\"Värikäs maailmani -taidenäyttelyssä tarkastellaan luonnon kauneutta ja ihmisen yhteyttä siihen. Teosten abstraktisuus nostattaa maalaukset uudelle tasolle henkisesti, ja jokainen voi tulkita teoksia omasta värikkäästä maailmastaan käsin.\"</p><p> <em>Kuva: Sini-Maaria Vänttinen</em> </p>"
            },
            "name": {
                "fi": "Värikäs maailmani -taidenäyttely 16.9.-3.10.23"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268312/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:263012",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:18241",
                "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:14:55.406784Z",
                "last_modified_time": "2024-02-06T13:10:26.739136Z",
                "custom_data": null,
                "email": "myyrmaki.kirjasto@vantaa.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "01600",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 499,
                "image": 8074,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.853647,
                        60.261337
                    ]
                },
                "telephone": {
                    "fi": "+358 43 825 1308"
                },
                "street_address": {
                    "fi": "Paalutori 3",
                    "sv": "Påltorget 3",
                    "en": "Paalutori 3"
                },
                "address_locality": {
                    "fi": "Vantaa",
                    "sv": "Vanda",
                    "en": "Vantaa"
                },
                "info_url": {
                    "fi": "https://www.helmet.fi/myyrmaenkirjasto",
                    "sv": "https://www.helmet.fi/myrbackabibliotek",
                    "en": "https://www.helmet.fi/myyrmakilibrary"
                },
                "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."
                },
                "name": {
                    "fi": "Myyrmäen kirjasto",
                    "sv": "Myrbacka bibliotek",
                    "en": "Myyrmäki Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?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: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: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": 3118,
                    "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": 2665,
                    "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: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": 3818,
                    "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: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": 3855,
                    "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": 2220,
                    "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": 25622,
                    "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2748,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:31:03.396255Z",
                    "last_modified_time": "2023-08-15T15:31:03.396300Z",
                    "url": "https://www.helmet.fi/download/noname/{ADF985DF-BC8B-4F5B-9484-E3A7D66E4F29}/99391",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2748/?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:39:08.101945Z",
            "last_modified_time": "2023-10-26T15:23:01.168250Z",
            "date_published": "2023-06-30T21:00:00Z",
            "start_time": "2023-09-25T15:00:00Z",
            "end_time": "2023-09-25T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Haluatko oppia suomea? Tule suomen kielen opintoryhmään maanantaisin klo 18!",
                "en": "Do you want to learn Finnish? Let’s Read Together -group gathers on Mondays."
            },
            "info_url": null,
            "description": {
                "fi": "<h3>Haluatko oppia suomea? Tule opiskelemaan Luetaan yhdessä -ryhmään.</h3><p>Tunneilla harjoitellaan lukemaan, kirjoittamaan ja puhumaan suomea kerran viikossa maanantaisin.</p><p>Ryhmän opettajat ovat vapaaehtoisia.</p><p>Opiskelu on ilmaista.</p><p>Voit ottaa lapsesi mukaan tunneille.</p><p>Voit tulla mukaan milloin vain.</p><p>Kirjaston ryhmä on avoin kaikille (naisille ja miehille).</p><p>Huom! Ryhmä kokoontuu 2. kerroksen tapahtumahuoneessa 20.11.</p><p>******<br> Valokuva: Juhani Räty/Vantaan kaupunki</p><p>Logot: Vantaan kaupunki, Helmet-kirjasto, Luetaan yhdessä -verkosto</p>",
                "en": "<h3>Would you like to learn Finnish? Let’s Read Together -group gathers once a week for about two hours.</h3><p>The group practices reading, writing, listening and talking in Finnish.</p><p>Teachers of the groups are volunteers.</p><p>Studying is free.</p><p>You can take your children with you.</p><p>You can join whenever you like.</p><p>The library group is for everybody (women and men).</p><p>Please note that on 20th of November group exceptionally gathers on the second floor.</p><p>******</p><p>Photo: Juhani Räty/City of Vantaa</p><p>Logos: City of Vantaa, Helmet Library, Let's Read Together -network</p>"
            },
            "name": {
                "fi": "Suomen kielen opetusryhmä",
                "en": "Finnish language study group"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kerhotila, 3. kerros",
                "en": "Kerhotila, 3rd floor"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263012/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:261796",
            "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": 3657,
                "image": 7894,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.657864,
                        60.203636
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 3776"
                },
                "street_address": {
                    "fi": "Siltakatu 11",
                    "sv": "Brogatan 11",
                    "en": "Siltakatu 11"
                },
                "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"
                },
                "description": null,
                "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: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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3379,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-17T10:21:40.078708Z",
                    "last_modified_time": "2024-02-06T13:38:05.450982Z",
                    "url": "https://www.helmet.fi/download/noname/{2B62A37D-AC54-4E78-A4CC-3489080C8024}/105010",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3379/?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": [],
            "created_time": "2023-08-15T15:39:07.431891Z",
            "last_modified_time": "2023-10-26T15:23:01.072637Z",
            "date_published": "2023-02-16T07:39:00Z",
            "start_time": "2023-09-25T15:30:00Z",
            "end_time": "2023-09-25T16: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,
            "short_description": {
                "fi": "Ananda Marga community invites everyone to participate in free yoga practice in English and Finnish. Welcome!",
                "en": "Ananda Marga community invites everyone to participate in free yoga practice in English and Finnish. Welcome!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Joogaa aloittelijoille maanantai-iltaisin klo 18.30 - 19.30</p><p>elokuun 21. päivästä lähtien.</p><p>Jooga voi:</p><p>Parantaa mielen keskittymiskykyä</p><p>Lisätä joustavuutta ja notkeutta</p><p>Poistaa fyysistä ja henkistä jännitystä</p><p>Elvyttää energia-tasoa</p><p>Parantaa terveyttä</p><p>Jooga-tunti sisältää:</p><p>Lämmittely-harjoituksia</p><p>Joogan perus-asentoja</p><p>Johdatuksen meditaatioon</p><p>Ota mukaasi oma jooga-mattosi.</p><p>Tule pukeutuneena mukaviin vaatteisiin.</p><p>Kokenut ohjaaja Lynda Bott (sairaanhoitaja ja jooga-hoitojen terapeutti)</p><p>Tuntu on ilmainen palveluna paikallisille; <a href=\"http://www.anandamarga.fi\">www.anandamarga.fi</a></p><p>Lisätietoja saat osoitteesta: lyndabott@hotmail.com….</p><p>Tunti on englanninkielinen suomenkielisellä käännöksellä.</p><br><br>",
                "en": "<p>Yoga for beginners Monday evenings 18.30 to 19.30</p><p>The blue room, Entresse library starting 21st August.</p><p>Improve concentration of mind</p><p>Enhance flexibility</p><p>Remove physical and mental tension</p><p>Revitalize your energy</p><p>Improve health</p><p>It includes:</p><p>Warm up exercises</p><p>Basic yoga posture</p><p>Introduction to meditation</p><p>Bring your own yoga mat</p><p>Wear comfortable clothing</p><p>An experienced instructor, Lynda Bott (medical nurse, yogic treatments therapist)</p><p>The class is free as a service to the local community. (Ananda Marga Yoga association Finland <a href=\"http://www.anandamarga.fi\">www.anandamarga.fi</a>)</p><p>For more information contact <a href=\"mailto:lyndabott@hotmail.com\">lyndabott@hotmail.com</a></p><p>The class will be in English with Finnish translation.</p><br><br>"
            },
            "name": {
                "fi": "Spring into Yoga",
                "en": "Spring into Yoga"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Blue Room",
                "en": "Blue Room"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261796/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268657",
            "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
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85094"
                },
                "street_address": {
                    "fi": "Ostostie 4",
                    "sv": "Köpvägen 4",
                    "en": "Ostostie 4"
                },
                "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"
                },
                "description": null,
                "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: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: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: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": 3159,
                    "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: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: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": "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": "helmet:12006",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:54.198666Z",
                    "last_modified_time": "2024-02-06T13:24:11.600338Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 520,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Nuorten tapahtumat",
                        "sv": "Ungdomar",
                        "en": "Teens",
                        "ru": "Подросткам"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?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": 2896,
                    "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: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": 8544,
                    "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: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": 2558,
                    "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"
                },
                {
                    "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": 13446,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": 2220,
                    "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4872,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-21T13:45:01.941366Z",
                    "last_modified_time": "2023-09-21T13:45:01.941384Z",
                    "url": "https://www.helmet.fi/download/noname/{7EE2B61D-0418-4775-8524-EDD885859E92}/106089",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4872/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-09-21T13:45:00.750319Z",
            "last_modified_time": "2023-10-26T13:22:57.482636Z",
            "date_published": "2023-09-21T11:40:00Z",
            "start_time": "2023-10-26T13:30:00Z",
            "end_time": "2023-10-26T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suomalaisesta konserttikanteleesta ja arabialaisesta oudista sekä laulusta koostuva Duo SaBa esiintyy Kontulan kirjastossa."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Sabatuulen matka on lapsille suunnattu, koko perheen monikulttuurinen ja vuorovaikutuksellinen musiikkiesitys, jossa Suomi ja Lähi-itä kohtaavat.<br><br> Suomalaisesta konserttikanteleesta ja arabialaisesta oudista sekä laulusta koostuva Duo SaBa on säveltänyt musiikkia, joka kuljettaa kuulijat Jordaniasta Suomeen kiehtovien sävyjen ja sävelien kautta. Tämä ainutlaatuinen kokoonpano yhdistää musiikissaan tarinoita ja elementtejä molemmista kulttuureista, joista kuulijat voivat kenties oppia uutta tai löytää tuttua tarttumapintaa. <br><br> Esityksessä käytetään suomen ja arabian kieltä.<br> Esityksen kesto on n. 30 min.<br> Tilasuuteen on vapaa pääsy. <br><br> Duo SaBa eli Juulia Salo ja Nemat Battah ovat musiikin ammattilaisia, pedagogeja ja monipuolisia taiteilijoita pääkaupunkiseudulta.</p><p>Esitys on siirretty alkuperäisestä ajankohdasta pe 13.10. torstaihin 26.10. sairastapauksen vuoksi. </p><p>Lisätietoja: <br><a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.juuliasalo.com%2F%3Ffbclid%3DIwAR2lOytejT2P2FKsVzEXk9IRWkbXntP1U_Spf44hdTQ68CTLS3cOycCsBVM&amp;data=05%7C01%7Csinivuokko.koivula%40hel.fi%7Cbbb9296a112d4f241a7008dbb37f3fa9%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638301131342446141%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=e%2ByWGloq%2BCY5X6MqdAzgOfOYqntJrrK1aEIlJV4vri0%3D&amp;reserved=0\">https://www.juuliasalo.com</a> <br><a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.instagram.com%2Fjuulia.salo%2F%3Ffbclid%3DIwAR3sCw_4uDM0jFWRX9Pv4grYPmpx50hDClHnjNOnMkBpJRe6VfyVPCm_D5o&amp;data=05%7C01%7Csinivuokko.koivula%40hel.fi%7Cbbb9296a112d4f241a7008dbb37f3fa9%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638301131342446141%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=HQ80XiPJueLhp88yP%2Bt84B3rGxJo7i%2BLEDTuReaVkOw%3D&amp;reserved=0\">https://www.instagram.com/juulia.salo/</a><br><a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.instagram.com%2Fnemat.battah%2F%3Ffbclid%3DIwAR3BVhpS-YXdoKEEct-_AhOLSR7FuuscHUNajE1XrOEyH4rb-gf357HXqUk&amp;data=05%7C01%7Csinivuokko.koivula%40hel.fi%7Cbbb9296a112d4f241a7008dbb37f3fa9%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638301131342446141%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=lT4mU1zaMCn9zbkY0hXoDucqUwuMWmLguWjQxa4Iyaw%3D&amp;reserved=0\">https://www.instagram.com/nemat.battah/</a></p><p> <br> <br> Lämpimästi tervetuloa!</p><p> <br> <br> <br> <br> Kuva: Tuomas Tenkanen</p>"
            },
            "name": {
                "fi": "Sabatuulen matka"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268657/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267853",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:14432",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:kauniainen",
                        "municipality": null,
                        "name": {
                            "fi": "Kauniainen",
                            "sv": "Grankulla"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:13:59.570710Z",
                "last_modified_time": "2025-12-06T06:09:16.782649Z",
                "custom_data": null,
                "email": "kirjasto@kauniainen.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02700",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 105,
                "image": 1494110,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.725943,
                        60.21083
                    ]
                },
                "telephone": {
                    "fi": "+358 50 411 6504"
                },
                "street_address": {
                    "fi": "Thurmaninaukio 6",
                    "sv": "Thurmansplatsen 6",
                    "en": "Thurmaninaukio 6"
                },
                "address_locality": {
                    "fi": "Kauniainen",
                    "sv": "Grankulla",
                    "en": "Kauniainen"
                },
                "info_url": {
                    "fi": "http://www.kauniainen.fi/kirjasto",
                    "sv": "http://www.kauniainen.fi/kirjasto",
                    "en": "http://www.kauniainen.fi/kirjasto"
                },
                "description": {
                    "fi": "Kirjasto on avoinna kaikille. Tarjoamme käyttöösi kirjoja, lehtiä, musiikkia, elokuvia, pelejä ja paljon muuta. Meillä on viihtyisät tilat ja ystävällinen henkilökunta, joka auttaa sinua mielellään. Voit käyttää tiloissamme tietokoneita ja joitain muita laitteita. Lukupaikkoja on ripoteltu ympäri kirjastoa: myös tutkijoille, opiskelijoille, nuorille ja lapsille. Pienimmät lapset pitävät varmasti leikkihuoneestamme. Tarvitset kirjastokortin ja PIN-koodin käyttääksesi kaikkia palveluitamme. Kortti on ilmainen, ja saat sen näyttämällä kuvallisen henkilöllisyystodistuksen. Kortilla voit käyttää myös muiden HelMet-kirjastojen palveluita. Kauniaisten kirjasto toimii omatoimikirjastona normaalien palveluaikojen ulkopuolella, aamuisin, iltaisin ja viikonloppuisin. Omatoimikirjastoon kirjaudutaan sisään kirjastokortilla ja pin-koodilla. Omatoimikirjaston ikäraja on 16 vuotta.",
                    "sv": "Biblioteket är öppet för alla. Hos oss hittar du böcker, tidningar, musik, filmer, spel och mycket annat. Biblioteket har trivsamma utrymmen och vänlig personal som gärna hjälper till när det behövs. Vi betjänar gärna på svenska!\nVåra datorer och annan teknisk utrustning står till ditt förfogande. I biblioteket finns läsplatser för alla från forskare och studerande till tonåringar och barn. De minsta barnen brukar uppskatta vårt sagorum med både böcker och leksaker.\nFör att kunna använda alla våra tjänster behöver du ett bibliotekskort och en pin-kod. Du får ditt kort gratis genom att visa upp ett identitetsbevis med foto i biblioteket. Kortet gäller i alla HelMet-biblioteken. Biblioteket är meröppet utanför de normala servicetiderna, på morgnar, kvällar och helger. Du loggar in i det meröppna biblioteket med bibliotekskort och pin-kod. Åldersgränsen för det meröppna biblioteket är 16 år.",
                    "en": "Our library is open to everyone. We have books, magazines and newspapers, music, movies, games and many more resources available. We have comfy facilities and friendly staff who is happy to assist you. You can use computers and other equipment in the library. Reading areas are scattered all over the library: for researchers, students, the youth and children alike. The smallest children are sure to enjoy our playroom. You will need a library card and pin code to be able use all our services. The card is free of charge and you can receive one by presenting an identity card that includes your photo. You can also use the card to access the services at other HelMet libraries. The library has extended self service opening hours outside of the regular opening hours, mornings, evenings and weekends. You can log in with your library card and pin code. The self service library is open to customers who are 16 years old or older."
                },
                "name": {
                    "fi": "Kauniaisten kirjasto",
                    "sv": "Grankulla bibliotek",
                    "en": "Kauniainen library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:14432/?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: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": 3159,
                    "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:10692",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:59.361144Z",
                    "last_modified_time": "2024-03-05T18:23:58.709991Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 105,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kauniainen",
                        "sv": "Grankulla",
                        "en": "Kauniainen"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10692/?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": 2896,
                    "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: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": 8544,
                    "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: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": 13446,
                    "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3912,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-06T14:26:43.433822Z",
                    "last_modified_time": "2023-09-06T14:26:43.433841Z",
                    "url": "https://www.helmet.fi/download/noname/{9F8D41FB-B73F-4C21-A370-18D13C096778}/105656",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3912/?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:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-06T14:29:34.183048Z",
            "last_modified_time": "2023-10-26T13:21:41.402278Z",
            "date_published": "2023-09-06T12:55:44.973000Z",
            "start_time": "2023-09-25T16:00:00Z",
            "end_time": "2023-09-25T16: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,
            "short_description": {
                "fi": "Maanantai-iltaisin lukukoira Emil ja hänen omistajansa Raisa käyvät lastenosastolla lukemassa iltasatuja.",
                "sv": "På måndagskvällar kommer läshunden Emil och hans matte Raisa till barnavdelningen och läser kvällssagor."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Maanantai-iltaisin lukukoira Emil ja hänen omistajansa Raisa käyvät lastenosastolla lukemassa iltasatuja. Tai no, Raisa lukee ja Emil kuuntelee. Kaikki lapset ja perheet ovat tervetulleita mukaan kuuntelemaan. </p><p>Satuja luetaan kirjaston satuhuoneessa, suomeksi ja/tai ruotsiksi tarpeen mukaan. </p>",
                "sv": "<p>På måndagskvällar kommer läshunden Emil och hans matte Raisa till barnavdelningen och läser kvällssagor. Eller nåja, Raisa läser och Emil lyssnar. Alla barn och familjer är välkomna att komma med och lyssna. </p><p>Sagorna läses i bibbans sagorum, på svenska och/eller finska enligt behov. </p>"
            },
            "name": {
                "fi": "Iltasatu lukukoira Emilin kanssa",
                "sv": "Kvällssaga med läshunden Emil"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267853/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265977",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8288",
                "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:puistola",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Puistola",
                            "sv": "Parkstad"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:tapulikaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Tapulikaupunki",
                            "sv": "Stapelstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:suutarila",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Suutarila",
                            "sv": "Skomakarböle"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:44.025020Z",
                "last_modified_time": "2024-02-06T13:09:56.771778Z",
                "custom_data": null,
                "email": "tapulikaupungin_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00750",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 233,
                "image": 7830,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.03384,
                        60.274574
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85075"
                },
                "street_address": {
                    "fi": "Ajurinaukio 5",
                    "sv": "Formansplatsen 5",
                    "en": "Ajurinaukio 5"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/tapulikaupunginkirjasto",
                    "sv": "http://www.helmet.fi/stapelstadenbibliotek",
                    "en": "http://www.helmet.fi/tapulikaupunkilibrary"
                },
                "description": null,
                "name": {
                    "fi": "Tapulikaupungin kirjasto",
                    "sv": "Stapelstadens bibliotek",
                    "en": "Tapulikaupunki Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8288/?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": 4029,
                    "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3545,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-23T16:28:44.667491Z",
                    "last_modified_time": "2023-08-23T16:28:44.667512Z",
                    "url": "https://www.helmet.fi/download/noname/{ADE79EBC-D0FD-4405-B70E-D7B1221D9B58}/105058",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3545/?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-23T16:28:43.182523Z",
            "last_modified_time": "2023-10-26T13:21:41.341808Z",
            "date_published": "2023-08-23T15:05:00.260000Z",
            "start_time": "2023-09-25T15:00:00Z",
            "end_time": "2023-09-25T16: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,
            "short_description": {
                "fi": "Esikoiskirjailija Laura Finska vierailee Tapulissa."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kirjailija Laura Finska saapuu vierailulle Tapulikaupungin kirjastoon maanantaina 25.9. klo 18. Finska kertoo tilaisuudessa esikoisteoksestaan <em>Muut esille tulevat asiat</em>.<br><br> Laura Finskan esikoisromaani kertoo kolmesta nuoresta ja Helsingin kesästä täynnä väriä, melua ja kaaosta. Matilda yrittää opiskella lääkiksessä. Hän on nainen, joka kärsii neurooseista eikä koske yleisessä vessassa pintoihin ilman suojaavaa käsipyyhettä. Matildan on/off-poikaystävä Luka ajaa ratikkaa. Hän on mies, jonka elämä ei tahdo pysyä kiskoilla. Lukan pikkuveli Rafael koettaa selvitä sekoilevan veljen ja maanisdepressiivisen äidin välissä.<br><br> Laura Finska (s. 1996) asuu Tampereella koiransa Mozartin kanssa. Hän ei ryhtynyt, vaan syntyi kirjailijaksi. Hän kirjoittaa, kunnes verisuonet katkeilevat silmistä, ja pyöräilee vispipuuron värisellä Jopolla. Pienenä Laura Finska kuvitteli, että hiukset voivat kasvaa toiseen maahan saakka.<br><br> Tilaisuus on kaikille avoin! Tervetuloa!</p><p> <em>Kuva: Sami Reivinen / KLIK</em> </p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Laura Finska"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265977/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:262504",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8177",
                "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:oulunkylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Oulunkylä",
                            "sv": "Åggelby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:patola",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Patola",
                            "sv": "Dammen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:oulunkylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Oulunkylä",
                            "sv": "Åggelby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:38.612996Z",
                "last_modified_time": "2024-02-06T13:09:55.826412Z",
                "custom_data": null,
                "email": "oulunkylan_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00640",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 193,
                "image": 7813,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.962605,
                        60.22807
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85064"
                },
                "street_address": {
                    "fi": "Kylänvanhimmantie 27",
                    "sv": "Byäldstevägen 27",
                    "en": "Kylänvanhimmantie 27"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/oulunkylankirjasto",
                    "sv": "http://www.helmet.fi/aggelbybibliotek",
                    "en": "http://www.helmet.fi/oulunkylalibrary"
                },
                "description": null,
                "name": {
                    "fi": "Oulunkylän kirjasto",
                    "sv": "Åggelby bibliotek",
                    "en": "Oulunkylä Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8177/?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:10829",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.483391Z",
                    "last_modified_time": "2024-02-06T13:24:26.496595Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 127,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Oulunkylän kirjasto ",
                        "sv": "Åggelby bibliotek ",
                        "en": "Oulunkylä Library"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10829/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11727",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.526740Z",
                    "last_modified_time": "2024-02-06T13:24:10.745704Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 900,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lukupiirit",
                        "sv": "Bokcirklar",
                        "en": "Book clubs",
                        "ru": "Литературные кружки"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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": 2665,
                    "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2747,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:31:01.770590Z",
                    "last_modified_time": "2024-02-06T13:39:05.937573Z",
                    "url": "https://www.helmet.fi/download/noname/{417E1B7A-E326-483F-A53D-07A2527A3601}/94790",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2747/?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:39:07.092027Z",
            "last_modified_time": "2023-10-26T13:21:41.291982Z",
            "date_published": "2023-06-28T11:20:00Z",
            "start_time": "2023-09-25T15:00:00Z",
            "end_time": "2023-09-25T16: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,
            "short_description": {
                "fi": "Tervetuloa mukaan dekkarilukupiiriin!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Dekkarilukupiiri kokoontuu kerran kuukaudessa Oulunkylän kirjastossa. Jos olet intohimoinen dekkareiden lukija, tervetuloa mukaan!</p><p>Syksyn tapaamiskerrat:</p><p>Ma 28.8. Mick Herron: Luupäät<br> Ma 25.9. Tove Alsterdal: Juurakko<br> Ma 30.10. Fredrik Backman: Ahdistunutta porukkaa<br> Ma 27.11. Cara Hunter: Jäljettömiin<br> Ma 18.12. William Burroughs ja Jack Kerouac: Ja virtahevot kiehuivat altaissaan</p><p> <br> Seuraavaksi tapaamiskerraksi luettavan kirjan voi lainata Oulunkylän kirjaston asiakaspalvelupisteestä kuukautta ennen lukupiiriä. Lukupiiriin mahtuu 12 osallistujaa.</p><p> <br> Lisätiedot ja ilmoittautumiset: antti.lehtovirta(at)hel.fi.</p><p>Lämpimästi tervetuloa!<br> </p>"
            },
            "name": {
                "fi": "Dekkarilukupiiri"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262504/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:262278",
            "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
                    ]
                },
                "telephone": {
                    "fi": "+358 43 824 8306"
                },
                "street_address": {
                    "fi": "Kimokuja 5",
                    "sv": "Skimmelgränden 5",
                    "en": "Kimokuja 5"
                },
                "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"
                },
                "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."
                },
                "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: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: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": 3118,
                    "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": 2665,
                    "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": 3855,
                    "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2812,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:29.107456Z",
                    "last_modified_time": "2024-02-06T13:38:05.947859Z",
                    "url": "https://www.helmet.fi/download/noname/{8CCB6D8C-1735-4C5D-B8ED-38CCAB24A603}/101294",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2812/?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:39:06.736330Z",
            "last_modified_time": "2023-10-26T13:21:41.238463Z",
            "date_published": "2023-06-27T12:29:00Z",
            "start_time": "2023-09-25T15:00:00Z",
            "end_time": "2023-09-25T16: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,
            "short_description": {
                "fi": "Haluatko herätellä ruotsin kielen taitoasi yhdessä muiden kanssa? Tule mukaan ruotsin keskustelukerhoon! Kom med till vårt svenska språkkafé och aktivera din svenska."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Är det länge sedan du använt din svenska? Skulle du vilja öva dig i trevligt sällskap? Kom med till vårt svenska språkkafé och aktivera din svenska.</p><p>Språkkaféet leds av bibliotekets egen frivilligarbetare.</p><p>Onko ruotsin kielen taitosi ruosteessa ja haluaisit harjoitella puhumista? Tule rohkeasti mukaan herättelemään kielitaitoasi ruotsin kielen keskustelukerhoon. </p><p>Kerhoa vetää kirjaston oma vapaaehtoinen. </p>"
            },
            "name": {
                "fi": "Vardagssvenska - Svenskt språkcafé"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262278/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268381",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:45317",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:jätkäsaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Jätkäsaari",
                            "sv": "Busholmen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:länsisatama",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Länsisatama",
                            "sv": "Västra Hamnen"
                        }
                    }
                ],
                "created_time": "2023-08-15T11:13:31.858009Z",
                "last_modified_time": "2025-10-11T05:09:43.856353Z",
                "custom_data": null,
                "email": "jatkasaaren_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00220",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 187,
                "image": 9558,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.920868,
                        60.159977
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85815"
                },
                "street_address": {
                    "fi": "Tyynenmerenkatu 1",
                    "sv": "Stillahavsgatan 1",
                    "en": "Tyynenmerenkatu 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/jatkasaari",
                    "sv": "http://www.helmet.fi/busholmen",
                    "en": "http://www.helmet.fi/jatkasaarilibrary"
                },
                "description": null,
                "name": {
                    "fi": "Jätkäsaaren kirjasto",
                    "sv": "Busholmens bibliotek",
                    "en": "Jätkäsaari Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45317/?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": 3159,
                    "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": 2896,
                    "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": 13446,
                    "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4805,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-18T13:30:09.982812Z",
                    "last_modified_time": "2023-09-18T13:30:09.982830Z",
                    "url": "https://www.helmet.fi/download/noname/{7E83E6F0-EA4E-4C38-801C-FB0BF94748AF}/105938",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4805/?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-18T13:30:09.675212Z",
            "last_modified_time": "2023-10-26T13:21:41.184450Z",
            "date_published": "2023-09-18T12:20:24.773000Z",
            "start_time": "2023-09-25T14:30:00Z",
            "end_time": "2023-09-25T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "tapahtuma lapsiperheille"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Miten Jätkäsaaresta tulisi entistä parempi paikka asua? Suunnitellaan yhdessä tulevaisuuden Jätkäsaarta.</p><p>Työpajassa työskennellään kuvakorttien ja visuaalisen ilmaisun kautta. Työpaja soveltuu lapsiperheille ja 5-12 vuotiaille lapsille.</p><p>Työpajassa tuotettua materiaalia hyödynnetään Jätkäsaareen rakennettavan kiertotalouskorttelin kehittämistyössä.</p><p>Tervetuloa!</p>"
            },
            "name": {
                "fi": "Unelmien Jätkäsaari -työpaja"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268381/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268005",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:18855",
                "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:10.025397Z",
                "last_modified_time": "2025-12-18T06:09:21.500797Z",
                "custom_data": null,
                "email": "pahkinarinne.kirjasto@vantaa.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "01710",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 8,
                "image": 8112,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.804855,
                        60.256767
                    ]
                },
                "telephone": {
                    "fi": "+358 40 594 1325"
                },
                "street_address": {
                    "fi": "Mantelikuja 4",
                    "sv": "Mandelgränden 4",
                    "en": "Mantelikuja 4"
                },
                "address_locality": {
                    "fi": "Vantaa",
                    "sv": "Vanda",
                    "en": "Vantaa"
                },
                "info_url": {
                    "fi": "https://www.helmet.fi/pahkinarinteenkirjasto",
                    "sv": "https://www.helmet.fi/pahkinarinteenkirjasto",
                    "en": "https://www.helmet.fi/pahkinarinnelibrary"
                },
                "description": {
                    "fi": "Kirjastossa on lehtiä, kirjoja, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Kirjastossa on käytössä langaton verkko."
                },
                "name": {
                    "fi": "Pähkinärinteen kirjasto",
                    "sv": "Hasselbackens bibliotek",
                    "en": "Pähkinärinne Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18855/?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:10673",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.802978Z",
                    "last_modified_time": "2024-02-06T13:24:11.621016Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 890,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Nuoret",
                        "sv": "Unga",
                        "en": "Youth",
                        "ru": "Nuoret RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?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:12006",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:54.198666Z",
                    "last_modified_time": "2024-02-06T13:24:11.600338Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 520,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Nuorten tapahtumat",
                        "sv": "Ungdomar",
                        "en": "Teens",
                        "ru": "Подросткам"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 9501,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3324,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-16T12:31:31.831656Z",
                    "last_modified_time": "2023-08-16T12:31:31.831676Z",
                    "url": "https://www.helmet.fi/download/noname/{8A454B8F-693B-4AC8-87B2-DA7113E78D09}/104977",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3324/?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:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-11T06:30:03.967781Z",
            "last_modified_time": "2023-10-26T13:21:41.126554Z",
            "date_published": "2023-09-11T05:23:00Z",
            "start_time": "2023-09-25T14:00:00Z",
            "end_time": "2023-09-25T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Glitternisti saapuu kirjastoon opettamaan juuri sinua meikkaamaan säkenöivän glittermeikin. Ilmoittaudu mukaan!"
            },
            "info_url": null,
            "description": {
                "fi": "<p> Maanantaina 25.9. klo 17–19 Glitternisti saapuu Pähkinärinteen kirjastoon opettamaan juuri sinua meikkaamaan säkenöivän glittermeikin. Opetukseen mahtuu mukaan 10 henkilöä ja jokainen osallistuja saa meikkauksessa käytettävän tuotepaketin omakseen tapahtuman jälkeen. Tuotepaketti sisältää neljä glitteriä, siveltimen, vaseliinin, iholiiman sekä ihotimantteja. <strong>Otathan mukaan oman peilin!</strong> Tapahtumaan voit ilmoittautua tämän tekstin alareunasta.</p> <p> Tapahtuma on osa Vantaan kaupunginkirjaston tasoista Oma tila -palvelukokeilua, jonka kohderyhmänä ovat 13–17 –vuotiaat nuoret. </p> <p> Kuva: Glitternisti </p>"
            },
            "name": {
                "fi": "Glitternistin meikkiopetus"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268005/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267504",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8325",
                "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:herttoniemi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Herttoniemi",
                            "sv": "Hertonäs"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:herttoniemen_yritysalue",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Herttoniemen yritysalue",
                            "sv": "Hertonäs företagsområde"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:herttoniemi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Herttoniemi",
                            "sv": "Hertonäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:45.692340Z",
                "last_modified_time": "2024-02-06T13:09:57.202885Z",
                "custom_data": null,
                "email": "herttoniemen_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00880",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 46,
                "image": 7838,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.033434,
                        60.194542
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85080"
                },
                "street_address": {
                    "fi": "Linnanrakentajantie 2",
                    "sv": "Borgbyggarvägen 2",
                    "en": "Linnanrakentajantie 2"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/herttoniemenkirjasto",
                    "sv": "http://www.helmet.fi/hertonasbibliotek",
                    "en": "http://www.helmet.fi/herttoniemilibrary"
                },
                "description": null,
                "name": {
                    "fi": "Herttoniemen kirjasto",
                    "sv": "Hertonäs bibliotek",
                    "en": "Herttoniemi Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8325/?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": 4029,
                    "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3822,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-31T15:29:50.750755Z",
                    "last_modified_time": "2023-08-31T15:29:50.750776Z",
                    "url": "https://www.helmet.fi/download/noname/{A6747AB6-F709-4906-9739-19C8FE3C3FF0}/105445",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3822/?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-31T15:29:50.609898Z",
            "last_modified_time": "2023-10-26T13:21:41.065755Z",
            "date_published": "2023-08-31T13:00:00Z",
            "start_time": "2023-09-25T15:00:00Z",
            "end_time": "2023-09-25T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Herttoniemen kirjasto saa vieraakseen pitkän linjan toimittaja ja kirjailija Jaana Kannisen."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Herttoniemen kirjasto saa vieraakseen pitkän linjan toimittaja ja kirjailija Jaana Kannisen.</p><p>Lähiluonto vastaan kaupunkisuunnittelukoneisto? Kaupunkien vanhoille asuinalueille nousee ennätysvauhtia uusia rakennuksia. Rakennetaan korkeaa ja tiivistä kaupunkia myös sinne, missä ennen oli talojen välissä tilaa ja isoja puita. Asukkaiden on ollut pakko nousta puolustamaan heille tärkeitä metsiä, puistoja ja kallioita.</p><p>Huuto kaupunkiluonnon puolesta (Vastapaino 2022) on Jaana Kannisen ja Sanni Sepon toimittama kirja, joka tarttuu ajankohtaiseen aiheeseen. Tämän päivän päätöksillä on seurauksia, jotka vaikuttavat pitkälle tulevaisuuteemme.</p><p>Jaana Kannista haastattelee Johanna Juvonen Herttoniemen kirjastosta. Kirjailijavierailu striimataan tapahtuman Facebook-sivulla, ja tallenne striimauksesta on katsottavissa Herttoniemen kirjaston <a href=\"https://www.facebook.com/HerttoniemenKirjasto\">Facebook</a>-sivulla kahden viikon ajan.</p><p>Tilaisuus järjestetään kirjastosalissa ja se on kaikille avoin. Tervetuloa! </p><p>*****</p><p>Tapahtuma on osa Itä-Helsingin kirjastojen Tulevaisuus tänään -tietokirjailijakiertuetta. Kiertueen tapahtumissa pohdimme tietokirjailijoiden ja asiantuntijoiden kanssa sitä, miltä tulevaisuus näyttää tämän päivän vinkkelistä, ja toisaalta miten tämän päivän toiminta ja ratkaisut muovaavat tulevaisuuden näkymiä. </p><p>Koko kiertueen tapahtumat: <a href=\"https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Uutispalat/Tulevaisuus_tanaan_tietokirjailijakiertu(267629)\">helmet.fi/tulevaisuustanaan </a></p><p>Kuva: Kukka Ranta / S&amp;S</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Jaana Kanninen"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267504/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265638",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15396",
                "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:16.341489Z",
                "last_modified_time": "2024-04-09T05:09:28.231947Z",
                "custom_data": null,
                "email": "kirjasto.noykkio@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02330",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 127,
                "image": 7943,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.663368,
                        60.167595
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7734"
                },
                "street_address": {
                    "fi": "Oxfotintie 4",
                    "sv": "Oxfotvägen 4",
                    "en": "Oxfotintie 4"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84915",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84915",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84915"
                },
                "description": null,
                "name": {
                    "fi": "Nöykkiön kirjasto",
                    "sv": "Nöykis bibliotek",
                    "en": "Nöykkiö Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15396/?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": 3159,
                    "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: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: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": 2896,
                    "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": 13446,
                    "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2746,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:31:01.424025Z",
                    "last_modified_time": "2024-02-06T13:38:05.364431Z",
                    "url": "https://www.helmet.fi/download/noname/{F28F35DF-3E29-419F-B3A0-8D72C800403F}/88692",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2746/?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-16T07:46:24.800360Z",
            "last_modified_time": "2023-10-26T13:21:40.992425Z",
            "date_published": "2021-09-14T06:34:00Z",
            "start_time": "2023-09-25T15:00:00Z",
            "end_time": "2023-09-25T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tulee lukemaan Tirri-koiralle!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Iloinen hännän heiluttaja Tirri-koira odottaa ohjaajansa kanssa lukijoita Nöykkiön kirjastossa maanantaisin joka toinen viikko 28.8. alkaen klo 18 -19. </p><p>Lukukoira tapaa yli 5-vuotiaita.</p><p>Nähdään!</p>"
            },
            "name": {
                "fi": "Lukukoira Tirri"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265638/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265633",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15317",
                "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:05.978724Z",
                "last_modified_time": "2024-04-09T05:09:27.727853Z",
                "custom_data": null,
                "email": "kirjasto.kauklahti@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02780",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 152,
                "image": 7890,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.594921,
                        60.188026
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 3778"
                },
                "street_address": {
                    "fi": "Hansakallio 2",
                    "sv": "Hansaberget 2",
                    "en": "Hansakallio 2"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84790",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84790",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84790"
                },
                "description": null,
                "name": {
                    "fi": "Kauklahden kirjasto",
                    "sv": "Köklax bibliotek",
                    "en": "Kauklahti Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?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": 3159,
                    "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: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: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": 2896,
                    "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": 13446,
                    "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3315,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-16T07:31:43.157987Z",
                    "last_modified_time": "2023-08-16T07:31:43.158006Z",
                    "url": "https://www.helmet.fi/download/noname/{79DF55E8-FE59-4986-B314-239F76C10B7C}/97943",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3315/?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-16T07:46:21.690561Z",
            "last_modified_time": "2023-10-26T13:21:40.925584Z",
            "date_published": "2022-11-08T14:36:00Z",
            "start_time": "2023-09-25T15:00:00Z",
            "end_time": "2023-09-25T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea kirjastokoirille!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!</p><p> <strong>Nekun ja Pätkiksen</strong> voi tavata parittomien viikkojen maanantaisin klo 18-19.</p><p> <strong>Veitin </strong>voi tavata parillisten viikkojen maanantaisin klo 18-19.</p><p>Tervetuloa tapaamaan lukukoiria!</p>"
            },
            "name": {
                "fi": "Lukukoira tavattavissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265633/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:262256",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8350",
                "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:maunula",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Maunula",
                            "sv": "Månsas"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:maunula",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Maunula",
                            "sv": "Månsas"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:oulunkylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Oulunkylä",
                            "sv": "Åggelby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:46.995158Z",
                "last_modified_time": "2024-02-06T13:09:57.382656Z",
                "custom_data": null,
                "email": "maunulan_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00630",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 163,
                "image": 7841,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.933672,
                        60.231285
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85063"
                },
                "street_address": {
                    "fi": "Metsäpurontie 4",
                    "sv": "Skogsbäcksvägen 4",
                    "en": "Metsäpurontie 4"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.helmet.fi/maunulankirjasto",
                    "sv": "http://www.helmet.fi/mansasbibliotek",
                    "en": "http://www.helmet.fi/maunulalibrary"
                },
                "description": null,
                "name": {
                    "fi": "Maunulan kirjasto",
                    "sv": "Månsas bibliotek",
                    "en": "Maunula Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8350/?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": "helmet:11767",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.835550Z",
                    "last_modified_time": "2024-02-06T13:24:08.704117Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 949,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "muut kielet",
                        "sv": "andra språk",
                        "en": "other languages"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?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: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": 3855,
                    "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: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": 4029,
                    "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2905,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:34:26.065915Z",
                    "last_modified_time": "2024-02-06T13:38:23.389950Z",
                    "url": "https://www.helmet.fi/download/noname/{9BF218F5-07B2-428F-B1CD-E1D297F216A8}/99752",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2905/?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:39:03.783152Z",
            "last_modified_time": "2023-10-26T13:21:40.872542Z",
            "date_published": "2023-06-27T11:32:00Z",
            "start_time": "2023-09-25T14:30:00Z",
            "end_time": "2023-09-25T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Aikuisten satutunti kutsuu kuulijan satujen kiehtovaan maailmaan."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Lumoudutaan saduista, sukelletaan seikkailuun.</p><p>Istahda kuuntelemaan ja hengähdä hetkeksi.Aikuisten satutunti kutsuu kuulijan satujen kiehtovaan maailmaan.</p><p>Satumaailmaan virittäydytään lyhyillä mielikuva- ja läsnäoloharjoituksilla. Loppuun on varattu aikaa yhteiselle teehetkelle ja keskustelulle.</p><p>Satuja lukee Ulla Tarvainen (TeM)</p><p>Maunula-talon syksyn aikuisten satutunnit:</p><p>11.09.2023 17:30 - 19:00 avoin oppimisympäristö, 3. krs<br> 25.09.2023 17:30 - 19:00 avoin oppimisympäristö, 3. krs<br> 09.10.2023 17:30 - 19:00 avoin oppimisympäristö, 3. krs<br> 23.10.2023 17:30 - 19:00 avoin oppimisympäristö, 3. krs<br> 13.11.2023 17:30 - 19:00 avoin oppimisympäristö, 3. krs<br> 20.11.2023 17:30 - 19:00 avoin oppimisympäristö, 3. krs</p><p>Opettaja: Tarvainen Ulla</p><p>Max. opiskelijamäärä: 14</p><p>Min. opiskelijamäärä: 1</p><p>Opetuskieli: suomi</p><p>Lisätiedot:</p><p>Aikuisten satutunti on Maunula-talon yhteissuunnittelussa ideoitu ja toivottu kurssi, jonka toteuttavat Maunulan kirjasto ja Helsingin työväenopisto.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Tervetuloa!</p>"
            },
            "name": {
                "fi": "Aikuisten satutunti ja iltatee"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Avoin oppimisympäristö, 3.krs"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262256/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:262250",
            "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
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85013"
                },
                "street_address": {
                    "fi": "Rikhardinkatu 3",
                    "sv": "Richardsgatan 3",
                    "en": "Rikhardinkatu 3"
                },
                "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"
                },
                "description": null,
                "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:10593",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:53.434177Z",
                    "last_modified_time": "2024-02-06T13:24:44.221776Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 41,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yhdistykset ja seurat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10593/?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:10673",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.802978Z",
                    "last_modified_time": "2024-02-06T13:24:11.621016Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 890,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Nuoret",
                        "sv": "Unga",
                        "en": "Youth",
                        "ru": "Nuoret RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?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: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: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": "helmet:11767",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.835550Z",
                    "last_modified_time": "2024-02-06T13:24:08.704117Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 949,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "muut kielet",
                        "sv": "andra språk",
                        "en": "other languages"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 9501,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16486",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "studenter (högskolestuderande)"
                    ],
                    "created_time": "2023-08-16T05:19:01.858955Z",
                    "last_modified_time": "2023-08-16T05:19:01.858973Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 473,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opiskelijat",
                        "sv": "studerande",
                        "en": "students"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?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": 19274,
                    "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: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": 3855,
                    "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": 2220,
                    "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2744,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:30:59.676193Z",
                    "last_modified_time": "2023-08-15T15:30:59.676215Z",
                    "url": "https://www.helmet.fi/download/noname/{96A0D334-0AD6-429F-BAD1-3A9FDE9F4AAC}/82091",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2744/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:39:03.433482Z",
            "last_modified_time": "2023-10-26T13:21:40.801036Z",
            "date_published": "2021-09-28T07:00:00Z",
            "start_time": "2023-09-25T14:30:00Z",
            "end_time": "2023-09-25T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lukupiirissä luetaan ja keskustellaan italiaksi. Toivotamme italian kielen taitoiset lämpimästi tervetulleeksi mukaan!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Carissime lettrici e carissimi lettori,</p><p>Per l'appuntamento del 20 novembre leggiamo Lolita di Vladimir Nabokov disponibile su Ad alta voce in audiolibro <a href=\"https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.raiplaysound.it%2Faudiolibri%2Flolita%3Ffbclid%3DIwAR2QiUSyhBhii8ScGQAJB8yj88txKhQFUXwHqLGwrlwalFgx8JGhB-_DwDE&amp;h=AT2bKMS5gNe4oyk6HNbizPw6uQefz-DEJTSN9uVu_trPFGhsUX_pyvVAkzClwiNu9cqsM_fnesyI5ILjL1eZmTAK_FeAYE8S7orRiecphoJmSJPCab2jXSRcJ6vwo30tMg&amp;__tn__=-UK-R&amp;c[0]=AT0Ai9EOS5McaseyfspHHTqP6axkxoUXGpVsZn3EaAIuR3pYALAhTf8pRZcifY99R7rgDSNkOk8d8ydm-0WYQSMFdOixXhSH8KMgjwpo9mM-l2WJFgca6p9diSr9wkpAUFklMwBbOcIE5OBmT0WnYTjWcW8EAQ\">https://www.raiplaysound.it/audiolibri/lolita</a></p><p>Potete leggere in parallelo Reading Lolita in Tehran : a memoir in books di Azar Nafisi, purtroppo non è disponibile su Helmet in inglese, potete trovarne alcuni esemplari su Finna.fi</p><p>Per partecipare non è necessario iscriversi nè aver letto i libri concordati: tutti i lettori sono benvenuti. Le prossime letture saranno scelte insieme di volta in volta durante gli incontri.</p><p>Ci incontriamo nella sala VIP della biblioteca di Rikhardinkatu a Helsinki.</p><p>Gli incontri sono già fissati fino alla fine del 2023: 20.11 e 18.12.</p><p>Lukupiirissä luetaan ja keskustellaan italiaksi. Toivotamme italian kielen taitoiset lämpimästi tervetulleeksi mukaan!</p><p>Per informazioni: lia.gasbarra@vantaa.fi</p><p>Foto/Kuva: Lia Gasbarra</p><p>Per informazioni: lia.gasbarra@vantaa.fi</p><p>Foto/Kuva: Lia Gasbarra</p>"
            },
            "name": {
                "fi": "Club del libro, italiankielinen lukupiiri"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "VIP huone, 1. krs Pyydä henkilökunnalta!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262250/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}