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

{
    "meta": {
        "count": 32755,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=850",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=848"
    },
    "data": [
        {
            "id": "kulke:63403",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8740",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ala-Malmi",
                            "sv": "Nedre Malm"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:54.264692Z",
                "last_modified_time": "2025-03-27T09:09:27.443498Z",
                "custom_data": null,
                "email": "malmitalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00700",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1348,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.malmitalo.fi/",
                    "sv": "https://www.malmitalo.fi/sv/framsidan",
                    "en": "https://www.malmitalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.",
                    "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.",
                    "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services."
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:29",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.424657Z",
                    "last_modified_time": "2024-02-06T13:19:13.738407Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1153,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuvat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:42",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.601092Z",
                    "last_modified_time": "2024-02-06T13:19:13.998256Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1336,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Malmitalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4819,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5022,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16327",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "elokuva (taiteet)",
                        "film (konstarter)",
                        "spelfilm"
                    ],
                    "created_time": "2023-08-16T05:17:37.994244Z",
                    "last_modified_time": "2023-08-16T05:17:37.994289Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 351,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvataide",
                        "sv": "filmkonst",
                        "en": "cinema (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150653,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T11:13:46.701744Z",
                    "last_modified_time": "2024-04-17T11:13:46.701760Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749120.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150653/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T11:13:46.658514Z",
            "last_modified_time": "2024-04-17T11:13:46.783025Z",
            "date_published": null,
            "start_time": "2024-05-04T12: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": "Tänä keväänä maailman epätodennäköisin kung fu -mestari Po palaa valkokankaille DreamWorksin uudessa elokuvassa Kung Fu Panda 4.",
                "sv": "I vår, kommer komedi-ikonen Jack Black, för första gången på nästan ett årtionde, tillbaka i rollen som Po, världens mest osannolika kung fu-mästare, i ett roligt nytt kapitel i Dreamworks Animations älskade actionkomedi-franchise: Kung Fu Panda 4.",
                "en": "This spring, for the first time in almost a decade, comedy icon Jack Black returns to his role as Po, the world’s most unlikely kung fu master, with a hilarious, butt-kicking new chapter in DreamWorks Animation’s beloved action-comedy franchise: Kung Fu Panda 4."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/37F934280D610080BAE906F9512CE737/Kung_Fu_Panda_4_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/37F934280D610080BAE906F9512CE737/Kung_Fu_Panda_4_7_",
                "en": "http://www.malmitalo.fi/en/events/event/37F934280D610080BAE906F9512CE737/Kung_Fu_Panda_4_7_"
            },
            "description": {
                "fi": "<p>Tänä keväänä maailman epätodennäköisin kung fu -mestari Po palaa valkokankaille DreamWorksin uudessa elokuvassa Kung Fu Panda 4.</p><p>Kukistettuaan maailmanluokan roistoja rohkeudellaan ja hurjilla taistelutaidoillaan, kohtalo kutsuu lohikäärmesoturi Pon laittamaan pisteen ainaiselle seikkailemiselle. Tarkemmin sanoen, hänestä halutaan Rauhan laakson henkinen johtaja.</p><p>Tässä on kuitenkin muutama ongelma. Ensinnäkin Po tietää henkisestä johtajuudesta yhtä vähän kuin paleodieetistä, ja toiseksi hänen on löydettävä ja koulutettava uusi lohikäärmesoturi ennen kuin voi vastaanottaa uuden ylevän asemansa.</p><p>Kuvioihin ilmestyy lisäksi paha ja voimakas Kameleontti, pieni lisko, joka osaa muuttaa muotoaan miksi tahansa olennoksi. Kameleontti on iskenyt silmänsä Pon Viisauden sauvaan, jolla hän voisi kutsua henkimaailmasta takaisin kaikki Pon sinne lähettämät vastustajat.</p><p>Po löytää avukseen nokkelan arokettu Zhenin, varkaan, joka käy Pon hermoille, mutta osoittautuu taidoiltaan korvaamattomaksi. <br>Hullunkurisen kaksikon on tehtävä yhteistyötä suojellakseen Rauhan laaksoa Kameleontin liskonkynsiltä. Samalla Po myös ymmärtää, että sankareita voi löytyä odottamattomista paikoista.</p><p>Kung Fu Panda 4 -elokuvan on ohjannut Mike Mitchell (Trolls, Shrek ja ikuinen onni) ja tuottanut Rebecca Huntley (Hurja Jengi).</p><p>Elokuvassa puhutaan suomea.</p><p>Kesto 94 min<br>Ikäraja 7<br>Ensi-ilta 22.3.2024</p>",
                "sv": "<p>I vår, kommer komedi-ikonen Jack Black, för första gången på nästan ett årtionde, tillbaka i rollen som Po, världens mest osannolika kung fu-mästare, i ett roligt nytt kapitel i Dreamworks Animations älskade actionkomedi-franchise: Kung Fu Panda 4.</p><p>Efter att, i tre dödsföraktande äventyr, ha besegrat skurkar i världsklass med sitt oöverträffade mod och sina galna kampsportfärdigheter, uppmanar ödet Po, Drakkrigaren, att... ta och lugna ner sig lite. Mer specifikt, han är utvald att bli andlig ledare i Fredens Dal.</p><p>Det ställer till med ett par uppenbara problem. För det första, så vet Po lika mycket om andligt ledarskap som han gör om Paleo-dieten, och för det andra måste han snabbt hitta och träna upp en ny Drakkrigare innan han kan inta sin nya upphöjda position.</p><p>Övrigt: Ännu värre är att det nyligen dykt upp en elak, mäktig magiker; Kameleonten, en liten ödla som kan förvandla sig till vilken varelse som helst, stor som liten. Kameleonten håller sina giriga, pliriga små ögon på Pos Visdomens Stav, som skulle kunna ge henne kraften att återkalla alla de mästerskurkar som Po besegrat och skickat till andevärlden.</p><p>Så, Po kommer att behöva lite hjälp. Han hittar den (typ?) i form av den kvicka och listiga tjuven Zhen, en Korsakräv som verkligen tar sig in under pälsen på Po men vars färdigheter kommer att visa sig ovärderliga. För att skydda Fredens Dal från Kameleontens reptilklor måste denna komiska, udda duo samarbeta. Samtidigt kommer Po att upptäcka att hjältar kan finnas på de mest oväntade platserna.</p><p>Språk: finska</p><p>Längd 94 min <br>Åldersgräns 7 <br>Premiär 22 mars 2024</p>",
                "en": "<p>This spring, for the first time in almost a decade, comedy icon Jack Black returns to his role as Po, the world’s most unlikely kung fu master, with a hilarious, butt-kicking new chapter in DreamWorks Animation’s beloved action-comedy franchise: Kung Fu Panda 4.</p><p>After three death-defying adventures defeating world-class villains with his unmatched courage and mad martial arts skills, Po, the Dragon Warrior, is called upon by destiny to … give it a rest already. More specifically, he’s tapped to become the Spiritual Leader of the Valley of Peace.</p><p>That poses a couple of obvious problems. First, Po knows as much about spiritual leadership as he does about the paleo diet, and second, he needs to quickly find and train a new Dragon Warrior before he can assume his new lofty position.</p><p>Even worse, there’s been a recent sighting of a wicked, powerful sorceress, Chameleon, a tiny lizard who can shapeshift into any creature, large or small. And Chameleon has her greedy, beady little eyes on Po’s Staff of Wisdom, which would give her the power to re-summon all the master villains whom Po has vanquished to the spirit realm.</p><p>So, Po’s going to need some help. He finds it (kinda?) in the form of crafty, quick-witted thief Zhen, a corsac fox who really gets under Po’s fur but whose skills will prove invaluable. In their quest to protect the Valley of Peace from Chameleon’s reptilian claws, this comedic odd-couple duo will have to work together. In the process, Po will discover that heroes can be found in the most unexpected places.</p><p>Language: Finnish</p><p>Duration 94 min<br>Age rating 7 <br>Premiere March 22, 2024</p>"
            },
            "name": {
                "fi": "Kung Fu Panda 4 (7) – Kino Helios",
                "sv": "Kung Fu Panda 4 (7) – Kino Helios",
                "en": "Kung Fu Panda 4 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63403/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:74a312aa-f73b-41c4-ae24-963a79a6f3ab",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:50610",
                "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-15T11:18:56.472404Z",
                "last_modified_time": "2024-02-06T13:15:02.315315Z",
                "custom_data": null,
                "email": "marko.t.hamalainen@aalto.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02150",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 4,
                "image": 9829,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.828264,
                        60.183327
                    ]
                },
                "telephone": {
                    "fi": "+358 50 320 8583"
                },
                "street_address": {
                    "fi": "Metallimiehenkuja 2",
                    "sv": "Metallmansgränden 2",
                    "en": "Metallimiehenkuja 2"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://www.aalto.fi/fi/arts-infra",
                    "sv": "https://www.aalto.fi/sv/arts-infra",
                    "en": "https://www.aalto.fi/en/arts-infra"
                },
                "description": {
                    "fi": "Aalto Valimo sijaitsee keskeisellä paikalla ja pääset meille nopeasti.",
                    "en": "Valimo is centrally located and you will easily reach it."
                },
                "name": {
                    "fi": "Aalto ARTS Valimo",
                    "sv": "Aalto ARTS Valimo",
                    "en": "Aalto ARTS Valimo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:50610/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "yso:p11185",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "live-konsertit",
                        "konserter (evenemang)",
                        "livekonserter"
                    ],
                    "created_time": "2023-08-16T05:18:32.493642Z",
                    "last_modified_time": "2023-08-16T05:18:32.493659Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 213,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "konsertit",
                        "sv": "konserter (framträdanden)",
                        "en": "concerts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1235",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "motion pictures",
                        "movies",
                        "spelfilmer",
                        "elokuvateokset",
                        "filmverk",
                        "film works"
                    ],
                    "created_time": "2023-08-16T05:19:47.298032Z",
                    "last_modified_time": "2023-08-16T05:19:47.298049Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1715,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvat",
                        "sv": "filmer",
                        "en": "films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=Testi_Tapahtuma_Uusituilla_URL-Kentill_TL-DG-230220241114196174"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 140578,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-13T21:46:39.113296Z",
                    "last_modified_time": "2024-04-13T21:46:39.113312Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e99fbec6-f8f0-ee11-904b-002248a120b6",
                    "name": "SILJA SERENADE Helsinki Marko Stampehl",
                    "cropping": "",
                    "photographer_name": "Marko Stampehl",
                    "alt_text": "SILJA SERENADE Helsinki Marko Stampehl",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/140578/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "created_time": "2024-04-11T13:37:58.080134Z",
            "last_modified_time": "2024-04-17T10:42:22.061600Z",
            "date_published": "2024-04-11T13:12:53Z",
            "start_time": "2024-04-17T21:00:00Z",
            "end_time": "2024-04-18T11:00:19Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 0,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-02-21T06:00:00+02:00",
            "enrolment_end_time": "2024-04-09T08:30:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Testi Tapahtuma Uusitulla kuvakentällä TL-DG-16.04.2024"
            },
            "info_url": {
                "fi": "https://www.hel.fi"
            },
            "description": {
                "fi": "<div><div>Testi Tapahtuma Uusitulla kuvakentällä TL-DG-16.04.2024&nbsp;</div></div>"
            },
            "name": {
                "fi": "Testi Tapahtuma Uusitulla kuvakentällä TL-DG-16.04.2024"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Tomi Lepistö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:74a312aa-f73b-41c4-ae24-963a79a6f3ab/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:8393fec8-bc73-4f09-b264-78389c1e424e",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:74762",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [],
                "created_time": "2024-03-11T07:09:59.426727Z",
                "last_modified_time": "2024-03-11T07:09:59.426750Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": null,
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 37,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": null,
                "telephone": null,
                "street_address": null,
                "address_locality": null,
                "info_url": null,
                "description": null,
                "name": {
                    "fi": "Verkkotapahtuma",
                    "sv": "online-evenemang",
                    "en": "online event"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helsinki:aflfbat76e",
                    "has_user_editable_resources": true,
                    "alt_labels": [],
                    "created_time": "2023-09-07T21:31:29.015768Z",
                    "last_modified_time": "2023-09-07T21:31:29.015789Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 118,
                    "image": null,
                    "data_source": "helsinki",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "palvelukeskuskortti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helsinki:aflfbatkwe",
                    "has_user_editable_resources": true,
                    "alt_labels": [],
                    "created_time": "2023-09-07T21:31:28.993077Z",
                    "last_modified_time": "2023-09-07T21:31:28.993104Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 119,
                    "image": null,
                    "data_source": "helsinki",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "omaishoitoperheet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kultus:1",
                    "has_user_editable_resources": true,
                    "alt_labels": [],
                    "created_time": "2023-09-19T11:01:46.669981Z",
                    "last_modified_time": "2023-09-19T11:01:46.669997Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 124,
                    "image": null,
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpaja",
                        "sv": "Verkstad",
                        "en": "Workshop"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p10727",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kansalaisaktivismi",
                        "kansalaisosallistuminen",
                        "kansalaisten osallistuminen",
                        "medborgaraktivism",
                        "medborgardeltagande",
                        "engagemang",
                        "medborgarinflytande"
                    ],
                    "created_time": "2023-08-16T05:18:07.639076Z",
                    "last_modified_time": "2023-08-16T05:18:07.639094Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1714,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "osallistuminen",
                        "sv": "deltagande",
                        "en": "participation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11185",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "live-konsertit",
                        "konserter (evenemang)",
                        "livekonserter"
                    ],
                    "created_time": "2023-08-16T05:18:32.493642Z",
                    "last_modified_time": "2023-08-16T05:18:32.493659Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 213,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "konsertit",
                        "sv": "konserter (framträdanden)",
                        "en": "concerts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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": 9505,
                    "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:p12297",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "klienter inom psykisk rehabilitering",
                        "mentalvårdsklienter",
                        "psykiska rehabiliteringspatienter"
                    ],
                    "created_time": "2023-08-16T05:15:03.736139Z",
                    "last_modified_time": "2023-08-16T05:15:03.736156Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 268,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "mielenterveyskuntoutujat",
                        "sv": "klienter i psykisk rehabilitering",
                        "en": "patients in psychiatric rehabilitation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1235",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "motion pictures",
                        "movies",
                        "spelfilmer",
                        "elokuvateokset",
                        "filmverk",
                        "film works"
                    ],
                    "created_time": "2023-08-16T05:19:47.298032Z",
                    "last_modified_time": "2023-08-16T05:19:47.298049Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1715,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvat",
                        "sv": "filmer",
                        "en": "films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1278",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "tanssitaide",
                        "danskonst",
                        "tanssit",
                        "danser"
                    ],
                    "created_time": "2023-08-16T05:19:38.809008Z",
                    "last_modified_time": "2023-08-16T05:19:38.809026Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2847,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssi",
                        "sv": "dans",
                        "en": "dance (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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:p1393",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "seurat (järjestötoiminta)",
                        "yhdistykset"
                    ],
                    "created_time": "2023-08-16T05:19:47.711187Z",
                    "last_modified_time": "2024-04-06T04:40:52.636427Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 197,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "järjestöt",
                        "sv": "föreningar",
                        "en": "associations (organisations)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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:p15875",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:09:20.413725Z",
                    "last_modified_time": "2023-08-16T05:09:20.413743Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 340,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "luennot",
                        "sv": "föreläsningar",
                        "en": "lectures"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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: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:p16596",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "turistit"
                    ],
                    "created_time": "2023-08-16T05:15:18.345976Z",
                    "last_modified_time": "2023-08-16T05:15:18.345994Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 119,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "matkailijat",
                        "sv": "turister",
                        "en": "tourists and travellers"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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:p1947",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "prosperity",
                        "welfare (well-being)",
                        "välfärd"
                    ],
                    "created_time": "2023-08-16T05:19:38.138600Z",
                    "last_modified_time": "2026-01-10T04:42:05.285206Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1966,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "hyvinvointi",
                        "sv": "välmående",
                        "en": "well-being"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p20513",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:06:24.453161Z",
                    "last_modified_time": "2023-08-16T05:06:24.453180Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 94,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "vauvaperheet",
                        "sv": "småbarnsfamiljer",
                        "en": "families with babies"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?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:p23886",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "klienter i missbrukarvård",
                        "klienter i missbruksrehabilitering",
                        "klienter i missbruksvård",
                        "rehabiliterade missbrukare",
                        "rehabiliteringspatienter (missbruk)"
                    ],
                    "created_time": "2023-08-16T05:10:32.023983Z",
                    "last_modified_time": "2023-08-16T05:10:32.024002Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 63,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "päihdekuntoutujat",
                        "sv": "klienter i missbrukarrehabilitering",
                        "en": "substance abuse rehabilitation patients"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?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:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1942,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p26626",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "distansdeltagande"
                    ],
                    "created_time": "2023-08-16T05:16:56.313702Z",
                    "last_modified_time": "2023-08-16T05:16:56.313725Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 265,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "etäosallistuminen",
                        "sv": "deltagande på distans",
                        "en": "remote participation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 870,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2771",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:53.164665Z",
                    "last_modified_time": "2023-08-16T05:18:53.164683Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 178,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ulkoilu",
                        "sv": "friluftsliv",
                        "en": "outdoor recreation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p3128",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "businesses",
                        "liikeyritykset",
                        "affärsföretag"
                    ],
                    "created_time": "2023-08-16T05:19:47.151589Z",
                    "last_modified_time": "2023-08-16T05:19:47.151618Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 129,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "yritykset",
                        "sv": "företag",
                        "en": "enterprises"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p316",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "leikki (leikkiminen)",
                        "barnlek",
                        "lek (barnlek)",
                        "lek (mental aktivitet)",
                        "leken"
                    ],
                    "created_time": "2023-08-16T05:18:19.516069Z",
                    "last_modified_time": "2023-08-16T05:18:19.516089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 57,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "leikkiminen",
                        "sv": "lek (aktivitet)",
                        "en": "playing (children's games)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p3670",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ruoat"
                    ],
                    "created_time": "2023-08-16T05:19:11.133220Z",
                    "last_modified_time": "2023-08-16T05:19:11.133238Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 102,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ruoka",
                        "sv": "mat",
                        "en": "food"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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": 13450,
                    "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: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": false,
                    "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"
                },
                {
                    "id": "yso:p5590",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "fullvuxna"
                    ],
                    "created_time": "2023-08-16T05:17:14.834826Z",
                    "last_modified_time": "2023-08-16T05:17:14.834850Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 4523,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "aikuiset",
                        "sv": "vuxna",
                        "en": "adults"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4010,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "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:p7179",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "funktionshindrade",
                        "people with disabilities",
                        "invalidit",
                        "monivammaiset",
                        "funktionsnedsatta",
                        "handikappade",
                        "invalider",
                        "multihandikappade",
                        "personer med funktionshinder",
                        "personer med funktionsvariationer",
                        "personer med handikapp"
                    ],
                    "created_time": "2023-08-16T05:19:30.806218Z",
                    "last_modified_time": "2023-08-16T05:19:30.806249Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 112,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "vammaiset",
                        "sv": "personer med funktionsnedsättning",
                        "en": "disabled people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7708",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:13.687429Z",
                    "last_modified_time": "2023-08-16T05:19:13.687454Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 118,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työttömät",
                        "sv": "arbetslösa",
                        "en": "unemployed people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p916",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "motionering",
                        "liikuntakäyttäytyminen",
                        "liikkuminen (liikunta)",
                        "motion (gymnastik)",
                        "motion (idrott)",
                        "motionsbeteende"
                    ],
                    "created_time": "2023-08-16T05:19:42.381880Z",
                    "last_modified_time": "2023-08-16T05:19:42.381897Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 30442,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "liikunta",
                        "sv": "motion",
                        "en": "physical training"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p965",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "damsport",
                        "damidrott",
                        "herridrott",
                        "sport",
                        "herrsport",
                        "idrott",
                        "idrott och sport"
                    ],
                    "created_time": "2023-08-16T05:19:48.065449Z",
                    "last_modified_time": "2024-01-18T04:41:59.260277Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 89,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "urheilu",
                        "sv": "sport och idrott",
                        "en": "sports"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=MKtest547106853"
                    },
                    "description": null,
                    "price": {
                        "fi": "123456789"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?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:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-04-17T07:40:42.819005Z",
            "last_modified_time": "2024-04-17T09:16:08.483050Z",
            "date_published": "2024-04-17T07:32:32Z",
            "start_time": "2024-04-18T06:30:00Z",
            "end_time": "2024-04-18T07:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 99,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 101,
            "minimum_attendee_capacity": 2,
            "enrolment_start_time": "2024-04-17T08:00:00+03:00",
            "enrolment_end_time": "2024-04-18T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "MKtest LE51 suostumustäppätest SHORT DESC"
            },
            "info_url": null,
            "description": {
                "fi": "<div><div>MKtest LE51 suostumustäppätest LONG DESC</div></div>"
            },
            "name": {
                "fi": "MKtest LE51 suostumustäppätest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "MKtest järjestäjä"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:8393fec8-bc73-4f09-b264-78389c1e424e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:aghowmdbg4",
            "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": "kultus:1",
                    "has_user_editable_resources": true,
                    "alt_labels": [],
                    "created_time": "2023-09-19T11:01:46.669981Z",
                    "last_modified_time": "2023-09-19T11:01:46.669997Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 124,
                    "image": null,
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpaja",
                        "sv": "Verkstad",
                        "en": "Workshop"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kultus:17",
                    "has_user_editable_resources": true,
                    "alt_labels": [],
                    "created_time": "2023-09-19T11:01:46.851837Z",
                    "last_modified_time": "2023-09-19T11:01:46.851852Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 75,
                    "image": null,
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki",
                        "sv": "Musik",
                        "en": "Music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 150641,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-17T08:32:50.625429Z",
                    "last_modified_time": "2024-04-17T08:33:20.065259Z",
                    "url": "https://linkedevents.api.test.hel.ninja/media/images/20220811_160249_HDR.jpg",
                    "name": "20220811_160249_HDR.jpg",
                    "cropping": "0,83,500,583",
                    "photographer_name": "Suvi",
                    "alt_text": "kukkia",
                    "data_source": "kultus",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150641/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:58/?format=api"
                }
            ],
            "created_time": "2024-04-17T08:33:20.197409Z",
            "last_modified_time": "2024-04-17T08:34:25.210260Z",
            "date_published": null,
            "start_time": "2024-04-30T07:00:00Z",
            "end_time": "2024-04-30T07: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": "afad",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Testing photo crop</p>\n",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Testing photo",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aghowmdbg4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghopnthg4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15395",
                "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.199535Z",
                "last_modified_time": "2024-04-09T05:09:28.197140Z",
                "custom_data": null,
                "email": "kirjasto.omena@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1939,
                "image": 7942,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.740192,
                        60.160072
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7723"
                },
                "street_address": {
                    "fi": "Suomenlahdentie 1",
                    "sv": "Finnviksvägen 1",
                    "en": "Suomenlahdentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834"
                },
                "description": null,
                "name": {
                    "fi": "Ison Omenan kirjasto",
                    "sv": "Iso Omena bibliotek",
                    "en": "Iso Omena Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66by",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.052436Z",
                    "last_modified_time": "2023-12-13T11:20:12.052454Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1532,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Matinkylä",
                        "sv": "Mattby",
                        "en": "Matinkylä"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1947",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "prosperity",
                        "welfare (well-being)",
                        "välfärd"
                    ],
                    "created_time": "2023-08-16T05:19:38.138600Z",
                    "last_modified_time": "2026-01-10T04:42:05.285206Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1966,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "hyvinvointi",
                        "sv": "välmående",
                        "en": "well-being"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2762",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:33.337239Z",
                    "last_modified_time": "2023-08-16T05:19:33.337304Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 515,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "terveys",
                        "sv": "hälsa",
                        "en": "health"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-16T15:38:19.434097Z",
            "last_modified_time": "2024-04-16T15:38:19.434121Z",
            "date_published": null,
            "start_time": "2024-04-29T12:00:00Z",
            "end_time": "2024-04-29T13: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": "Joogapsykologia, Meditaatio ja Palveluhenkisyys - luento englanniksi",
                "en": "Yoga Psychology, Meditation and Service"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Joogapsykologia, Meditaatio ja Palveluhenkisyys<br>Aiheesta kertoilee kokenut Intialainen Acarya Dada Bhavottarananda.</p><p>Jooga on tie...rauhasten, kehon ja mielen tasapainoon. Meditaatio yhdessä palveluhenkisyyden kanssa, ylevöittää omaa henkevyyttä ja yhteiskuntaa sinänsä. <br>Dada Bhavottarananda on opettanut joogaa ja mediataatiota Intiassa, Taiwanissa ja Suomessa noin 30 vuotta. Sen lisäksi hän on tehnyt palvelutyötä, kuten hoitanut lastenkoteja, kouluja ja opastanut terveellisiin elämäntapoihin.</p><p>Tervetuloa tutustumaan joogan viisauteen,<br>Ison Omenan kirjaston Stage tilassa, maanantaina 29.4, klo 15.00.</p><p>Vain henkistä rikkautta voi viedä mukanaan seuraavaan elämään, fyysistä tai psyykkistä rikkautta ei voi.</p><p>Järjestäjä Ananda Marga Joogayhteisö Ry.<br></p>",
                "en": "<p>Yoga Psychology, Meditation and Service</p><p>Indian Acarya Dada Bhavottarananda shares yogic wisdom; Yoga is the way... for glandular, bodily and mental balance. Meditation together with service enriches ones spirit and also the society. </p><p>Dada Bhavottarananda has been teaching yoga and meditation in India, Taiwan and Finland for ab 30 years. Besides he has been doing service such as taking care of children’s homes, schools and providing guidance in healthy life style practices.<br>You are invited to attend yogic wisdom teaching in company,<br>Iso Omenan Kirjasto, Stage, Monday 29.4 at 15.00</p><p>Only spiritual wealth can be taken into the next life, not physical or mental wealth.</p><p>Organiser Ananda Marga Joogayhteisö Ry</p><p><br></p>"
            },
            "name": {
                "fi": "Joogapsykologia, Meditaatio ja Palveluhenkisyys - luento englanniksi",
                "en": "Yoga Psychology, Meditation and Service"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage",
                "en": "Stage "
            },
            "provider": {
                "fi": "Ananda Marga Joogayhteisö Ry",
                "en": "Ananda Marga Joogayhteisö Ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghopnthg4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:aghoognfye",
            "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": "kultus:22",
                    "has_user_editable_resources": true,
                    "alt_labels": [],
                    "created_time": "2023-09-19T11:01:46.243204Z",
                    "last_modified_time": "2023-09-19T11:01:46.243219Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 22,
                    "image": null,
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ympäristö ja luonto",
                        "sv": "Miljö och natur",
                        "en": "Environment and nature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:22/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kultus:7",
                    "has_user_editable_resources": true,
                    "alt_labels": [],
                    "created_time": "2023-09-19T11:01:46.746573Z",
                    "last_modified_time": "2023-09-19T11:01:46.746590Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 25,
                    "image": null,
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "replaced_by": null,
                    "name": {
                        "fi": "Näyttely",
                        "sv": "guidning",
                        "en": "Exhibiton"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:56/?format=api"
                }
            ],
            "created_time": "2024-04-16T13:30:01.554121Z",
            "last_modified_time": "2024-04-16T13:32:24.919551Z",
            "date_published": null,
            "start_time": "2024-04-25T07:30:00Z",
            "end_time": "2024-04-26T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2024-04-16T16:35:00+03:00",
            "enrolment_end_time": "2024-04-26T14:30:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Testing",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>apodfas</p>\n",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Suvi testing 16.4.2024",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aghoognfye/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoorp6bq",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15417",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:19.044131Z",
                "last_modified_time": "2025-01-31T06:09:29.808662Z",
                "custom_data": null,
                "email": "sellonkirjasto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02600",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 4952,
                "image": 180919,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.80934,
                        60.217506
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7603"
                },
                "street_address": {
                    "fi": "Leppävaarankatu 9",
                    "sv": "Albergagatan 9",
                    "en": "Leppävaarankatu 9"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925"
                },
                "description": null,
                "name": {
                    "fi": "Sellon kirjasto",
                    "sv": "Sellobiblioteket",
                    "en": "Sello Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66oi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.151726Z",
                    "last_modified_time": "2023-12-13T11:20:12.151743Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3529,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Leppävaara",
                        "sv": "Alberga",
                        "en": "Leppävaara"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8743",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "beslutfattande",
                        "beslutsprocess"
                    ],
                    "created_time": "2023-08-16T05:18:04.433009Z",
                    "last_modified_time": "2023-08-16T05:18:04.433028Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 34,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "päätöksenteko",
                        "sv": "beslutsfattande",
                        "en": "decision making"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-16T13:14:00.958047Z",
            "last_modified_time": "2024-04-16T13:14:00.958102Z",
            "date_published": null,
            "start_time": "2024-04-24T15:00:00Z",
            "end_time": "2024-04-24T16: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": "Suomelle tärkeästä teemasta alustavat kansanedustaja Antti Kaikkonen ja Eduskunnan entinen puhemies Matti Vanhanen.",
                "sv": "Antti Kaikkonen, riksdagsledamot, och Matti Vanhanen, tidigare talman i Finlands riksdag, kommer att introducera denna viktiga fråga för Finland.",
                "en": "Antti Kaikkonen, Member of Parliament, and Matti Vanhanen, former Speaker of the Finnish Parliament, will introduce this important topic for Finland."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Suomelle tärkeästä teemasta alustavat kansanedustaja Antti Kaikkonen ja Eduskunnan entinen puhemies Matti Vanhanen.<br>Paikalla olevat keskustapuolueen EU- parlamenttiehdokkaat esittäytyvät.<br>Tilaisuus on suomenkielinen.</p>",
                "sv": "<p>Antti Kaikkonen, riksdagsledamot, och Matti Vanhanen, tidigare talman i Finlands riksdag, kommer att introducera denna viktiga fråga för Finland.<br>Centerns kandidater till EU-parlamentet presenterar sig.<br>Evenemanget hålls på finska.</p>",
                "en": "<p>Antti Kaikkonen, Member of Parliament, and Matti Vanhanen, former Speaker of the Finnish Parliament, will introduce this important topic for Finland.<br>The Centre Party's EU Parliamentary candidates will introduce themselves.<br>The event will be held in Finnish.</p>"
            },
            "name": {
                "fi": "EU - osa Suomen turvallisuusrakenteita",
                "sv": "EU - en del av Finlands säkerhetsstrukturer",
                "en": "EU - part of Finland's security structures"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": {
                "fi": "Espoon Keskusta"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoorp6bq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63293",
            "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:104",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.032176Z",
                    "last_modified_time": "2024-02-06T13:19:14.595808Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 145,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kirjallisuus ja sanataide"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?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": 1318,
                    "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": 795,
                    "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: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": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke: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": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1175,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1139,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13450,
                    "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": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 82293,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-04T09:14:59.692192Z",
                    "last_modified_time": "2024-04-04T09:14:59.692210Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746449.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/82293/?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": "2024-04-04T09:14:59.658528Z",
            "last_modified_time": "2024-04-16T13:13:10.523572Z",
            "date_published": null,
            "start_time": "2024-05-15T13:30:00Z",
            "end_time": "2024-05-15T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa. Keskiviikon ohjelmassa tanssiesitys, lukuhetki ja työpaja."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5ED64CFA60B7DC5987643B57E37138E1/_Lamppukarpanen_ja_Satupuu"
            },
            "description": {
                "fi": "<p>Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa. Keskiviikon ohjelmassa tanssiesitys, lukuhetki ja työpaja.</p><p>klo 16.30-17<br> <b>KATVE Company: Lamppukärpänen</b><br>Lamppukärpänen on tanssiteos maailman isoimmasta kärpäsestä, joka rakastaa kirjoja ja kaikenlaisia hyönteisiä. Maailmassa on ällistyttävä määrä ötököitä kuten esimerkiksi siira, lymymuurahainen, kirjanpainaja, papupiilokas, harsokorento, saksanturilainen, hyppyhäntäinen, kirjatäi ja niin edelleen!</p><p>Pienet hyönteiset pyörittävät maailmaa omalla toiminnallaan; niiden ansiosta kasvit kantavat hedelmää ja ihmiset saavat syödäkseen - eikä maailma tai varsinkaan ihmiset tulisi toimeen ilman pieniä hyönteisiä. Sen tähden Lamppukärpänen lukee ja tutustuu kaikkeen mahdolliseen. Ja kyllä hänkin on sen verran paljon hyönteinen, että saa kokea kiehtovan muodonmuutoksen kelta-vihreästä toukasta komeaksi kärpäseksi.</p><p>Koreografia ja tanssi: Heidi Masalin<br>Runot: Eppu Nuotio<br>Äänisuunnittelu: Olli Havu<br>Äänitehosteet: YLE arkisto, freesound /RTB45, Olli Havu<br>Runojen lausunta (suomi): Olli Havu, Aaron Frösén, Emilia Frösén, Rasmus Frösén, Irene Havu, Hilla Havu<br>Runojen käännös ruotsiksi: Henrik Huldén<br>Runojen lausunta (ruotsi): Henrik Huldén Aaron Frösén, Emilia Frösén, Rasmus Frösén, Irene Havu, Hilla Havu<br>Tuotanto: KATVE [blind spot] yhteistyössä Hanasaaren ruotsalais-suomalaisen Kulttuurikeskuksen kanssa<br>Teoksen tukijat: Helsingin kaupunki, Taiteen Edistämiskeskus, Opetus- ja kulttuuriministeriö</p><p>Annantalon 2.kerros<br>Kaikenikäisille<br>Ei ennakkoilmoittautumista</p><p>Klo 17-19<br><b>Satupuu</b><br>Kirsi Kunnaksen luontoaiheiset tarinat valtaavat runo-olohuoneen! <br> <br>Tule kuuntelmaan sadunkertoja Sinivatukan lukuhetkeä ja maalaamaan metsäkansaa taideohjaaja Mustikan johdolla. Non-stop taidepajassa sekoitellaan luonnonvärejä ja maalataan hahmoja yhteiseen satupuuhun.</p><p>Lukuhetkiä järjestetään runo-olohuoneessa 20min välein. Max 15 hlöä kerrallaan. <br> <br>Ohjaajina Annantalon taidekasvattajat Karoliina Helminen ja Jenna Saarinen</p><p>Annantalon 2.kerros<br>Alle 8v-aikuisen seurassa<br>Ei ennakkoilmoittautumista</p>"
            },
            "name": {
                "fi": "Lamppukärpänen ja Satupuu – Lastenkulttuurin juhlaviikko"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63293/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63221",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7256",
                "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:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vilhonvuori",
                            "sv": "Vilhemsberg"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Sörnäinen",
                            "sv": "Sörnäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.104501Z",
                "last_modified_time": "2026-02-13T06:09:13.632215Z",
                "custom_data": null,
                "email": "caisa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 594,
                "image": 414655,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.959616,
                        60.183193
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 80008"
                },
                "street_address": {
                    "fi": "Kaikukatu 4, Helsinki",
                    "sv": "Ekogatan 4, Helsinki",
                    "en": "Kaikukatu 4, Helsinki"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.caisa.fi/fi/etusivu",
                    "sv": "https://www.caisa.fi/sv/framsidan",
                    "en": "https://www.caisa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.",
                    "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.",
                    "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent."
                },
                "name": {
                    "fi": "Caisa",
                    "sv": "Caisa",
                    "en": "Cultural Centre Caisa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:29",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.424657Z",
                    "last_modified_time": "2024-02-06T13:19:13.738407Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1153,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuvat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:47",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.667596Z",
                    "last_modified_time": "2024-02-06T13:19:14.083984Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 618,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Caisa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:52",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.738883Z",
                    "last_modified_time": "2024-02-06T13:19:14.199532Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 618,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke: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:p16327",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "elokuva (taiteet)",
                        "film (konstarter)",
                        "spelfilm"
                    ],
                    "created_time": "2023-08-16T05:17:37.994244Z",
                    "last_modified_time": "2023-08-16T05:17:37.994289Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 351,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvataide",
                        "sv": "filmkonst",
                        "en": "cinema (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39492",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "LAN-events",
                        "local area network parties",
                        "LAN-tapahtumat",
                        "lanit",
                        "verkkopelitapahtumat",
                        "LAN-evenemang"
                    ],
                    "created_time": "2023-08-16T05:11:48.242998Z",
                    "last_modified_time": "2023-08-16T05:11:48.243015Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 673,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 41712,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-28T08:13:09.940470Z",
                    "last_modified_time": "2024-03-28T08:13:09.940488Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746097.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/41712/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-28T08:13:09.888938Z",
            "last_modified_time": "2024-04-16T12:13:02.456840Z",
            "date_published": null,
            "start_time": "2024-04-25T14: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": "CaisaKallio esittää!"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/9DB41BBB2FE22993C23E5951E9FEA878/CaisaKallio_esittaa_Elokuvia"
            },
            "description": {
                "fi": "<p>CaisaKallio esittää!</p><p>CaisaKallion elokuvaohjelmistossa nähdään juuri valmistuneita median lukiodiplomi-elokuvia.</p><p><b>Eeva Airavaaran</b> (ohjaus) ja <b>Lumi Tolosen</b>  (kuvaus) lyhytelokuva <b>Mursu</b>  kertoo Taisto Kaasisen suositusta Mursu-figuriinista. Taisto Kaasisen muotoilema mursu käynnistää introspektisen matkan läpi designin, moraalin ja indetiteetin. Kokeellinen ja rohkea lyhytelokuva määrittelee uudestaan mitä ei-fiktio elokuva voi olla.</p><p><b>Emmi Nuoliojan</b>  (ohjaus) lyhytelokuva <b>Eggcrack</b>  kertoo itsenäistymisen pelosta teinin ja hänen videokameransa näkökulmasta.</p><p><b>Helka Tanskasen</b>  (ohjaus) lyhytelokuva <b>Ihminen</b>  kertoo aseksuaalisuudesta, ihmissuhteista ja rakkauden paineista. Miten muiden mielipiteiden kuunteleminen vaikuttaa omaan harkintakykyyn ja uuden ystävyyden luomiseen?</p><p><b>Haihtuneet</b> -lyhytelokuva on psykologinen trilleri, joka kertoo kolmen nuoren sattumasta luonnon ja mökin tuntumassa. Mitä oikeasti tapahtui ja minne he päätyivät? Haihtuneet on <b>Miro Kutvosen</b> (ohjaus, kameranäytteleminen), <b>Kide Rinteen</b>  (tuotanto, kameranäytteleminen) ja <b>Dunja Saiyarin</b>  (kameranäytteleminen) lukiodiplomityö.</p><p>Lyhytelokuva <b>Maa jalkojeni alla</b>  kertoo kahdesta parhaasta ystävästä, jotka lähtevät pakoon arkeaan mökille Lappeenrantaan. Elokuvan aikana he kokeilevat ystävyyssuhteensa rajoja ja pohtivat elämän suuria kysymyksiä. Elokuva on kolmen tekijän diplomityö: <b>Edit Hustad</b>  (ohjaus), <b>Riina Talka</b>  (kuvaus) ja <b>Emma Saarinen</b>  (teatteridiplomi, kameranäytteleminen).</p><p>Ole ajoissa, paikkoja on rajoitetusti!</p><p><b>CaisaKallio</b><br>Tarvitsetko piristystä tähän harmaaseen arkeen? Oletko aina unelmoinut pääseväsi kokemaan maailmasi mullistavan taide-elämyksen?</p><p>Nyt on tilaisuutesi sukeltaa taiteen maailmaan nuorten taiteilijoiden johdattelemana. Kallion lukion taiteenopiskelijat herättävät kulttuurikeskus Caisan tilat henkiin mahtavilla esityksillään. Luvassa on musiikkia, puhetaidetta, lyhytelokuvia, sekä tanssia. Tätä et halua missata!</p><p>Kaikkiin CaisaKallio -viikon tapahtumiin on vapaa pääsy, lämpimästi tervetuloa mukaan!</p>"
            },
            "name": {
                "fi": "CaisaKallio esittää: Elokuvia – Caisan ja Kallion lukion yhteinen taidefestivaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63221/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghonwd42e",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15365",
                "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:12.333657Z",
                "last_modified_time": "2024-04-09T05:09:28.062477Z",
                "custom_data": null,
                "email": "kirjasto.kalajarvi@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02970",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 100,
                "image": 7923,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.739182,
                        60.306084
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 3400"
                },
                "street_address": {
                    "fi": "Ruskaniitty 4",
                    "sv": "Höstglödsängen 4",
                    "en": "Ruskaniitty 4"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84833",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84833",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84833"
                },
                "description": null,
                "name": {
                    "fi": "Kalajärven kirjasto",
                    "sv": "Kalajärvi bibliotek",
                    "en": "Kalajärvi Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66dy",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.069264Z",
                    "last_modified_time": "2023-12-13T11:20:12.069291Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 169,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kalajärvi",
                        "sv": "Kalajärvi",
                        "en": "Kalajärvi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67rm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.433142Z",
                    "last_modified_time": "2023-12-13T11:20:12.433163Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 113,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Lahnus",
                        "sv": "Lahnus",
                        "en": "Lahnus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67ya",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.485958Z",
                    "last_modified_time": "2023-12-13T11:20:12.485999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 130,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Luukki",
                        "sv": "Luk",
                        "en": "Luukki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-16T12:08:58.797833Z",
            "last_modified_time": "2024-04-16T12:08:58.797860Z",
            "date_published": "2024-04-16T11:56:00Z",
            "start_time": "2024-05-08T14:30:00Z",
            "end_time": "2024-05-08T16: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": "Kalajärven kirjaston lukupiiri kokoontuu keskiviikkoisin klo 17.30-19.00",
                "sv": "Kalajärvi biblioteks läsecirkel träffas på onsdagar 17.30-19.00",
                "en": "Kalajärvi library's reading circle meets on Wednesdays from 17:30 to 19:00"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu keskiviikkoisin klo 17.30-19.00 Ahti-salissa.</p><p>8.5. Kazuo Ishiguro : Klara ja aurinko</p>",
                "sv": "<p>Kalajärvi biblioteks läsecirkel träffas på onsdagar kl 17.30-19.00 i Ahti-salen.</p><p>8.5. Kazuo Ishiguro : Klara ja aurinko</p>",
                "en": "<p>Kalajärvi library's reading circle meets on Wednesdays at 5:30-7:00 PM in the Ahti hall.</p><p>8.5. Kazuo Ishiguro : Klara ja aurinko</p>"
            },
            "name": {
                "fi": "Kalajärven kirjaston lukupiiri",
                "sv": "Kalajärvi biblioteks läscirkel",
                "en": "Kalajärvi library reading circle"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghonwd42e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghonwd47q",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15417",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:19.044131Z",
                "last_modified_time": "2025-01-31T06:09:29.808662Z",
                "custom_data": null,
                "email": "sellonkirjasto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02600",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 4952,
                "image": 180919,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.80934,
                        60.217506
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7603"
                },
                "street_address": {
                    "fi": "Leppävaarankatu 9",
                    "sv": "Albergagatan 9",
                    "en": "Leppävaarankatu 9"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925"
                },
                "description": null,
                "name": {
                    "fi": "Sellon kirjasto",
                    "sv": "Sellobiblioteket",
                    "en": "Sello Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66oi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.151726Z",
                    "last_modified_time": "2023-12-13T11:20:12.151743Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3529,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Leppävaara",
                        "sv": "Alberga",
                        "en": "Leppävaara"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-04-16T11:40:20.538076Z",
            "last_modified_time": "2024-04-16T11:40:20.538100Z",
            "date_published": null,
            "start_time": "2024-05-19T11:00:00Z",
            "end_time": "2024-05-19T14: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": "Suomen kiinalaisten lapsiperheiden yhdistys järjestää kiinalaisille nuorille ja lapsille kiinalaisen lausunta- ja laulutapahtuman.",
                "sv": "Den finska föreningen för kinesiska barnfamiljer anordnar ett evenemang med kinesiska recitationer och sånger för kinesiska ungdomar och barn.",
                "en": "The Finnish Association of Chinese Families with Children organises a Chinese recitation and singing event for Chinese youth and children."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Suomen kiinalaisten lapsiperheiden yhdistys  järjestää kiinalaisille nuorille ja lapsille kiinalaisen lausuntatapahtuman, jonka tarkoituksena on osoittaa kiinalaisten opiskelijoiden äidinkielen taitoa ja edistää heidän innostustaan äidinkielen oppimiseen. </p><p>Ilmoittautumiset ja lisätiedot:<br>Yhteystiedot: Maya Ma<br> Sähköposti: mengyaketang@gmail.com</p>",
                "sv": "<p>Den finska föreningen för kinesiska familjer med barn  organiserar ett evenemang för kinesisk fonation för kinesiska ungdomar och barn för att visa de kinesiska studenternas modersmålskunskaper och uppmuntra deras entusiasm för att lära sig modersmålet. </p><p>Anmälan och ytterligare information:<br>Kontakt.<br>E-post: mengyaketang@gmail.com</p>",
                "en": "<p>The Finnish Association of Chinese Families with Children  is organising a Chinese phonation event for Chinese youth and children to demonstrate the native language skills of Chinese students and to encourage their enthusiasm for learning the mother tongue. </p><p>Registration and further information:<br>Contact Maya Ma<br> Email: mengyaketang@gmail.com</p>"
            },
            "name": {
                "fi": "Lausutaan kiinaksi",
                "sv": "Uttalat på kinesiska",
                "en": "Pronounced in Chinese"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": {
                "fi": "Suomen kiinalaisten lapsiperheiden yhdistys ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghonwd47q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63295",
            "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:104",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.032176Z",
                    "last_modified_time": "2024-02-06T13:19:14.595808Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 145,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kirjallisuus ja sanataide"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?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": 1318,
                    "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": 795,
                    "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: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": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke: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": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1175,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1139,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13450,
                    "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": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 83280,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-04T13:13:21.168050Z",
                    "last_modified_time": "2024-04-04T13:13:21.168068Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746457.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/83280/?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": "2024-04-04T11:14:50.260244Z",
            "last_modified_time": "2024-04-16T11:12:57.804738Z",
            "date_published": null,
            "start_time": "2024-05-16T14:00:00Z",
            "end_time": "2024-05-16T16: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 Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/90AA7338EFB154054DDF3E2CE127AD52/Satupuu_ja_Tiitiainen"
            },
            "description": {
                "fi": "<p>Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa.</p><p>klo 17-17.10 <br> <b>Tanssiteatteri GLIMS & GLOMS: Tii-tii-tiitiäinen</b><br>Tii-Tii-Tiitiäinen on Kirsi Kunnaksen runoihin perustuva koko perheen esitys, josta nähdään Annantalolla maistiainen.<br>Esityksessä seikkailevat Kunnaksen tuotannosta useille sukupolville tutut hahmot, muun muassa Tiitiäinen ja Haitula.</p><p>Kaikenikäisille<br>Annantalon 2.kerros, pohjoinen lasipääty</p><p>klo 17.20-19 <br> <b>Satupuu</b><br>Kirsi Kunnaksen luontoaiheiset tarinat valtaavat runo-olohuoneen</p><p>Kuule sadunkertoja Siniherneen tarinoita runo-olohuoneessa ja taiteile metsäkansan hahmoja Taideohjaaja Mustikan johdolla runo-olohuoneen edustalla. Non-stop taidepajassa sekoitellaan luonnonvärejä, maalataan ja taiteillaan hahmoja yhteiseen satupuuhun.</p><p>Satuhetket järjestetään runo-olohuoneessa 20min välein. <br>Max 15 hlöä kerrallaan.<br>Ohjaajina Annantalon taidekasvattajat Karoliina Helminen ja Jenna Saarinen</p><p>Annantalon 2.kerros<br>Alle 8v-aikuisen seurassa<br>Vapaa pääsy</p><p>Klo 17.30-18.15<br><b>Tiitiäisyyksien kintereillä: Kirsi Kunnaksen runomaailma </b></p><p>Kirsi Kunnaksen lastenrunot ovat ihastuttaneet uusia ja vanhoja lukijoita jo kahdeksalla vuosikymmenellä, eikä loppua näy. Avoimella yleisöluennolla ihmetellään, millaisin keinoin Kunnaksen runomaailman tiitiäisyydet muodostuvat. Näkyykö niissä heijastuksia englantilaisen nonsensekirjallisuuden leikki- ja pelimäisyydestä? Miten herra Pii Poo, Jansmakko Erikois ja Haitula kasvoivat pesunkestäviksi klassikoiksi?</p><p>Kirsi Kunnaksen runomaailmaan johdattelee nonsensekirjallisuuteen erikoistunut runotohtori Sakari Katajamäki.</p><p>Annantalon auditorio, 2.kerros<br>Luento suunnattu aikuisille, mutta lapset ovat tervetulleet mukaan<br>Vapaa pääsy</p><p>klo 19.00-19.10 <br> <b>Tanssiteatteri GLIMS & GLOMS: Tii-tii-tiitiäinen</b><br>Tii-Tii-Tiitiäinen on Kirsi Kunnaksen runoihin perustuva koko perheen esitys, josta nähdään Annantalolla maistiainen.<br>Esityksessä seikkailevat Kunnaksen tuotannosta useille sukupolville tutut hahmot, muun muassa Tiitiäinen ja Haitula.</p><p>Kaikenikäisille<br>Annantalon 2.kerros, pohjoinen lasipääty<br>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Satupuu ja Tiitiäinen – Lastenkulttuurin juhlaviikko"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63295/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61230",
            "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: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: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": 795,
                    "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: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": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4819,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5022,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7536,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-02T14:13:17.586484Z",
                    "last_modified_time": "2024-02-06T13:23:39.356277Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739443.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7536/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-02T14:13:17.549973Z",
            "last_modified_time": "2024-04-16T11:12:56.129097Z",
            "date_published": null,
            "start_time": "2024-04-30T13:00:00Z",
            "end_time": "2024-04-30T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa juhlistamaan vappua ja kevättä tanssin merkeissä!",
                "sv": "Välkommen att fira valborg och våren med dans!",
                "en": "Welcome to celebrate May Day and the spring with dance!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E1DC116D4FA6AA4A13CB1DA757DCE3B1/AnnanHouse_Vinksin_vonksin_vappu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/E1DC116D4FA6AA4A13CB1DA757DCE3B1/Valborg_pa_AnnanHouse",
                "en": "http://www.annantalo.fi/en/events/event/E1DC116D4FA6AA4A13CB1DA757DCE3B1/May_Day_at_Annantalo_Arts_Centre"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan vappua ja kevättä tanssin merkeissä!</p><p>AnnanHouse -disko valtaa Annantalon juhlasalin ja kutsuu tanssilattialle koko perheen! Tämänkertaisen diskon teemana on Vinksin vonksin -vappu. Pue ylle hassuimmat vaatteesi tai piipahda Annantalon pukulainaamossa lainaamassa pähkähullut diskovaatteet.<br>Musiikista vastaa Annantalon oma dj Nicolas Sebastien, joka tarjoilee huippumusiikkia housesta discoon. Diskoillan aikana voit hypätä tanssituokioihin, piipahtaa avoimissa taidetyöpajoissa, tavata Klovni Kukkuluuruun ja osallistua näyttelyopastukselle.</p><p>Klo 16 Pukulainaamo PÄHKÄHULLU avaa ovensa. Tervetuloa sovittelemaan ja lainaamaan ihan kreisit asut diskoiltaan.</p><p>Klo 16-19 työpajoja Annantalon 2. kerroksessa</p><p><b>Klovni KUKKULUURUU</b> tekee värikkäitä ilmapalloeläimiä! Haluatko lemmikiksesi ilmapallonorsun- kissan- vai papukaijan?<br> <br><b>Varjojen liike</b><br>teatteriluokka<br>Tanssita omaa varjoa varjoteatterikankalla. Varjojen tanssisalissa voit liikkua rauhallisesti värillisten varjojen kanssa tai rentoutua tyynyillä istuskellen. <br>Max 20hlö kerrallaan. <br> <br><b>Tanssiva vappuhuiska -työpaja</b><br>2.krs. käytävä<br>Heilauta, pyöräytä, ravista ja vavista. <br>Tervetuloa valmistamaan illan pyörteisiin  tanssiva vappuhuiska.<br>Työpajatyöskentely toimii non-stop periaatteella ja tapahtuu yhdessä oman aikuisen kanssa.<br>Työpajan suunnittelu ja toteutus: Taideohjaaja Marja Koskela<br> <br><b>FlowerRescue: Kukkakimppu lahjoitettavaksi!</b><br>2.kerroksen käytävä<br>Tutustu hävikkikukkiin ja tee pieni kimppu lahjoitettavaksi. Voit myös kirjoittaa vapputervehdyksen korttiin ja liittää se kukkakimppuun. Toiminta on hauskaa kaikenikäisille, aiempaa kokemusta kimpun tekemisestä ei tarvita.</p><p>Klo 17 Diskon ovet aukeavat!<br>Klo 17.15 ja 18 Fiona Fiouh (lausutaan fiuu) tanssituokiot sekä kotkottava yllätysvieras <br>Klo 17.30 Näyttelyopastus Liikkuva laboratorio -näyttelyyn<br>Klo 19 Diskon ovet sulkeutuvat. Tapahtuma päättyy.<br> <br>Vapaa pääsy, ei ennakkoilmoittautumista.</p>",
                "sv": "<p>Välkommen att fira valborg och våren med dans!</p><p>AnnanHouse-disco tar över Annegårdens festsal och bjuder in alla i familjen på dansgolvet! Denna gång är temat för diskot valborg \"vinksin vonksin\". Ta på dig dina roligaste kläder eller kom förbi Annegårdens kostymbutik för att låna discokläder.<br>För musiken står Annegårdens egen dj Nicolas Sebastien, som bjuder på toppmusik från house till disco. Du kan okså hoppa in i dansundervsning, delta i öppna konstverkstäder, träffa Clownen Kukkuluuruu och gå på en utställningsrunda.</p><p>Kl.16:00 Kostymbutiken öppnar. Du är välkommen att prova och låna roliga kläder till diskoteket.<br>Kl.16-19 workshops på Annegårdens 2:a våning<br>Kl. 17:00 öppnas dörrarna till discot!<br>Kl. 17.15 och 18 Fiona Fiouh (uttalas fiuu) dansundervsning<br>Kl. 17.30 Familjeguidning på utställningen Rörliga laboratoriet<br>Kl. 19.00 discodörrarna stänger.<br> <br>Fri entré, ingen föranmälan krävs.</p>",
                "en": "<p>Welcome to celebrate May Day and the spring with dance!</p><p>The AnnanHouse disco takes over the Annantalo hall and invites all families to join. The theme of this year's disco is \"Vinksin vonksin\". Wear your funniest clothes or stop by Annantalo's costume shop to borrow some crazy disco clothes.<br>The music will be provided by Annantalo's own DJ Nicolas Sebastien, who will be serving up top tunes from house to disco. During the disco night, you can jump into dance sessions, take part in open art workshops, meet the Clown Kukkuluuruu and take part in an exhibition tour.</p><p>At 16:00 the costume shop, opens its doors. You are welcome to try on and borrow your outfits from the disco.<br>16-19 workshops on the 2nd floor of the Annantalo<br>At 17:00 the disco doors open!<br>At 17.15 and 18 Fiona Fiouh (pronounced fiuu) dance sessions and a surprise guest <br>At 17.30 Guided tour of the Moving Laboratory exhibition<br>At 19 the disco doors will close.<br> <br>Free admission, no pre-registration required.</p>"
            },
            "name": {
                "fi": "AnnanHouse: Vinksin vonksin vappu – Koko perheen yhteinen disko!",
                "sv": "Valborg på AnnanHouse – Hela familjens gemensamma disco!",
                "en": "May Day at Annantalo Arts Centre – A disco for the whole family!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61230/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oxla",
            "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": "espoo_le:agggfz65ie",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.846704Z",
                    "last_modified_time": "2023-12-13T11:20:11.846734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2435,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoon keskus",
                        "sv": "Esbo centrum",
                        "en": "Espoon keskus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65ka",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.861544Z",
                    "last_modified_time": "2023-12-13T11:20:11.861564Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2340,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Muurala",
                        "sv": "Morby",
                        "en": "Muurala"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65l4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.876507Z",
                    "last_modified_time": "2023-12-13T11:20:11.876525Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2334,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunginkallio",
                        "sv": "Stadsberget",
                        "en": "Kaupunginkallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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:p2630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "subject teaching",
                        "aineenopetus",
                        "aineopetus",
                        "ämnesundervisning",
                        "instruction",
                        "teaching",
                        "opettaminen"
                    ],
                    "created_time": "2023-08-16T05:19:46.234579Z",
                    "last_modified_time": "2023-08-16T05:19:46.234597Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1529,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opetus",
                        "sv": "undervisning",
                        "en": "teaching and instruction"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oxoy/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 150370,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-15T10:22:13.113892Z",
                    "last_modified_time": "2024-03-15T10:22:13.113919Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/caleb-george-pH88tHG-1yw-unsplash.jpg",
                    "name": "",
                    "cropping": "520,0,2603,2082",
                    "photographer_name": "",
                    "alt_text": "soittimia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150370/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-04-03T07:26:53.876145Z",
            "last_modified_time": "2024-04-16T10:41:52.418635Z",
            "date_published": null,
            "start_time": "2024-05-20T13:30:00Z",
            "end_time": "2024-05-20T14: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": "Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Kurssi on suunnattu 13–20-vuotiaille. Osallistuminen on maksutonta.",
                "sv": "Bandkurs för unga",
                "en": "Band course for young people"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule mukaan Entressen kirjastossa järjestettävään bändikurssiin! Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Pääset soittamaan rumpuja, bassoa, kitaraa ja pianoa. Tarkoituksena on harjoitella perusteet kaikista soittimista ja soittaa yhdessä nuorten toivomia kappaleita. Kurssi on suunnattu 13–20-vuotiaille. Osallistuminen on maksutonta. Kurssille mahtuu kerralla 8 osallistujaa.</p><p>Kurssi järjestetään kaksi kertaa maanantaisin 20.5 ja 27.5. klo 16.30-17.30.</p><p>#musiikki #kitara #rummut #piano #bändi #kurssi</p><p>Kurssin vetäjänä toimii musiikkipedagogi Lauri Iljin<br>​lauri.iljin(at)espoo.fi</p>",
                "sv": "<p>Bandkurs på Entressebiblioteket! Under kursen kommer du att få spela och öva på bandinstrument. Kursen riktar sig till 13-20-åringar. Deltagandet är kostnadsfritt.</p>",
                "en": "<p>Band course for young people at the Entresse Library! During the course you will be able to play and practice band instruments. The course is aimed for 13-20 year olds. Participation is free of charge.</p>"
            },
            "name": {
                "fi": "Bändikurssi nuorille",
                "sv": "Bandkurs för unga",
                "en": "Band course for young people"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "soittohuone",
                "sv": "musikrum",
                "en": "music room"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oxla/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oxhu",
            "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": "espoo_le:agggfz65ie",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.846704Z",
                    "last_modified_time": "2023-12-13T11:20:11.846734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2435,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoon keskus",
                        "sv": "Esbo centrum",
                        "en": "Espoon keskus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65ka",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.861544Z",
                    "last_modified_time": "2023-12-13T11:20:11.861564Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2340,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Muurala",
                        "sv": "Morby",
                        "en": "Muurala"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65l4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.876507Z",
                    "last_modified_time": "2023-12-13T11:20:11.876525Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2334,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunginkallio",
                        "sv": "Stadsberget",
                        "en": "Kaupunginkallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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:p2630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "subject teaching",
                        "aineenopetus",
                        "aineopetus",
                        "ämnesundervisning",
                        "instruction",
                        "teaching",
                        "opettaminen"
                    ],
                    "created_time": "2023-08-16T05:19:46.234579Z",
                    "last_modified_time": "2023-08-16T05:19:46.234597Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1529,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opetus",
                        "sv": "undervisning",
                        "en": "teaching and instruction"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oxoy/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 150370,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-15T10:22:13.113892Z",
                    "last_modified_time": "2024-03-15T10:22:13.113919Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/caleb-george-pH88tHG-1yw-unsplash.jpg",
                    "name": "",
                    "cropping": "520,0,2603,2082",
                    "photographer_name": "",
                    "alt_text": "soittimia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150370/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-04-03T07:26:54.072204Z",
            "last_modified_time": "2024-04-16T10:41:52.377955Z",
            "date_published": null,
            "start_time": "2024-05-27T13:30:00Z",
            "end_time": "2024-05-27T14: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": "Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Kurssi on suunnattu 13–20-vuotiaille. Osallistuminen on maksutonta.",
                "sv": "Bandkurs för unga",
                "en": "Band course for young people"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule mukaan Entressen kirjastossa järjestettävään bändikurssiin! Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Pääset soittamaan rumpuja, bassoa, kitaraa ja pianoa. Tarkoituksena on harjoitella perusteet kaikista soittimista ja soittaa yhdessä nuorten toivomia kappaleita. Kurssi on suunnattu 13–20-vuotiaille. Osallistuminen on maksutonta. Kurssille mahtuu kerralla 8 osallistujaa.</p><p>Kurssi järjestetään kaksi kertaa maanantaisin 20.5 ja 27.5. klo 16.30-17.30.</p><p>#musiikki #kitara #rummut #piano #bändi #kurssi</p><p>Kurssin vetäjänä toimii musiikkipedagogi Lauri Iljin<br>​lauri.iljin(at)espoo.fi</p>",
                "sv": "<p>Bandkurs på Entressebiblioteket! Under kursen kommer du att få spela och öva på bandinstrument. Kursen riktar sig till 13-20-åringar. Deltagandet är kostnadsfritt.</p>",
                "en": "<p>Band course for young people at the Entresse Library! During the course you will be able to play and practice band instruments. The course is aimed for 13-20 year olds. Participation is free of charge.</p>"
            },
            "name": {
                "fi": "Bändikurssi nuorille",
                "sv": "Bandkurs för unga",
                "en": "Band course for young people"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "soittohuone",
                "sv": "musikrum",
                "en": "music room"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oxhu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oxoy",
            "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": "espoo_le:agggfz65ie",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.846704Z",
                    "last_modified_time": "2023-12-13T11:20:11.846734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2435,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoon keskus",
                        "sv": "Esbo centrum",
                        "en": "Espoon keskus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65ka",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.861544Z",
                    "last_modified_time": "2023-12-13T11:20:11.861564Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2340,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Muurala",
                        "sv": "Morby",
                        "en": "Muurala"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65l4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.876507Z",
                    "last_modified_time": "2023-12-13T11:20:11.876525Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2334,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunginkallio",
                        "sv": "Stadsberget",
                        "en": "Kaupunginkallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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:p2630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "subject teaching",
                        "aineenopetus",
                        "aineopetus",
                        "ämnesundervisning",
                        "instruction",
                        "teaching",
                        "opettaminen"
                    ],
                    "created_time": "2023-08-16T05:19:46.234579Z",
                    "last_modified_time": "2023-08-16T05:19:46.234597Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1529,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opetus",
                        "sv": "undervisning",
                        "en": "teaching and instruction"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oxhu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oxla/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150370,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-15T10:22:13.113892Z",
                    "last_modified_time": "2024-03-15T10:22:13.113919Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/caleb-george-pH88tHG-1yw-unsplash.jpg",
                    "name": "",
                    "cropping": "520,0,2603,2082",
                    "photographer_name": "",
                    "alt_text": "soittimia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150370/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-04-03T07:26:53.019912Z",
            "last_modified_time": "2024-04-16T10:41:48.725992Z",
            "date_published": null,
            "start_time": "2024-05-20T13:30:00Z",
            "end_time": "2024-05-27T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Kurssi on suunnattu 13–20-vuotiaille. Osallistuminen on maksutonta.",
                "sv": "Bandkurs för unga",
                "en": "Band course for young people"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule mukaan Entressen kirjastossa järjestettävään bändikurssiin! Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Pääset soittamaan rumpuja, bassoa, kitaraa ja pianoa. Tarkoituksena on harjoitella perusteet kaikista soittimista ja soittaa yhdessä nuorten toivomia kappaleita. Kurssi on suunnattu 13–20-vuotiaille. Osallistuminen on maksutonta. Kurssille mahtuu kerralla 8 osallistujaa.</p><p>Kurssi järjestetään kaksi kertaa maanantaisin 20.5 ja 27.5. klo 16.30-17.30.</p><p>#musiikki #kitara #rummut #piano #bändi #kurssi</p><p>Kurssin vetäjänä toimii musiikkipedagogi Lauri Iljin<br>​lauri.iljin(at)espoo.fi</p>",
                "sv": "<p>Bandkurs på Entressebiblioteket! Under kursen kommer du att få spela och öva på bandinstrument. Kursen riktar sig till 13-20-åringar. Deltagandet är kostnadsfritt.</p>",
                "en": "<p>Band course for young people at the Entresse Library! During the course you will be able to play and practice band instruments. The course is aimed for 13-20 year olds. Participation is free of charge.</p>"
            },
            "name": {
                "fi": "Bändikurssi nuorille",
                "sv": "Bandkurs för unga",
                "en": "Band course for young people"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "soittohuone",
                "sv": "musikrum",
                "en": "music room"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oxoy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63358",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8740",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ala-Malmi",
                            "sv": "Nedre Malm"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:54.264692Z",
                "last_modified_time": "2025-03-27T09:09:27.443498Z",
                "custom_data": null,
                "email": "malmitalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00700",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1348,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.malmitalo.fi/",
                    "sv": "https://www.malmitalo.fi/sv/framsidan",
                    "en": "https://www.malmitalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.",
                    "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.",
                    "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services."
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:29",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.424657Z",
                    "last_modified_time": "2024-02-06T13:19:13.738407Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1153,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuvat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:42",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.601092Z",
                    "last_modified_time": "2024-02-06T13:19:13.998256Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1336,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Malmitalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4819,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16327",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "elokuva (taiteet)",
                        "film (konstarter)",
                        "spelfilm"
                    ],
                    "created_time": "2023-08-16T05:17:37.994244Z",
                    "last_modified_time": "2023-08-16T05:17:37.994289Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 351,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvataide",
                        "sv": "filmkonst",
                        "en": "cinema (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-myrskyluodon-maija-3570484/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-myrskyluodon-maija-3570484/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150603,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T10:13:46.491839Z",
                    "last_modified_time": "2024-04-16T10:13:46.491856Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749214.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150603/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-16T10:13:46.451155Z",
            "last_modified_time": "2024-04-16T10:13:46.564025Z",
            "date_published": null,
            "start_time": "2024-05-08T12: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": "Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella.",
                "sv": "Stormskärs Maja är en gripande berättelse om en stark kvinna och de utmaningar hon möter på en stormig ö."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C43A39D0A128984906EB5C771D8787FE/Myrskyluodon_Maija_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C43A39D0A128984906EB5C771D8787FE/Stormskars_Maja_12_"
            },
            "description": {
                "fi": "<p>Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella.</p><p>Elokuva perustuu Anni Blomqvistin samannimiseen romaaniin ja sijoittuu 1800-luvun Suomen rannikkoseudulle. Nuori 17-vuotias Maija avioituu vasten tahtoaan kalastajamies Jannen kanssa. Hänen elämänsä Myrskyluodolla on täynnä haasteita ja vastoinkäymisiä: kalastajan vaimona hän joutuu selviytymään miehensä pitkistä poissaoloista merellä ja huolehtimaan perheestään yksin.</p><p>Maijasta on kuitenkin kasvanut lujatahtoinen ja itsenäinen nainen, joka ei pelkää tarttua toimeen karussa saaristossa. Maijalla ja Jannella on vahva yhteys, sekä ajan myötä syventynyt rakkaus. Janne tukee vaimonsa pyrkimyksiä ja ymmärtää, että perheen vahvuus syntyy yhteisistä ponnisteluista.</p><p>Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.</p><p>Ikäsuositus: 12<br>Kesto: 163 min<br>Elokuva on tekstitetty Suomeksi<br>Ensi-ilta: 19.1.2024</p>",
                "sv": "<p>Stormskärs Maja är en gripande berättelse om en stark kvinna och de utmaningar hon möter på en stormig ö.</p><p>Filmen är baserad på Anni Blomqvists roman med samma namn och utspelar sig i den åländska skärgården på 1800-talet. Den 17-åriga Maja gifter sig mot sin vilja med fiskaren Janne. Hennes liv på Stormskäret är fyllt av utmaningar och motgångar. Som fiskarhustru måste hon klara sig ensam med att ta hand om familjen när hennes man är till sjöss och borta under långa tider.</p><p>Maja blir dock en viljestark och självständig kvinna som inte är rädd för att ta ansvar och klara sig i den karga skärgården. Mellan Maja och Janne uppstår starka band, och med tiden fördjupas deras kärlek till varandra. Janne stöttar sin hustrus strävanden och inser att de gemensamma ansträngningarna samt att leva på lika villkor gör familjen stark.</p><p>Stormskärs Maja är en berättelse om vilja, styrka och kärlek.</p>"
            },
            "name": {
                "fi": "Myrskyluodon Maija (12) – Kino Helios",
                "sv": "Stormskärs Maja (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63358/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63069",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7260",
                "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:vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vuosaari",
                            "sv": "Nordsjö"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Keski-Vuosaari",
                            "sv": "Mellersta Nordsjö"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vuosaari",
                            "sv": "Nordsjö"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.880408Z",
                "last_modified_time": "2025-03-27T09:09:26.837979Z",
                "custom_data": null,
                "email": "vuotalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00980",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 762,
                "image": 414657,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.143385,
                        60.208565
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85983"
                },
                "street_address": {
                    "fi": "Mosaiikkitori 2",
                    "sv": "Mosaiktorget 2",
                    "en": "Mosaiikkitori 2"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.vuotalo.fi/",
                    "sv": "https://www.vuotalo.fi/sv/framsidan",
                    "en": "https://www.vuotalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin."
                },
                "name": {
                    "fi": "Vuotalo",
                    "sv": "Nordhuset",
                    "en": "Vuosaari House"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "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:348",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.541371Z",
                    "last_modified_time": "2024-02-06T13:19:15.204233Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1061,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:45",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.630975Z",
                    "last_modified_time": "2024-02-06T13:19:14.040714Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 799,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Vuotalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4819,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5022,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:613",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:59.862405Z",
                    "last_modified_time": "2024-02-06T13:19:17.040670Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 146,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Aikuiset"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-ilkka-rantamaeki-the-bluesbrokers-vuotalo-18420370/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-ilkka-rantamaeki-the-bluesbrokers-vuotalo-18420370/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-ilkka-rantamaeki-the-bluesbrokers-vuotalo-18420370/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € + palvelumaksu",
                        "sv": "20 € + palvelumaksu",
                        "en": "20 € + palvelumaksu"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 10851,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-14T14:13:06.533884Z",
                    "last_modified_time": "2024-02-14T14:13:06.533914Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744767.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10851/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-14T14:13:06.511953Z",
            "last_modified_time": "2024-04-16T10:13:44.158438Z",
            "date_published": null,
            "start_time": "2024-04-26T15: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": "Ilkka Rantamäki & The Bluesbrokers vie kuulijansa 60-luvun puolivälin sumuisen Lontoon psykedeelisille klubeille soittaen aikauden ikonisten brittibluesbändien tuotantoa.",
                "sv": "Ilkka Rantamäki & The Bluesbrokers tar sina åhörare till det dimmiga Londons psykedeliska klubbar i mitten av 60-talet och spelar produktion av ikoniska brittiska bluesband.",
                "en": "Playing the songs of iconic British blues bands of the era, Ilkka Rantamäki & The Bluesbrokers take their listeners to the psychedelic clubs of foggy London in the mid-1960s."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/287C18CA6CEC2B8D5C467211311C9551/Ilkka_Rantamaki_The_Bluesbrokers",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/287C18CA6CEC2B8D5C467211311C9551/Ilkka_Rantamaki_The_Bluesbrokers",
                "en": "http://www.vuotalo.fi/en/events/event/287C18CA6CEC2B8D5C467211311C9551/Ilkka_Rantamaki_The_Bluesbrokers"
            },
            "description": {
                "fi": "<p>Ilkka Rantamäki & The Bluesbrokers vie kuulijansa 60-luvun puolivälin sumuisen Lontoon psykedeelisille klubeille soittaen aikauden ikonisten brittibluesbändien tuotantoa.</p><p>Konsertissa kuultavaa musiikkia ovat alun perin esittäneet mm. Mayall’s Bluesbreakers, Peter Green’s Fleetwood Mac sekä Juicy Lucy ja onpa ohjelmistoon eksynyt muutama 70-luvun alun brittiläisen Tempest-yhtyeen kappalekin.</p><p>Ilkka Rantamäki: kitara, lap-steel, laulu<br>Hannu Sorsa: urut, piano, laulu<br>Harri Vainikka: basso, laulu<br>Teemu Sarjamo: rummut, laulu</p><p>Kesto 2 t sis. väliajan</p><p>Klubi-ilta. Tarjoiluista vastaa Café Pokkari.</p>",
                "sv": "<p>Ilkka Rantamäki & The Bluesbrokers tar sina åhörare till det dimmiga Londons psykedeliska klubbar i mitten av 60-talet och spelar produktion av ikoniska brittiska bluesband.</p>",
                "en": "<p>Playing the songs of iconic British blues bands of the era, Ilkka Rantamäki & The Bluesbrokers take their listeners to the psychedelic clubs of foggy London in the mid-1960s.</p>"
            },
            "name": {
                "fi": "Ilkka Rantamäki & The Bluesbrokers – Klubi-ilta",
                "sv": "Ilkka Rantamäki & The Bluesbrokers",
                "en": "Ilkka Rantamäki & The Bluesbrokers"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63069/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63189",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8740",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ala-Malmi",
                            "sv": "Nedre Malm"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:54.264692Z",
                "last_modified_time": "2025-03-27T09:09:27.443498Z",
                "custom_data": null,
                "email": "malmitalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00700",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1348,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.malmitalo.fi/",
                    "sv": "https://www.malmitalo.fi/sv/framsidan",
                    "en": "https://www.malmitalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.",
                    "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.",
                    "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services."
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:29",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.424657Z",
                    "last_modified_time": "2024-02-06T13:19:13.738407Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1153,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuvat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:42",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.601092Z",
                    "last_modified_time": "2024-02-06T13:19:13.998256Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1336,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Malmitalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4819,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16327",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "elokuva (taiteet)",
                        "film (konstarter)",
                        "spelfilm"
                    ],
                    "created_time": "2023-08-16T05:17:37.994244Z",
                    "last_modified_time": "2023-08-16T05:17:37.994289Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 351,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvataide",
                        "sv": "filmkonst",
                        "en": "cinema (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12452,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T15:14:13.814972Z",
                    "last_modified_time": "2024-03-14T15:14:13.814996Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745616.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T15:14:13.788589Z",
            "last_modified_time": "2024-04-16T10:13:41.432515Z",
            "date_published": null,
            "start_time": "2024-04-19T15: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": "Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella.",
                "sv": "Stormskärs Maja är en gripande berättelse om en stark kvinna och de utmaningar hon möter på en stormig ö."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BE2712CE58F2C54C74F28C646E204D8D/LOPPUUNMYYTY_Myrskyluodon_Maija_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BE2712CE58F2C54C74F28C646E204D8D/SLUTSALD_Stormskars_Maja_12_"
            },
            "description": {
                "fi": "<p>Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella.</p><p>Elokuva perustuu Anni Blomqvistin samannimiseen romaaniin ja sijoittuu 1800-luvun Suomen rannikkoseudulle. Nuori 17-vuotias Maija avioituu vasten tahtoaan kalastajamies Jannen kanssa. Hänen elämänsä Myrskyluodolla on täynnä haasteita ja vastoinkäymisiä: kalastajan vaimona hän joutuu selviytymään miehensä pitkistä poissaoloista merellä ja huolehtimaan perheestään yksin.</p><p>Maijasta on kuitenkin kasvanut lujatahtoinen ja itsenäinen nainen, joka ei pelkää tarttua toimeen karussa saaristossa. Maijalla ja Jannella on vahva yhteys, sekä ajan myötä syventynyt rakkaus. Janne tukee vaimonsa pyrkimyksiä ja ymmärtää, että perheen vahvuus syntyy yhteisistä ponnisteluista.</p><p>Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.</p><p>Ikäsuositus: 12<br>Kesto: 163 min<br>Elokuva on tekstitetty Suomeksi<br>Ensi-ilta: 19.1.2024</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>",
                "sv": "<p>Stormskärs Maja är en gripande berättelse om en stark kvinna och de utmaningar hon möter på en stormig ö.</p><p>Filmen är baserad på Anni Blomqvists roman med samma namn och utspelar sig i den åländska skärgården på 1800-talet. Den 17-åriga Maja gifter sig mot sin vilja med fiskaren Janne. Hennes liv på Stormskäret är fyllt av utmaningar och motgångar. Som fiskarhustru måste hon klara sig ensam med att ta hand om familjen när hennes man är till sjöss och borta under långa tider.</p><p>Maja blir dock en viljestark och självständig kvinna som inte är rädd för att ta ansvar och klara sig i den karga skärgården. Mellan Maja och Janne uppstår starka band, och med tiden fördjupas deras kärlek till varandra. Janne stöttar sin hustrus strävanden och inser att de gemensamma ansträngningarna samt att leva på lika villkor gör familjen stark.</p><p>Stormskärs Maja är en berättelse om vilja, styrka och kärlek.</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Myrskyluodon Maija (12) – Kino Helios",
                "sv": "SLUTSÅLD Stormskärs Maja (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63189/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63372",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7255",
                "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:kaarela",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaarela",
                            "sv": "Kårböle"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kannelmäki",
                            "sv": "Gamlas"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaarela",
                            "sv": "Kårböle"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.976796Z",
                "last_modified_time": "2025-03-27T09:09:26.704708Z",
                "custom_data": null,
                "email": "kanneltalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00420",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 559,
                "image": 414654,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.876202,
                        60.23885
                    ]
                },
                "telephone": {
                    "fi": "+358 40 822 8918"
                },
                "street_address": {
                    "fi": "Klaneettitie 5",
                    "sv": "Klarinettvägen 5",
                    "en": "Klaneettitie 5"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.kanneltalo.fi/",
                    "sv": "https://www.kanneltalo.fi/sv/framsidan",
                    "en": "https://www.kanneltalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Kanneltalon salissa esitetään vuosittain useita kantaesityksiä sekä monipuolista vierailuohjelmistoa. Esitystoiminnan lisäksi Kanneltalo on Kaarelan alueen asukkaiden yhteinen olohuone. Viihtyisä aula tarjoaa vapaata oleskelutilaa, korkea galleria kutsuu tutustumaan vaihtuviin näyttelyihin ja kahvilassa järjestetään maksuttomia esityksiä ja tapahtumia. Saman katon alta löytyy myös kirjasto, työväenopisto ja nuorisotalo.",
                    "sv": "Flera urpremiärer och mångsidigt med gästprogram syns varje år på Gamlasgårdens scen. Utöver teater- och konsertverksamheten är Gamlasgården också ett gemensamt vardagsrum för områdets invånare. Den trivsamma aulan har rum för fri vistelse, det höga galleriet bjuder in till olika utställningar och i caféet arrangeras avgiftsfria uppträdanden och evenemang. Under samma tak finns också ett bibliotek, ett arbetarinstitut och en ungdomsgård.",
                    "en": "In addition to a performance venue, Kanneltalo also serves as the shared living room of the residents of the Kaarela area. The pleasant lobby has space for simply hanging around, the high gallery invites visitors to enjoy changing exhibitions and the café is used to hold free-of-charge performances and events. The building also houses a library, an adult education centre and a youth centre."
                },
                "name": {
                    "fi": "Kanneltalo",
                    "sv": "Gamlasgården",
                    "en": "Cultural Centre Kanneltalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:41",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.583027Z",
                    "last_modified_time": "2024-02-06T13:19:13.977719Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 554,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kanneltalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:52",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.738883Z",
                    "last_modified_time": "2024-02-06T13:19:14.199532Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 618,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:596",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:59.781294Z",
                    "last_modified_time": "2024-02-06T13:19:16.916968Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 325,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muu"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1175,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39492",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "LAN-events",
                        "local area network parties",
                        "LAN-tapahtumat",
                        "lanit",
                        "verkkopelitapahtumat",
                        "LAN-evenemang"
                    ],
                    "created_time": "2023-08-16T05:11:48.242998Z",
                    "last_modified_time": "2023-08-16T05:11:48.243015Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 673,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1139,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150602,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T09:13:32.977846Z",
                    "last_modified_time": "2024-04-16T09:13:32.977860Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749409.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150602/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-16T09:13:32.928032Z",
            "last_modified_time": "2024-04-16T09:13:33.059880Z",
            "date_published": null,
            "start_time": "2024-04-25T11:00:00Z",
            "end_time": "2024-04-25T14: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": "Nyt kehutaan Kantsua – ja kerätään samalla ideoita Sitratorin uutta muraalia varten! Mikä on parasta Kantsussa? Mitä iloa Kannelmäki tarjoaa? Entä mikä tekee siitä erityisen? Tule kertomaan, piirtämään tai kirjoittamaan omat kehusi Kantsusta."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/05588FA71343FD64D81C56DFFF6E1ABE/Kehu_Kantsua_"
            },
            "description": {
                "fi": "<p>Nyt kehutaan Kantsua – ja kerätään samalla ideoita Sitratorin uutta muraalia varten! Mikä on parasta Kantsussa? Mitä iloa Kannelmäki tarjoaa? Entä mikä tekee siitä erityisen? Tule kertomaan, piirtämään tai kirjoittamaan omat kehusi Kantsusta.</p><p>Sitratorin muraalikokonaisuus uusitaan kauttaaltaan Helsinki-päiväksi 12.6. Uudet muraalit maalaa taiteilija Anetta Lukjanova. Teosten halutaan liittyvän Kannelmäkeen, ja ideoita niihin kerätään Kantsu-kehujen kautta.</p><p>Kehumisen päälle voit nauttia maukasta makkaraa! <br>Grillauksesta vastaavat D-aseman paikalle kutsumat vapaaehtoiset grillimestarit.</p><p>Yhteistyössä Helsinki Urban Art ry, D-asema Kannelmäki, Kannelmäen nuorisotalo, Movement ry, Kanneltalo ja Kaupunkiympäristön toimiala.</p>"
            },
            "name": {
                "fi": "Kehu Kantsua!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63372/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}