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=816
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=817",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=815"
    },
    "data": [
        {
            "id": "espoo_le:agh3sjcyjm",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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: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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcymi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-27T07:24:37.524972Z",
            "last_modified_time": "2024-05-27T07:24:37.524995Z",
            "date_published": null,
            "start_time": "2024-05-30T05:00:00Z",
            "end_time": "2024-05-30T17: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": "Petőfin elämästä ja tuotoksista kertova monipuolinen suomenkielinen näyttely.",
                "sv": "En varierad utställning på finska om Petőfs liv och verk.",
                "en": "A varied exhibition in Finnish on Petőf's life and works."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Viime vuonna Unkarin kansallisrunoilijan Sándor Petőfin syntymästä tuli kuluneeksi 200 vuotta. Petőfin elämästä ja tuotoksista kertova monipuolinen suomenkielinen näyttely tarjoaa runokatkelmien värittämänä runsaasti tietoa tästä vuosien 1848-49 vallankumouksen ja vapaussodan keskeisestä henkilöstä sekä hänen salaperäisestä elämästään.</p><p>Näyttely on esillä Espoonlahdessa Lippulaivan kirjastossa (huone Salonki), ja se on nähtävissä 29.5.-8.6.2024.</p><p>Näyttelyn avajaiset pidetään torstaina 30.5. klo 18.00–19.30. Avajaisissa esitetään Judit Godan esitelmä kirjailija-runoilija-kääntäjä Júlia Szendreystä. Luvassa on tietovisa ja keskustelua. Tarjoilla pientä purtavaa ja mehua.</p><p>Ei, runous, en koskaan jätä sinua,<br>En kykene siihen edes pakon alla.<br>Tulen ravitsemaan sinua<br>Rääkätyn rintani verellä kuumimmalla.</p><p>Sándor Petőfi: Runoilija olla vai eikö olla (Költő lenni vagy nem lenni) Suom. Tuula Komsi</p><p>Näyttelyn järjestäjät: <br>Helsingin Suomi-Unkari Seura, Liszt-instituutti Helsinki<br>(Unkarin kulttuurikeskus) Näyttely on laadittu Unkarin ulkoasiainministeriön toimeksiannosta yhteistyössä Petőfi<br>Kirjallisuusmuseon kanssa.</p><p>Kuratointi: Anna Czékmány, Andrea Borbás, Anna Kádár, Anna Magyary, Zsuzsanna Rózsafalvy,Diána Sóki</p><p>Graafinen suunnittelu: Stég Graphic Design, Gábor Norbert Kis, Attila Lőrincz, Gáspár Lőrincz, Márton Pattanyús</p><p>Suomennos: Ottilia Kovács, Runosuomennokset: Tuula Komsi, Toivo Lyy, Otto Manninen, Santala, Pekka Turkka</p>",
                "sv": "<p>Förra året firades 200-årsminnet av den ungerske nationalpoeten Sándor Petőfs födelse. En varierad utställning på finska om Petőfs liv och verk, med poetiska fragment, erbjuder en mängd information om denna centrala figur i revolutionen 1848-49 och självständighetskriget, liksom om hans mystiska liv.</p><p>Utställningen visas i Lippulaivans bibliotek (rummet Salonki) i Esboviken under tiden 29.5-8.6.2024.</p><p>Utställningen invigs torsdagen den 30.5. kl. 18.00-19.30. Under vernissagen håller Judit Goda en presentation om författaren, poeten och översättaren Júlia Szendrey. Det blir en frågesport och en diskussion. Snacks och juice kommer att serveras.</p>",
                "en": "<p>Last year marked the 200th anniversary of the birth of Hungary's national poet, Sándor Petőf. A varied exhibition in Finnish on Petőf's life and works, with poetic fragments, offers a wealth of information on this central figure of the 1848-49 revolution and the War of Independence, as well as on his mysterious life.</p><p>The exhibition is on display at the Lippulaivan Library (room Salonki) in Espoonlahti, and is open from 29 May to 8 June 2024.</p><p>The opening of the exhibition will take place on Thursday 30.5. at 18.00-19.30. The opening will include a presentation by Judit Goda on the writer-poet-translator Júlia Szendrey. There will be a quiz and a discussion. Snacks and juice will be served.</p>"
            },
            "name": {
                "fi": "Petőfi maailman ympäri -näyttely",
                "sv": "Petőfi Around the World - utställning",
                "en": "Petőfi Around the World - exhibition"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcyjm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh3sjcymi",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcxpu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcxsu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcxva/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcxxe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcxzi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcx3u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcx6a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcyam/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcydm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcyge/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcyjm/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-27T07:24:35.668830Z",
            "last_modified_time": "2024-05-27T07:24:35.668861Z",
            "date_published": null,
            "start_time": "2024-05-29T05:00:00Z",
            "end_time": "2024-06-08T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Petőfin elämästä ja tuotoksista kertova monipuolinen suomenkielinen näyttely.",
                "sv": "En varierad utställning på finska om Petőfs liv och verk.",
                "en": "A varied exhibition in Finnish on Petőf's life and works."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Viime vuonna Unkarin kansallisrunoilijan Sándor Petőfin syntymästä tuli kuluneeksi 200 vuotta. Petőfin elämästä ja tuotoksista kertova monipuolinen suomenkielinen näyttely tarjoaa runokatkelmien värittämänä runsaasti tietoa tästä vuosien 1848-49 vallankumouksen ja vapaussodan keskeisestä henkilöstä sekä hänen salaperäisestä elämästään.</p><p>Näyttely on esillä Espoonlahdessa Lippulaivan kirjastossa (huone Salonki), ja se on nähtävissä 29.5.-8.6.2024.</p><p>Näyttelyn avajaiset pidetään torstaina 30.5. klo 18.00–19.30. Avajaisissa esitetään Judit Godan esitelmä kirjailija-runoilija-kääntäjä Júlia Szendreystä. Luvassa on tietovisa ja keskustelua. Tarjoilla pientä purtavaa ja mehua.</p><p>Ei, runous, en koskaan jätä sinua,<br>En kykene siihen edes pakon alla.<br>Tulen ravitsemaan sinua<br>Rääkätyn rintani verellä kuumimmalla.</p><p>Sándor Petőfi: Runoilija olla vai eikö olla (Költő lenni vagy nem lenni) Suom. Tuula Komsi</p><p>Näyttelyn järjestäjät: <br>Helsingin Suomi-Unkari Seura, Liszt-instituutti Helsinki<br>(Unkarin kulttuurikeskus) Näyttely on laadittu Unkarin ulkoasiainministeriön toimeksiannosta yhteistyössä Petőfi<br>Kirjallisuusmuseon kanssa.</p><p>Kuratointi: Anna Czékmány, Andrea Borbás, Anna Kádár, Anna Magyary, Zsuzsanna Rózsafalvy,Diána Sóki</p><p>Graafinen suunnittelu: Stég Graphic Design, Gábor Norbert Kis, Attila Lőrincz, Gáspár Lőrincz, Márton Pattanyús</p><p>Suomennos: Ottilia Kovács, Runosuomennokset: Tuula Komsi, Toivo Lyy, Otto Manninen, Santala, Pekka Turkka</p>",
                "sv": "<p>Förra året firades 200-årsminnet av den ungerske nationalpoeten Sándor Petőfs födelse. En varierad utställning på finska om Petőfs liv och verk, med poetiska fragment, erbjuder en mängd information om denna centrala figur i revolutionen 1848-49 och självständighetskriget, liksom om hans mystiska liv.</p><p>Utställningen visas i Lippulaivans bibliotek (rummet Salonki) i Esboviken under tiden 29.5-8.6.2024.</p><p>Utställningen invigs torsdagen den 30.5. kl. 18.00-19.30. Under vernissagen håller Judit Goda en presentation om författaren, poeten och översättaren Júlia Szendrey. Det blir en frågesport och en diskussion. Snacks och juice kommer att serveras.</p>",
                "en": "<p>Last year marked the 200th anniversary of the birth of Hungary's national poet, Sándor Petőf. A varied exhibition in Finnish on Petőf's life and works, with poetic fragments, offers a wealth of information on this central figure of the 1848-49 revolution and the War of Independence, as well as on his mysterious life.</p><p>The exhibition is on display at the Lippulaivan Library (room Salonki) in Espoonlahti, and is open from 29 May to 8 June 2024.</p><p>The opening of the exhibition will take place on Thursday 30.5. at 18.00-19.30. The opening will include a presentation by Judit Goda on the writer-poet-translator Júlia Szendrey. There will be a quiz and a discussion. Snacks and juice will be served.</p>"
            },
            "name": {
                "fi": "Petőfi maailman ympäri -näyttely",
                "sv": "Petőfi Around the World - utställning",
                "en": "Petőfi Around the World - exhibition"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcymi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63123",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7258",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.221655Z",
                "last_modified_time": "2024-02-06T13:09:51.033692Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 575,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.947306,
                        60.16663
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 36563"
                },
                "street_address": {
                    "fi": "Kasarmikatu 46-48",
                    "sv": "Kaserngatan 46-48",
                    "en": "Kasarmikatu 46-48"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.savoyteatteri.fi/",
                    "sv": "http://www.savoyteatteri.fi/",
                    "en": "http://www.savoyteatteri.fi/"
                },
                "description": null,
                "name": {
                    "fi": "Savoy-teatteri",
                    "sv": "Savoy-teatern",
                    "en": "Savoy Theatre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:33",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.509726Z",
                    "last_modified_time": "2024-02-06T13:19:13.839978Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 761,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:351",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.568885Z",
                    "last_modified_time": "2024-02-06T13:19:15.244248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 652,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri ja sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:49",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.697675Z",
                    "last_modified_time": "2024-02-06T13:19:14.132899Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 575,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Savoy-teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "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"
                },
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1942,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/3601047",
                        "en": "https://www.lippu.fi/eventseries/3601047"
                    },
                    "description": null,
                    "price": {
                        "fi": "38,30 €",
                        "en": "38,30 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11099,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-28T10:14:11.962307Z",
                    "last_modified_time": "2024-02-28T10:14:11.962326Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745131.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-28T10:14:11.934573Z",
            "last_modified_time": "2024-05-26T16:13:07.438716Z",
            "date_published": null,
            "start_time": "2024-05-31T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C74A997EAADC0418B8543E2101FCD5B2/Kanan_Gill_",
                "en": "http://www.savoyteatteri.fi/en/events/event/C74A997EAADC0418B8543E2101FCD5B2/Kanan_Gill_"
            },
            "description": {
                "fi": "<p>Winner of the Punch Line Bangalore Competition, <b>Kanan Gill</b>, has long been one of the most popular comedians in his native country of India. He then rose to global fame with the YouTube series \"Pretentious Movie Reviews\" where he reviewed flawed old Bollywood films in a witty manner. Kanan has toured across India and around the world in Singapore, Hong Kong, Dubai, Bangkok, Vietnam, the UK, The Netherlands, North America and Australia. His stand-up special \"Keep it Real\" is widely regarded as one of the best in the history of Indian stand-up.</p><p>Age limit: K-16</p><p>Duration about 85 min, no intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>",
                "en": "<p>Winner of the Punch Line Bangalore Competition, <b>Kanan Gill</b>, has long been one of the most popular comedians in his native country of India. He then rose to global fame with the YouTube series \"Pretentious Movie Reviews\" where he reviewed flawed old Bollywood films in a witty manner. Kanan has toured across India and around the world in Singapore, Hong Kong, Dubai, Bangkok, Vietnam, the UK, The Netherlands, North America and Australia. His stand-up special \"Keep it Real\" is widely regarded as one of the best in the history of Indian stand-up.</p><p>Age limit: K-16</p><p>Duration about 85 min, no intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>"
            },
            "name": {
                "fi": "Kanan Gill",
                "en": "Kanan Gill"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "W&T Comedy",
                "en": "W&T Comedy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63123/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh267dkui",
            "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: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:p1810",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "työnteko"
                    ],
                    "created_time": "2023-08-16T05:19:48.526591Z",
                    "last_modified_time": "2023-08-16T05:19:48.526612Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 61,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työ",
                        "sv": "arbete",
                        "en": "work"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-25T10:31:12.464704Z",
            "last_modified_time": "2024-05-25T10:31:12.464735Z",
            "date_published": null,
            "start_time": "2024-06-11T06:00:00Z",
            "end_time": "2024-06-11T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Festarit on suunnattu erityisesti rikos-, päihde- ja mielenterveyskentän asiakkaille sekä ammattilaisille, mutta maksuton tapahtuma on avoin kaikille."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa mukaan Yli Rajojen -kesäfestaritapahtumaan tiistaina 11.6.2024 Espoon Leppävaaraan!<br>Tapahtuma-alueena toimii Sellon kirjaston tapahtumatori, Sellon kauppakeskuksen Viaporintori sekä Sellon Finnkino.<br>Festarit on suunnattu erityisesti rikos-, päihde- ja mielenterveyskentän asiakkaille sekä ammattilaisille, mutta maksuton tapahtuma on avoin kaikille.</p><p>Sellon kirjaston tapahtumatori:<br>Klo 9-15 Messut<br>Messuilla pääset tutustumaan toimijoihin, jotka tarjoavat välityömarkkinapaikkoja ja/tai tukea rikoksettomaan ja päihteettömään elämään sekä mielenterveyden haasteisiin. Messuilla on mahdollisuus päästä keskustelemaan myös Helsingin, Espoon ja Vantaan työllisyyspalveluiden kanssa.</p><p>Klo 10.45-11.45 Paneelikeskustelu<br>Aiheena rikos-, päihde- ja mielenterveystaustaisten työllistymisen haasteet ja mahdolliset ratkaisut.</p><p>Viaporintori, Sellon kauppakeskus:<br>Klo 10-15 Musiikkia, esityksiä ja kokemuspuheenvuoroja<br>Tapahtumalavalla artisteja, bändejä, teatteria sekä kokemuspuhetta elämänmuutoksesta.<br>Kirjaston edessä grilli kuumana koko festaripäivän. Tarjolla kahvia, pullaa, makkaraa ja maissia.<br>Tapahtuma huipentuu Näkyville-projektin toteuttaman lyhytelokuvan ensiesitykseen. Projektissa ovat olleet mukana Kohdataan töissä -hankkeen osallistujat.</p><p>Sellon kirjasto, Akseli -sali:<br>klo 15-16 Paljon onnee vaa-lyhytelokuvaan liittyvä keskustelutilaisuus</p><p>Finnkino Sello,sali 2:<br>klo 16-16.30 Paljon onnee vaa -lyhytelokuva</p>"
            },
            "name": {
                "fi": "Yli-rajojen kesäfestaritapahtuma"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Valo valmennus ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh267dkui/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63227",
            "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: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:350",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.556582Z",
                    "last_modified_time": "2024-02-06T13:19:15.225361Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 430,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke: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"
                }
            ],
            "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/balettikoulu-anne-hirvonen-malmitalo-18434764/"
                    },
                    "description": null,
                    "price": {
                        "fi": "16,50 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12865,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-15T14:14:17.365914Z",
                    "last_modified_time": "2024-03-15T14:14:17.365930Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746130.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T14:14:17.343273Z",
            "last_modified_time": "2024-05-25T09:12:41.757569Z",
            "date_published": null,
            "start_time": "2024-05-25T12: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": "Balettikoulu Anne Hirvosen oppilaat esittävät Peppi Pitkätossun."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2487F382B58C2AEFC9E23C3D189827D0/Peppi_Pitkatossu"
            },
            "description": {
                "fi": "<p>Balettikoulu Anne Hirvosen oppilaat esittävät Peppi Pitkätossun.</p><p>Esiintyjinä ovat koulun kaikki oppilaat pienistä lapsista aikuisiin.</p><p>Esityksen kesto 1 h.</p><p>Liput: 16,50 € / 10 €</p>"
            },
            "name": {
                "fi": "Peppi Pitkätossu – Balettikoulu Anne Hirvosen kevätnäytös"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63227/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63226",
            "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: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:350",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.556582Z",
                    "last_modified_time": "2024-02-06T13:19:15.225361Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 430,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke: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"
                }
            ],
            "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/balettikoulu-anne-hirvonen-malmitalo-18434760/"
                    },
                    "description": null,
                    "price": {
                        "fi": "16,50 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12864,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-15T14:14:17.061892Z",
                    "last_modified_time": "2024-03-15T14:14:17.061912Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746129.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12864/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T14:14:17.030336Z",
            "last_modified_time": "2024-05-25T09:12:41.617716Z",
            "date_published": null,
            "start_time": "2024-05-25T09: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": "Balettikoulu Anne Hirvosen oppilaat esittävät Peppi Pitkätossun."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8F71794FBDB87173669F46A916F2F29E/Peppi_Pitkatossu"
            },
            "description": {
                "fi": "<p>Balettikoulu Anne Hirvosen oppilaat esittävät Peppi Pitkätossun.</p><p>Esiintyjinä ovat koulun kaikki oppilaat pienistä lapsista aikuisiin.</p><p>Esityksen kesto 1 h.</p><p>Liput: 16,50 € / 10 €</p>"
            },
            "name": {
                "fi": "Peppi Pitkätossu – Balettikoulu Anne Hirvosen kevätnäytös"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63226/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63690",
            "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: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:52",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.738883Z",
                    "last_modified_time": "2024-02-06T13:19:14.199532Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 618,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4819,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5022,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39492",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "LAN-events",
                        "local area network parties",
                        "LAN-tapahtumat",
                        "lanit",
                        "verkkopelitapahtumat",
                        "LAN-evenemang"
                    ],
                    "created_time": "2023-08-16T05:11:48.242998Z",
                    "last_modified_time": "2023-08-16T05:11:48.243015Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 673,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151109,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-13T11:12:52.171835Z",
                    "last_modified_time": "2024-05-13T11:12:52.171854Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744897.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151109/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-13T11:12:52.157445Z",
            "last_modified_time": "2024-05-24T09:12:49.975912Z",
            "date_published": null,
            "start_time": "2024-06-12T17:00:00Z",
            "end_time": "2024-06-12T19: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": "Illallinen Malmin taivaan alla kutsuu alueen asukkaat syömään yhteisen ruokapöydän ääreen Ala-Malmin puiston kauneuteen. Pitkä illallispöytä katetaan sadalle paikkansa ennakkoon varanneelle. Paikat täynnä!",
                "sv": "Middag under Malms himmel bjuder invånarna i området in att äta vid ett gemensamt middagsbord i den vackra Nedre Malms park. Det långa middagsbordet dukas åt ett hundra personer som har bokat sin plats på förhand.",
                "en": "Dinner under the Malmi sky invites local residents to eat at the same table in the beautiful Ala-Malmi Park. We will set a long dinner table for a hundred people with reservations."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8B1B1EFFF8FF865334BEA0EF2EA99B81/Illallinen_Malmin_taivaan_alla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8B1B1EFFF8FF865334BEA0EF2EA99B81/Middag_under_Malms_himmel",
                "en": "http://www.malmitalo.fi/en/events/event/8B1B1EFFF8FF865334BEA0EF2EA99B81/Dinner_under_the_Malmi_sky"
            },
            "description": {
                "fi": "<p>Illallinen Malmin taivaan alla kutsuu alueen asukkaat syömään yhteisen ruokapöydän ääreen Ala-Malmin puiston kauneuteen. Pitkä illallispöytä katetaan sadalle paikkansa ennakkoon varanneelle. Paikat täynnä!</p><p>Kutsu siis mukaan ystäväsi ja pakkaa mukaasi ruoat, juomat ja astiat – keskiviikkona 12.6. kippistetään yhdessä rakkaalle Helsingille!</p><p>Osallistuminen on maksutonta. Kiitos ilmoittautuneille ja yhteisessä ruokapöydässä nähdään! Pöytäpaikkojen lisäksi piknikiä voi tulla viettämään Ala-Malmin puiston nurmikoille ilman ennakkoilmoittautumista.</p><p>Illallisen lomassa esiintyy touko-yhtye, jonka jazzahtavat soinnut huikkaavat huikealle päivälle kiitoksensa. Olet lämpimästi tervetullut yhteisen illallispöydän äärelle!</p>",
                "sv": "<p>Middag under Malms himmel bjuder invånarna i området in att äta vid ett gemensamt middagsbord i den vackra Nedre Malms park. Det långa middagsbordet dukas åt ett hundra personer som har bokat sin plats på förhand.</p><p>Bjud alltså in dina vänner och packa med dig maten, dryckerna och kärlen – onsdagen den 12 juni skålar vi tillsammans för vårt kära Helsingfors!</p><p>Deltagande är avgiftsfritt. Anmälan är full.</p><p>Det finns ett begränsat antal av bordsplatser, men om de blir fyllda kan man komma och ha en picknick på gräsmattan i Nedre Malms park.</p><p>Under middagen spelar bandet touko, vars jazzliknande tongångar tackar den fina dagen. Du är varmt välkommen till det gemensamma middagsbordet!</p>",
                "en": "<p>Dinner under the Malmi sky invites local residents to eat at the same table in the beautiful Ala-Malmi Park. We will set a long dinner table for a hundred people with reservations.</p><p>Invite your friends and pack your own picnic food, drinks and plates – let’s raise a glass together on Wednesday, 12 June to our wonderful city, Helsinki!</p><p>Participation is free of charge. There is a limited number of seats, but even when they’re all gone, you can join everyone for a picnic in Ala-Malmi Park. The registration for the event is full.</p><p>The dinner will feature the music of the band, touko, whose jazzy tunes will be a highlight of this fantastic day. Join us all at the same table!</p>"
            },
            "name": {
                "fi": "Illallinen Malmin taivaan alla – Malmin tapahtumakesä",
                "sv": "Middag under Malms himmel – Malms evenemangssommar",
                "en": "Dinner under the Malmi sky – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63690/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh2ohpgh4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:61461",
                "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-15T15:18:36.809747Z",
                "last_modified_time": "2026-02-10T13:13:08.376470Z",
                "custom_data": null,
                "email": "kalajarvi.palvelutori@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": 19,
                "image": 10262,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.73939,
                        60.30597
                    ]
                },
                "telephone": {
                    "fi": "+358 9 816 21"
                },
                "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://www.espoo.fi/fi/espoon-kaupunki/palvelutorit/kalajarven-palvelutorin-palvelut",
                    "sv": "https://www.espoo.fi/sv/esbo-stad/servicetorgen/tjansterna-pa-servicetorget-i-kalajarvi",
                    "en": "https://www.espoo.fi/en/city-espoo/service-centres/services-kalajarvi-service-centre"
                },
                "description": {
                    "fi": "Kalajärven palvelutorilla on useita julkisia palveluja yhdessä paikassa. Kalajärven palvelutorilla sijaitsee terveysasema, neuvola, hammashoitola, kirjasto ja Espoo-infon asiointipiste Kalajärvi.\nTarkista palveluiden omat aukiolot sivun alaosan linkeistä. Tilojen varaaminen Voit varata palvelutorilta tiloja tapahtumalle tai kokoukselle Varaamo-palvelun kautta (linkki alla). Tilojen käyttö on yleensä ilmaista. Vain yrityksiltä peritään maksu, jonka suuruus löytyy Varaamo-palvelusta kunkin tilan tiedoista.",
                    "sv": "Servicetorget i Kalajärvi samlar ihop flera offentliga tjänster under ett tak. På servicetorget i Kalajärvi finns följande tjänster: hälsostation, mödra- och barnrådgivning, tandklinik, bibliotek och Esbo-info servicepunkt Kalajärvi.\nDe olika tjänsterna på servicetorget har olika öppettider som de informerar om var för sig. Se länkarna nedan för kontorsspecifika öppettider Hur bokar jag rum på servicetorget? Du kan boka rum på servicetorget för evenemang eller möten på tjänsten Varaamo (länken nedan). Det är i regel gratis att använda rummen. Företag måste betala en avgift som du hittar intill uppgifterna för varje lokal i Varaamo.",
                    "en": "The Kalajärvi Service Centre houses several public services in one place. Services available at the Kalajärvi Service Centre are Health Centre, Maternity and child health clinic, Dental clinic, Library and Espoo info Service Point Kalajärvi.\nPlease check links for individual opening hours of the Services below. How ro reserve spaces at the Service Centre The Service Centre has spaces that you can reserve for meetings and other events. In general, the use of the premises is free of charge. Businesses are charged a small fee - information on the fees of each facility is available on the Varaamo website (link below)."
                },
                "name": {
                    "fi": "Kalajärven palvelutori",
                    "sv": "Servicetorget i Kalajärvi",
                    "en": "Kalajärvi Service Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:61461/?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:p10727",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kansalaisaktivismi",
                        "kansalaisosallistuminen",
                        "kansalaisten osallistuminen",
                        "medborgaraktivism",
                        "medborgardeltagande",
                        "engagemang",
                        "medborgarinflytande"
                    ],
                    "created_time": "2023-08-16T05:18:07.639076Z",
                    "last_modified_time": "2023-08-16T05:18:07.639094Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1714,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "osallistuminen",
                        "sv": "deltagande",
                        "en": "participation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8270",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "city planning",
                        "town planning",
                        "urban planning",
                        "planering av stad",
                        "urban planering"
                    ],
                    "created_time": "2023-08-16T05:17:22.962396Z",
                    "last_modified_time": "2023-08-16T05:17:22.962415Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 29,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kaupunkisuunnittelu",
                        "sv": "stadsplanering",
                        "en": "urban design"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8270/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/460608959697562/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:tyt",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T10:19:16.278102Z",
            "last_modified_time": "2024-05-24T06:09:54.911709Z",
            "date_published": null,
            "start_time": "2024-06-12T14:00:00Z",
            "end_time": "2024-06-12T16: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": "Lämpimästi tervetuloa tutustumaan Kalajärvellä sijaitsevien Vaskitsamäen ja Niipperinniityn asemakaavoihin. ",
                "sv": "Vi presenterar målen och beredningsmaterialet för detaljplanerna och samlar in åsikter om projektet. Välkommen! ",
                "en": "We will present the objectives of the plans being prepared as well as related planning materials and collect residents’ views. Welcome! "
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/hankkeet/vaskitsamaen-asuinalue",
                "sv": "https://www.espoo.fi/sv/projekt/bostadsomradet-kopparormsbacken",
                "en": "https://www.espoo.fi/en/projects/vaskitsamaki-residential-area"
            },
            "description": {
                "fi": "<p>Lämpimästi tervetuloa tutustumaan Kalajärvellä sijaitsevien Vaskitsamäen ja Niipperinniityn asemakaavoihin. Kaavoista on laadittu lähtökohdat ja tavoitteet ja nyt niiden pohjalta järjestetään infotilaisuus ja osallistumis- ja arviointisuunnitelmat. Infotilaisuudessa kerrotaan kaavojen sisällöistä ja kaavaprosessin etenemisestä.</p><p>Tilaisuus järjestetään opetustilassa Ahti, Kalajärven palvelukeskus, Ruskaniitty 4, 12.6.2024 klo 17–19.</p><p>Tilaisuuden info-osuudessa kerrotaan kaavojen tavoitteista ja alustavista suunnitelmista. Tämän jälkeen on varattu aikaa kysymyksille ja kommenteille sekä keskustelulle kaavojen suunnittelijoiden kanssa. Tapaat asukastilaisuudessa kaavan valmistelijoita ja kaupunkisuunnittelulautakunnan edustajia.</p><p>Tapahtuma on avoin kaikille kiinnostuneille. Ei ennakkoilmoittautumista, nähdään tilaisuudessa!<br> <br>Mistä on kyse Vaskitsamäen kaavassa?</p><p>Vaskitsamäen kaava-alue sijaitsee Kalajärven kaupunginosassa Kalajärven keskuksen pohjoispuolella. Alueella sijaitsee muutamia rakennuksia, mutta alue on suurimmaksi osaksi metsää. Kuntorata sijoittuu kaava-alueen pohjois- ja keskiosiin. Alue on asemakaavoittamaton.</p><p>Vaskitsamäen asemakaava suunnitellaan tiiviinä ja matalana vartin kaupunkikylänä. Tavoitteena on suunnitella yhtenäinen asuinalue, joka koostuu vaihtelevista talotyypeistä. Painotus on matalissa pientalomaisissa rakennuksissa (1–2 kerrosta). Korkeampia (4–5 kerrosta) ja tiiviimpiä korttelialueita suunnitellaan kaava-alueen eteläosiin Kalajärven keskustan läheisyyteen. Asemakaavalla kytketään Kalajärven keskus jatkumaan Vihdintien pohjoispuolelle palveluiden sekä tehokkaamman maankäytön muodossa. </p><p>Asemakaavalla luodaan edellytykset 1000–1400 uudelle asukkaalle. Kerrosneliömetreinä uutta asuinrakentamista osoitetaan 50 000–70 000 k-m² verran. Asuinrakentamisen lisäksi alueelle varataan tilaa 10-ryhmäiselle päiväkodille sekä lähiliikuntapaikalle, joka sisältää pelikentän. Lisäksi Vihdintien varteen tutkitaan korttelia liiketilalle tai päivittäistavarakaupalle ja mahdollisesti senioriasumiseen.</p><p>Suunnittelun yhteydessä selvitetään alueen luontoarvot ja varmistetaan ekologisten yhteyksien toimivuus. Nykyinen virkistysreitistö ja sen yhteyteen suunniteltavat metsäiset korttelipihat muodostavat alueen yleisilmeestä vehreän. Vaskitsamäkeen tavoitellaan kattavia ja viihtyisiä jalankulun ja pyöräliikenteen reittejä alueen sisällä sekä sujuvia yhteyksiä Vihdintien bussipysäkeille ja Kalajärven keskustaan. Katutilat suunnitellaan viihtyisiksi ja yksityiskohdiltaan vaihteleviksi. Vaskitsamäessä kiinnitetään huomiota asumisen ja palveluiden saavutettavuuteen henkilöautolla sekä yleisten pysäköintipaikkojen riittävyyteen.  </p><p>Kaavan osallistumis- ja arviointisuunnitelma sekä valmisteluaineisto on nähtävillä 10.6.–9.7.2024 Espoon kaupungin verkkosivustolla. Löydät sen parhaiten kirjoittamalla sivun hakuun ” Vaskitsamäen asuinalue”.</p><p>Lisätietoja:</p><p>Mikko Malmström<br>arkkitehti<br>040 636 8644<br>mikko.malmstrom@espoo.fi<br>--<br> <br>Mistä on kyse Niipperinniityn kaavassa?</p><p>Kalajärven keskuksen ja Niipperin välissä on laaja, suurimmaksi osin asemakaavoittamaton alue, jossa sijaitsee Niipperinniityn, Antinmäen ja Niipperinmäen pientaloalueet, sekä paljon peltoja ja metsää.</p><p>Asemakaavan tavoitteena on suunnitella alueelle viihtyisää ja luonnonläheistä pientaloaluetta olevaan rakenteeseen tukeutuen ja sitä täydentäen. Asemakaavalla turvataan alueen luonto- ja kulttuurihistorialliset arvot. Asemakaavaan suunnitellaan myös pienimuotoisia lähipalveluita sekä laadukas lähivirkistysalueiden verkosto.</p><p>Rakentamisen tehokkuudeksi on suunniteltu pääosin noin e = 0,15–0,25. Kaupunkirakenteen keskisimmällä kohdalla tutkitaan rakentamisen tehokkuutta noin e = 0,25–0,35.</p><p>Kaavan osallistumis- ja arviointisuunnitelma sekä valmisteluaineisto on nähtävillä 27.5.–25.6.2024 Espoon kaupungin verkkosivustolla. Löydät sen parhaiten kirjoittamalla sivun hakuun ”Niipperinniityn pientaloalue” tai www.espoo.fi/fi/hankkeet/niipperinniityn-pientaloalue (kopioi linkki selaimeesi).</p><p>Lisätietoja:</p><p>Hugo Leppäsyrjä<br>arkkitehti<br>040 636 5089<br>hugo.leppasyrja@espoo.fi<br>--</p><p>Turvallisemman tilan periaatteet<br>Haluamme, että tapahtumassamme on kaikilla hyvä olla, minkä vuoksi tapahtumassa noudatetaan turvallisemman tilan periaatteita.</p><p>Kunnioitathan siis muiden rajoja. Älä myöskään tee turhia oletuksia kanssaolijoiden taustoista, sukupuolesta, seksuaalisuudesta tai muista identiteettitekijöistä. Kaikenlainen häirintä, syrjintä tai muu toisten rajojen rikkominen johtaa häiriköijän poistamiseen alueelta.</p><p>Mikäli kohtaat häirintää tai ahdistavia tilanteita tapahtumassamme, ole rohkeasti yhteydessä henkilökuntaan.<br></p>",
                "sv": "<p>Vi presenterar målen och beredningsmaterialet för detaljplanerna och samlar in åsikter om projektet. Välkommen! </p><p>Vi ordnar ett allmänt möte 12.6.2024 kl. 17-19 på servicetorget i Kalajärvi, Ahti (Höstglödsängen 4).</p><p>Det allmänna mötet ordnas av stadsplaneringscentralen och hålls på finska. Du kan ställa frågor och kommentera på finska, svenska eller engelska. Du kan kontakta planeraren per e-post.</p><p>www.espoo.fi/sv/projekt/bostadsomradet-kopparormsbacken</p><p>www.espoo.fi/sv/projekt/smahusomradet-nipertangen</p><p>Kontaktuppgifter</p><p>Kopparormsbacken:</p><p>Mikko Malmström<br>040 636 8644<br>mikko.malmstrom@espoo.fi</p><p>Nipertängen</p><p>Hugo Leppäsyrjä<br>040 636 5089<br>hugo.leppasyrja@espoo.fi</p><p><br>Principerna för tryggt rum:</p><p>Vi vill att alla ska ha det bra på vårt evenemang, varför vi efterlever principerna för tryggt rum vid det.</p><p>Var snäll och respektera andras gränser. Gör heller inga onödiga antaganden om dina medbesökares bakgrunder, kön, sexualitet eller andra identitetsfaktorer. Alla former av trakasserier, diskriminering och annat gränsöverskridande beteende leder till att den som stör eskorteras bort från området.</p><p>Om du upplever trakasserier eller en pressad situation vid vårt evenemang, ta modigt kontakt med personalen!<br></p>",
                "en": "<p>We will present the objectives of the plans being prepared as well as related planning materials and collect residents’ views. Welcome! </p><p>We will organise the event at Ahti, Kalajärvi Service Centre, Ruskaniitty 4, on 12 June 2024 at 17:00-19:00.</p><p>The event is organised by the City Planning Department. The event will be held in Finnish. You can ask questions and share your comments in English or Swedish or contact the planner directly by email.</p><p>www.espoo.fi/en/projects/vaskitsamaki-residential-area</p><p>www.espoo.fi/en/projects/niipperinniitty-area-detached-and-semi-detached-area</p><p>Contact Information</p><p>Vaskitsamäki:</p><p>Mikko Malmström<br>040 636 8644<br>mikko.malmstrom@espoo.fi</p><p>Niipperinniitty:</p><p>Hugo Leppäsyrjä<br>040 636 5089<br>hugo.leppasyrja@espoo.fi<br>--</p><p>Principles for a safer space:</p><p>We want everyone to feel comfortable at our event, which is why the event will be held in accordance with the principles for a safer space.</p><p>As such, please respect other people’s boundaries at the event and do not make assumptions about other attendees’ background, gender, sexuality or other parts of their identity. Any kind of harassment, discrimination and violation of other people’s boundaries are grounds for removal from the premises.</p><p>If you encounter any harassment or distressing situations at our event, please do not hesitate to contact the staff!<br></p>"
            },
            "name": {
                "fi": "Info- ja keskustelutilaisuus: Vaskitsamäen ja Niipperinniityn asemakaavat",
                "sv": "Ett informations- och diskussionsmöte: Kopparormsbacken 721900 och Nipertängen 714800",
                "en": "Information and discussion session: Vaskitsamäki 721900 and Niipperinniitty 714800"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Opetustila Ahti"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh2ohpgh4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63884",
            "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: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:52",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.738883Z",
                    "last_modified_time": "2024-02-06T13:19:14.199532Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 618,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4819,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5022,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39492",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "LAN-events",
                        "local area network parties",
                        "LAN-tapahtumat",
                        "lanit",
                        "verkkopelitapahtumat",
                        "LAN-evenemang"
                    ],
                    "created_time": "2023-08-16T05:11:48.242998Z",
                    "last_modified_time": "2023-08-16T05:11:48.243015Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 673,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151285,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T11:13:02.592603Z",
                    "last_modified_time": "2024-05-23T11:13:02.592619Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746039.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151285/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T11:13:02.575869Z",
            "last_modified_time": "2024-05-23T13:12:47.332604Z",
            "date_published": null,
            "start_time": "2024-08-24T09: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": "Opastetulla kävelykierroksella tutustutaan Malmin ja Ylä-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 12 ja kestää noin klo 13.30 saakka.",
                "sv": "På den guidade promenadrundan bekantar vi oss med Malms historia på svenska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar fram till cirka kl. 13.30.",
                "en": "Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts until roughly 13:30 pm."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/621EED4A96E2F73BAE8381473FF13C6A/Rauhallinen_muistelukavely_Malmilla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/621EED4A96E2F73BAE8381473FF13C6A/Lugn_minnespromenad_pa_Malm",
                "en": "http://www.malmitalo.fi/en/events/event/621EED4A96E2F73BAE8381473FF13C6A/A_peaceful_walk_down_memory_lane_at_Malmi"
            },
            "description": {
                "fi": "<p>Opastetulla kävelykierroksella tutustutaan Malmin ja Ylä-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 12 ja kestää noin klo 13.30 saakka.</p><p><b>Ylä-Malmin vaiheita kävellen</b><br>Malmin pitkä historiallinen kehitys keskiaikaisesta maalaiskylästä suureksi, jälleen uudistuvaksi kaupunginosaksi näkyy alueen moninaisessa miljöössä, johon tutustutaan opastetulla kävelykierroksella.</p><p>Kierros kestää noin puolitoista tuntia. Tule mukaan nostalgiselle kierrokselle läpi rakkaan kaupunginosamme tarinaa!</p><p>Kävely on toteutettu yhteistyössä Helsingin kaupunginmuseon ja WalkHelsingin kanssa, ja se liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 museon päärakennuksessa, Aleksanterinkatu 16.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p>",
                "sv": "<p>På den guidade promenadrundan bekantar vi oss med Malms historia på svenska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar fram till cirka kl. 13.30.</p><p>Malm har förändrats mycket och förändringen fortsätter i rask takt. På minnespromenaden promenerar vi i lugn takt längs en lätt rutt från Nedre Malms park till Malms kyrka, och tar pauser på vägen. Dessutom väcker vi upp minnen genom att titta på gamla fotografier och samtala. Rundan som dras av en frivilligarbetare varar i cirka en och en halv timme.</p><p>Promenaden har genomförts i samarbete med Malms kulturhus och den anknyter till utställningen Mestor och paikkor – Se Helsingfors med nya ögon, som visas i stadsmuseets huvudbyggnad 9.5.–15.9.2024 på adressen Alexandersgatan 16.</p><p>Fritt inträde, ingen förhandsanmälan.</p>",
                "en": "<p>Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts until roughly 13:30 pm.</p><p>Malmi has changed a lot over the years, and that change keeps getting faster. This is an easy-going walk down memory lane from Ala-Malmi Park to the Malmi Church, with time to stop and rest. It is an excellent opportunity to jot your memory with old photos and discussion.</p><p>This walk, led by a volunteer, lasts for roughly an hour and a half.</p><p>The walk is implemented in cooperation with Malmitalo Cultural Centre, and is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p><p>Free admission, no advance registration.</p>"
            },
            "name": {
                "fi": "Rauhallinen muistelukävely Malmilla – Malmin tapahtumakesä",
                "sv": "Lugn minnespromenad på Malm – Malms evenemangssommar",
                "en": "A peaceful walk down memory lane at Malmi – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63884/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61585",
            "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: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: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: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:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4819,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5022,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39492",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "LAN-events",
                        "local area network parties",
                        "LAN-tapahtumat",
                        "lanit",
                        "verkkopelitapahtumat",
                        "LAN-evenemang"
                    ],
                    "created_time": "2023-08-16T05:11:48.242998Z",
                    "last_modified_time": "2023-08-16T05:11:48.243015Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 673,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6432,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-05T12:13:50.632056Z",
                    "last_modified_time": "2024-02-06T13:23:43.654076Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738570.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6432/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-05T12:13:50.610979Z",
            "last_modified_time": "2024-05-23T13:12:41.900931Z",
            "date_published": null,
            "start_time": "2024-05-26T12: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": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.",
                "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.",
                "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/3A16158E806108BA479FC645383AD1CE/How_will_you_carry_this_ENSI-ILTA",
                "sv": "http://www.caisa.fi/sv/evenemang/event/3A16158E806108BA479FC645383AD1CE/How_will_you_carry_this_PREMIAR",
                "en": "http://www.caisa.fi/en/events/event/3A16158E806108BA479FC645383AD1CE/How_will_you_carry_this_PREMIERE"
            },
            "description": {
                "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>",
                "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>"
            },
            "name": {
                "fi": "How will you carry this? | ENSI-ILTA",
                "sv": "How will you carry this? | PREMIÄR",
                "en": "How will you carry this? | PREMIERE"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61585/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61584",
            "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: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: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: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:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4819,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5022,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39492",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "LAN-events",
                        "local area network parties",
                        "LAN-tapahtumat",
                        "lanit",
                        "verkkopelitapahtumat",
                        "LAN-evenemang"
                    ],
                    "created_time": "2023-08-16T05:11:48.242998Z",
                    "last_modified_time": "2023-08-16T05:11:48.243015Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 673,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6431,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-05T12:13:50.517678Z",
                    "last_modified_time": "2024-02-06T13:23:43.557372Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738569.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6431/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-05T12:13:50.493294Z",
            "last_modified_time": "2024-05-23T13:12:41.816699Z",
            "date_published": null,
            "start_time": "2024-05-25T15: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": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.",
                "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.",
                "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/8640ACB982593D8BA5AD60D67367E88B/How_will_you_carry_this_ENSI-ILTA",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8640ACB982593D8BA5AD60D67367E88B/How_will_you_carry_this_PREMIAR",
                "en": "http://www.caisa.fi/en/events/event/8640ACB982593D8BA5AD60D67367E88B/How_will_you_carry_this_PREMIERE"
            },
            "description": {
                "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>",
                "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>"
            },
            "name": {
                "fi": "How will you carry this? | ENSI-ILTA",
                "sv": "How will you carry this? | PREMIÄR",
                "en": "How will you carry this? | PREMIERE"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61584/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61583",
            "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: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: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: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:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4819,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5022,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39492",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "LAN-events",
                        "local area network parties",
                        "LAN-tapahtumat",
                        "lanit",
                        "verkkopelitapahtumat",
                        "LAN-evenemang"
                    ],
                    "created_time": "2023-08-16T05:11:48.242998Z",
                    "last_modified_time": "2023-08-16T05:11:48.243015Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 673,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6430,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-05T12:13:50.347140Z",
                    "last_modified_time": "2024-02-06T13:23:43.188036Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738568.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6430/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-05T12:13:50.327226Z",
            "last_modified_time": "2024-05-23T13:12:41.504610Z",
            "date_published": null,
            "start_time": "2024-05-24T16: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": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.",
                "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.",
                "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/7ADBB60861DA9C687CEA3612E8A8CC12/How_will_you_carry_this_ENSI-ILTA",
                "sv": "http://www.caisa.fi/sv/evenemang/event/7ADBB60861DA9C687CEA3612E8A8CC12/How_will_you_carry_this_PREMIAR",
                "en": "http://www.caisa.fi/en/events/event/7ADBB60861DA9C687CEA3612E8A8CC12/How_will_you_carry_this_PREMIERE"
            },
            "description": {
                "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>",
                "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>"
            },
            "name": {
                "fi": "How will you carry this? | ENSI-ILTA",
                "sv": "How will you carry this? | PREMIÄR",
                "en": "How will you carry this? | PREMIERE"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61583/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61582",
            "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: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: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: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:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4819,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5022,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39492",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "LAN-events",
                        "local area network parties",
                        "LAN-tapahtumat",
                        "lanit",
                        "verkkopelitapahtumat",
                        "LAN-evenemang"
                    ],
                    "created_time": "2023-08-16T05:11:48.242998Z",
                    "last_modified_time": "2023-08-16T05:11:48.243015Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 673,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6429,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-05T12:13:50.218990Z",
                    "last_modified_time": "2024-02-06T13:23:43.009397Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738567.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6429/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-05T12:13:50.182500Z",
            "last_modified_time": "2024-05-23T13:12:41.293778Z",
            "date_published": null,
            "start_time": "2024-05-23T16: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": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.",
                "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.",
                "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/4DA29E8FDA6CCE4D4A1F4C879055F502/How_will_you_carry_this_ENSI-ILTA",
                "sv": "http://www.caisa.fi/sv/evenemang/event/4DA29E8FDA6CCE4D4A1F4C879055F502/How_will_you_carry_this_PREMIAR",
                "en": "http://www.caisa.fi/en/events/event/4DA29E8FDA6CCE4D4A1F4C879055F502/How_will_you_carry_this_PREMIERE"
            },
            "description": {
                "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>",
                "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>"
            },
            "name": {
                "fi": "How will you carry this? | ENSI-ILTA",
                "sv": "How will you carry this? | PREMIÄR",
                "en": "How will you carry this? | PREMIERE"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61582/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh7yuibf4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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:p2846",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "keittotaito",
                        "ruoanlaitto",
                        "ruuanlaitto",
                        "ruuanvalmistus",
                        "kokkonst"
                    ],
                    "created_time": "2023-08-16T05:19:27.647542Z",
                    "last_modified_time": "2023-08-16T05:19:27.647562Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 170,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ruoanvalmistus",
                        "sv": "matlagning",
                        "en": "food preparation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7yuibq4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-05-21T08:39:28.851461Z",
            "last_modified_time": "2024-05-23T12:16:13.822431Z",
            "date_published": "2024-05-27T05:00:00Z",
            "start_time": "2024-06-03T07:00:00Z",
            "end_time": "2024-06-03T11: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": "Opi kokkaamaan herkullista ja terveellistä ruokaa K-Supermarket Lippulaivan ruokakurssilla!",
                "sv": "Lär dig att laga god och hälsosam mat med K-Supermarket Lippulaivas matlagningskurs!",
                "en": "Learn how to cook delicious and healthy food in K-Supermarket Lippulaiva's cooking course!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>K-Supermarket Lippulaivan Ruokakurssi 11-13 -vuotiaille<br>Maanantaina 3.6.2024 ja maanantaina 10.6.2024 klo 10-14.</p><p>Opi kokkaamaan herkullista ja terveellistä ruokaa K-Supermarket Lippulaivan ruokakurssilla! Tämä on tilaisuutesi oppia valmistamaan maukas ja ravitseva lounas ja välipala. Lounaan nautimme yhdessä, välipalan pakkaamme sinulle mukaan kotona nautittavaksi.</p><p>Kurssilla valmistamme:<br>•Lounas: Rukiiset kalahampurilaiset itse leivotuilla sämpylöillä ja paistetulla kalalla sekä herkulliset lohkokasvikset.<br>•Välipala: Raikkaat smoothiekulhot <br>Kurssin ohjaajana: KM kotitalousopettaja, yrittäjä Kati Pohjanmaa. Kurssi pidetään Lippulaivan kirjasto Kapyysi -tilassa. Käymme myös yhdessä ruokaostoksilla K-Supermarket Lippulaivassa.</p><p>Ilmoittautuminen: Kurssille mahtuu 10 osallistujaa ilmoittautumisjärjestyksessä. Ilmoittaudu mukaan sähköpostitse osoitteeseen kati@katipohjanmaa.fi.<br>Osallistuminen on veloituksetonta! Lisätietoja www.katipohjanmaa.fi</p><p>Tule mukaan ja koe ruoanlaiton riemu!</p>",
                "sv": "<p>Matlagningskurs för 11-13-åringar. </p><p>Syftet med matlagningskursen är att deltagarna ska lära sig grundläggande matlagningskunskaper.</p><p>Under kursen kommer vi att förbereda:<br>-Lunch. Fiskhamburgare med egengjorda hamburgerbröd.<br>-Mellanmål: färska smoothie bowls <br>Kursledare: hemkunskapslärare, företagare Kati Pohjanmaa. Kursen hålls i det gemensamma köket Kapyysi i Lippulaiva bibliotek. Vi kommer också att gå och handla tillsammans på K-Supermarket Lippulaiva.</p><p>Matlagningskursen är på finska. </p><p>Anmälan till kursen. Vänligen anmäl dig per e-post till kati@katipohjanmaa.fi. De 10 första personerna som anmält sig per e-post får delta i kursen.<br>Deltagandet är kostnadsfritt! För mer information, vänligen kontakta www.katipohjanmaa.fi</p>",
                "en": "<p>Food course for 11-13 year olds. </p><p>The aim of the cooking course is for participants to learn basic cooking skills.</p><p>During the course we will prepare:<br>-Lunch. Fish hamburgers with self made burger buns.<br>-Snack: fresh smoothie bowls <br>Course instructor: home economics teacher, entrepreneur Kati Pohjanmaa. The course will be held in the communal kitchen Kapyysi in Lippulaiva Library. We will also go grocery shopping together at K-Supermarket Lippulaiva.</p><p>The  cooking course is in finnish. </p><p>Registration. Please register by e-mail to kati@katipohjanmaa.fi. First 10 people registered by email will be able to attend the course.<br>Participation is free of charge! For more information, please contact www.katipohjanmaa.fi</p>"
            },
            "name": {
                "fi": "K-Supermarket Lippulaivan Ruokakurssi 11-13 -vuotiaille",
                "sv": "Matkurs för ungdomar i åldern 11-13 år anordnad tillsammans med K-Supermarket Lippulaiva",
                "en": "Food Course organized with K-Supermarket Lippulaiva for 11-13 year olds"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kapyysi",
                "sv": "Kapyysi",
                "en": "Kapyysi"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7yuibf4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh7yuiblm",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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:p2846",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "keittotaito",
                        "ruoanlaitto",
                        "ruuanlaitto",
                        "ruuanvalmistus",
                        "kokkonst"
                    ],
                    "created_time": "2023-08-16T05:19:27.647542Z",
                    "last_modified_time": "2023-08-16T05:19:27.647562Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 170,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ruoanvalmistus",
                        "sv": "matlagning",
                        "en": "food preparation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7yuibq4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-05-21T08:39:28.656443Z",
            "last_modified_time": "2024-05-23T12:16:13.739462Z",
            "date_published": "2024-05-27T05:00:00Z",
            "start_time": "2024-06-10T07:00:00Z",
            "end_time": "2024-06-10T11: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": "Opi kokkaamaan herkullista ja terveellistä ruokaa K-Supermarket Lippulaivan ruokakurssilla!",
                "sv": "Lär dig att laga god och hälsosam mat med K-Supermarket Lippulaivas matlagningskurs!",
                "en": "Learn how to cook delicious and healthy food in K-Supermarket Lippulaiva's cooking course!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>K-Supermarket Lippulaivan Ruokakurssi 11-13 -vuotiaille<br>Maanantaina 3.6.2024 ja maanantaina 10.6.2024 klo 10-14.</p><p>Opi kokkaamaan herkullista ja terveellistä ruokaa K-Supermarket Lippulaivan ruokakurssilla! Tämä on tilaisuutesi oppia valmistamaan maukas ja ravitseva lounas ja välipala. Lounaan nautimme yhdessä, välipalan pakkaamme sinulle mukaan kotona nautittavaksi.</p><p>Kurssilla valmistamme:<br>•Lounas: Rukiiset kalahampurilaiset itse leivotuilla sämpylöillä ja paistetulla kalalla sekä herkulliset lohkokasvikset.<br>•Välipala: Raikkaat smoothiekulhot <br>Kurssin ohjaajana: KM kotitalousopettaja, yrittäjä Kati Pohjanmaa. Kurssi pidetään Lippulaivan kirjasto Kapyysi -tilassa. Käymme myös yhdessä ruokaostoksilla K-Supermarket Lippulaivassa.</p><p>Ilmoittautuminen: Kurssille mahtuu 10 osallistujaa ilmoittautumisjärjestyksessä. Ilmoittaudu mukaan sähköpostitse osoitteeseen kati@katipohjanmaa.fi.<br>Osallistuminen on veloituksetonta! Lisätietoja www.katipohjanmaa.fi</p><p>Tule mukaan ja koe ruoanlaiton riemu!</p>",
                "sv": "<p>Matlagningskurs för 11-13-åringar. </p><p>Syftet med matlagningskursen är att deltagarna ska lära sig grundläggande matlagningskunskaper.</p><p>Under kursen kommer vi att förbereda:<br>-Lunch. Fiskhamburgare med egengjorda hamburgerbröd.<br>-Mellanmål: färska smoothie bowls <br>Kursledare: hemkunskapslärare, företagare Kati Pohjanmaa. Kursen hålls i det gemensamma köket Kapyysi i Lippulaiva bibliotek. Vi kommer också att gå och handla tillsammans på K-Supermarket Lippulaiva.</p><p>Matlagningskursen är på finska. </p><p>Anmälan till kursen. Vänligen anmäl dig per e-post till kati@katipohjanmaa.fi. De 10 första personerna som anmält sig per e-post får delta i kursen.<br>Deltagandet är kostnadsfritt! För mer information, vänligen kontakta www.katipohjanmaa.fi</p>",
                "en": "<p>Food course for 11-13 year olds. </p><p>The aim of the cooking course is for participants to learn basic cooking skills.</p><p>During the course we will prepare:<br>-Lunch. Fish hamburgers with self made burger buns.<br>-Snack: fresh smoothie bowls <br>Course instructor: home economics teacher, entrepreneur Kati Pohjanmaa. The course will be held in the communal kitchen Kapyysi in Lippulaiva Library. We will also go grocery shopping together at K-Supermarket Lippulaiva.</p><p>The  cooking course is in finnish. </p><p>Registration. Please register by e-mail to kati@katipohjanmaa.fi. First 10 people registered by email will be able to attend the course.<br>Participation is free of charge! For more information, please contact www.katipohjanmaa.fi</p>"
            },
            "name": {
                "fi": "K-Supermarket Lippulaivan Ruokakurssi 11-13 -vuotiaille",
                "sv": "Matkurs för ungdomar i åldern 11-13 år anordnad tillsammans med K-Supermarket Lippulaiva",
                "en": "Food Course organized with K-Supermarket Lippulaiva for 11-13 year olds"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kapyysi",
                "sv": "Kapyysi",
                "en": "Kapyysi"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7yuiblm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh7yuibq4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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:p2846",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "keittotaito",
                        "ruoanlaitto",
                        "ruuanlaitto",
                        "ruuanvalmistus",
                        "kokkonst"
                    ],
                    "created_time": "2023-08-16T05:19:27.647542Z",
                    "last_modified_time": "2023-08-16T05:19:27.647562Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 170,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ruoanvalmistus",
                        "sv": "matlagning",
                        "en": "food preparation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7yuibf4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7yuiblm/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-05-21T08:39:27.998521Z",
            "last_modified_time": "2024-05-23T12:16:12.841773Z",
            "date_published": "2024-05-27T05:00:00Z",
            "start_time": "2024-06-03T07:00:00Z",
            "end_time": "2024-06-10T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Opi kokkaamaan herkullista ja terveellistä ruokaa K-Supermarket Lippulaivan ruokakurssilla!",
                "sv": "Lär dig att laga god och hälsosam mat med K-Supermarket Lippulaivas matlagningskurs!",
                "en": "Learn how to cook delicious and healthy food in K-Supermarket Lippulaiva's cooking course!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>K-Supermarket Lippulaivan Ruokakurssi 11-13 -vuotiaille<br>Maanantaina 3.6.2024 ja maanantaina 10.6.2024 klo 10-14.</p><p>Opi kokkaamaan herkullista ja terveellistä ruokaa K-Supermarket Lippulaivan ruokakurssilla! Tämä on tilaisuutesi oppia valmistamaan maukas ja ravitseva lounas ja välipala. Lounaan nautimme yhdessä, välipalan pakkaamme sinulle mukaan kotona nautittavaksi.</p><p>Kurssilla valmistamme:<br>•Lounas: Rukiiset kalahampurilaiset itse leivotuilla sämpylöillä ja paistetulla kalalla sekä herkulliset lohkokasvikset.<br>•Välipala: Raikkaat smoothiekulhot <br>Kurssin ohjaajana: KM kotitalousopettaja, yrittäjä Kati Pohjanmaa. Kurssi pidetään Lippulaivan kirjasto Kapyysi -tilassa. Käymme myös yhdessä ruokaostoksilla K-Supermarket Lippulaivassa.</p><p>Ilmoittautuminen: Kurssille mahtuu 10 osallistujaa ilmoittautumisjärjestyksessä. Ilmoittaudu mukaan sähköpostitse osoitteeseen kati@katipohjanmaa.fi.<br>Osallistuminen on veloituksetonta! Lisätietoja www.katipohjanmaa.fi</p><p>Tule mukaan ja koe ruoanlaiton riemu!</p>",
                "sv": "<p>Matlagningskurs för 11-13-åringar. </p><p>Syftet med matlagningskursen är att deltagarna ska lära sig grundläggande matlagningskunskaper.</p><p>Under kursen kommer vi att förbereda:<br>-Lunch. Fiskhamburgare med egengjorda hamburgerbröd.<br>-Mellanmål: färska smoothie bowls <br>Kursledare: hemkunskapslärare, företagare Kati Pohjanmaa. Kursen hålls i det gemensamma köket Kapyysi i Lippulaiva bibliotek. Vi kommer också att gå och handla tillsammans på K-Supermarket Lippulaiva.</p><p>Matlagningskursen är på finska. </p><p>Anmälan till kursen. Vänligen anmäl dig per e-post till kati@katipohjanmaa.fi. De 10 första personerna som anmält sig per e-post får delta i kursen.<br>Deltagandet är kostnadsfritt! För mer information, vänligen kontakta www.katipohjanmaa.fi</p>",
                "en": "<p>Food course for 11-13 year olds. </p><p>The aim of the cooking course is for participants to learn basic cooking skills.</p><p>During the course we will prepare:<br>-Lunch. Fish hamburgers with self made burger buns.<br>-Snack: fresh smoothie bowls <br>Course instructor: home economics teacher, entrepreneur Kati Pohjanmaa. The course will be held in the communal kitchen Kapyysi in Lippulaiva Library. We will also go grocery shopping together at K-Supermarket Lippulaiva.</p><p>The  cooking course is in finnish. </p><p>Registration. Please register by e-mail to kati@katipohjanmaa.fi. First 10 people registered by email will be able to attend the course.<br>Participation is free of charge! For more information, please contact www.katipohjanmaa.fi</p>"
            },
            "name": {
                "fi": "K-Supermarket Lippulaivan Ruokakurssi 11-13 -vuotiaille",
                "sv": "Matkurs för ungdomar i åldern 11-13 år anordnad tillsammans med K-Supermarket Lippulaiva",
                "en": "Food Course organized with K-Supermarket Lippulaiva for 11-13 year olds"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kapyysi",
                "sv": "Kapyysi",
                "en": "Kapyysi"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7yuibq4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh7yuibvi",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15311",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:05.278840Z",
                "last_modified_time": "2024-04-09T05:09:27.677777Z",
                "custom_data": null,
                "email": "kirjasto.tapiola@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1742,
                "image": 7887,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.804646,
                        60.178085
                    ]
                },
                "telephone": {
                    "fi": "+358 50 428 9392"
                },
                "street_address": {
                    "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2",
                    "sv": "Kulturplatsen 2",
                    "en": "Kulttuuriaukio 2"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84850",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84850",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84850"
                },
                "description": null,
                "name": {
                    "fi": "Tapiolan kirjasto",
                    "sv": "Hagalunds bibliotek",
                    "en": "Tapiola Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz65fm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.825528Z",
                    "last_modified_time": "2023-12-13T11:20:11.825556Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1356,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapiola",
                        "sv": "Hagalund",
                        "en": "Tapiola"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz7ane",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.654416Z",
                    "last_modified_time": "2023-12-13T11:20:12.654432Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 642,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Westend",
                        "sv": "Westend",
                        "en": "Westend"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz7ao4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.668180Z",
                    "last_modified_time": "2023-12-13T11:20:12.668197Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 368,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Haukilahti",
                        "sv": "Gäddvik",
                        "en": "Haukilahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?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:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-05-22T11:49:55.244283Z",
            "last_modified_time": "2024-05-23T11:29:09.686139Z",
            "date_published": "2024-05-23T06:02:00Z",
            "start_time": "2024-06-03T10:00:00Z",
            "end_time": "2024-06-03T13: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": "Työpajalla tutustutaan stop-motion animaation alkeisiin",
                "sv": "I verkstaden bekantar vi oss med grunderna i stop-motion-animering: hur man rör en docka, hur man ställer in kameran och hur man skapar en berättelsebåge.",
                "en": "In the workshop, we will learn the basics of stop-motion animation: moving the puppet, setting up the camera, and considering the story arc."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Työpajalla tutustutaan stop-motion animaation alkeisiin: nuken liikuttamiseen, kameran asetteluun ja tarinankaaren pohdintaan.</p><p>Animaatiota päästään kokeilemaan  nukeilla sekä muovailuvahalla. </p><p>Ohjausta suomeksi, venäjäksi, viroksi, ruotsiksi ja englanniksi</p>",
                "sv": "<p>I verkstaden bekantar vi oss med grunderna i stop-motion-animering: hur man rör en docka, hur man ställer in kameran och hur man skapar en berättelsebåge.</p><p>Vi får prova på animering med dockor och lera.</p><p>Handledning på finska, ryska, estniska, svenska och engelska</p>",
                "en": "<p>In the workshop, we will learn the basics of stop-motion animation: moving the puppet, setting up the camera, and considering the story arc.</p><p>We will get to try animation with puppets and clay.</p><p>Guidance in Finnish, Russian, Estonian, Swedish and English</p>"
            },
            "name": {
                "fi": "Animaatiopaja: Ankka",
                "sv": "Animationsverkstad: Anka",
                "en": "Animation Workshop: Duck"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuorten tila",
                "sv": "Ungdomsutrymmet",
                "en": "Teen Space"
            },
            "provider": {
                "fi": "Animaatiopaja Ankka, ohjaajat Ella Pomeranz ja Cami Fenge.",
                "sv": "Animaatiopaja Ankka, ohjaajat Ella Pomeranz ja Cami Fenge.",
                "en": "Animaatiopaja Ankka, ohjaajat Ella Pomeranz ja Cami Fenge."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7yuibvi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzwgntcu",
            "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:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7187,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-21T12:08:18.125510Z",
            "last_modified_time": "2024-05-23T11:17:19.437608Z",
            "date_published": null,
            "start_time": "2024-06-18T10:00:00Z",
            "end_time": "2024-06-18T13: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": "Työpajalla tutustutaan\nstop-motion animaation alkeisiin.",
                "sv": "I verkstaden bekantar vi oss med grunderna i stop-motion-animering. ",
                "en": "In the workshop, we will learn the basics of stop-motion animation."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Työpajalla tutustutaan<br>stop-motion animaation alkeisiin:<br>nuken liikuttamiseen, <br>kameran asetteluun ja tarinankaaren pohdintaan.</p><p>Animaatiota päästään kokeilemaan  <br>nukeilla sekä muovailuvahalla. </p><p>ohjausta suomeksi, venäjäksi, viroksi, ruotsiksi ja englanniksi<br> <br>Järjestäjä: Animaatiopaja Ankka, ohjaajina Ella Pomeranz ja Cami Fenge.</p>",
                "sv": "<p>I verkstaden bekantar vi oss med grunderna i stop-motion-animering: hur man rör en docka, hur man ställer in kameran och hur man skapar en berättelsebåge.</p><p>Vi får prova på animering med dockor och lera.</p><p>handledning på finska, ryska, estniska, svenska och engelska</p><p>Arrangör: Animaatiopaja Ankka, Instruktörer Ella Pomeranz och Cami Fenge.</p>",
                "en": "<p>In the workshop, we will learn the basics of stop-motion animation: moving the puppet, setting up the camera, and considering the story arc.</p><p>We will get to try animation with puppets and clay.</p><p>guidance in Finnish, Russian, Estonian, Swedish and English</p><p>organiser: Animaatiopaja Ankka, instructor Ella Pomeranz and Cami Fenge.</p>"
            },
            "name": {
                "fi": "Animaatiopaja: Ankka",
                "sv": "animationsverkstad",
                "en": "animation workshop"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage "
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgntcu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61679",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7258",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.221655Z",
                "last_modified_time": "2024-02-06T13:09:51.033692Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 575,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.947306,
                        60.16663
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 36563"
                },
                "street_address": {
                    "fi": "Kasarmikatu 46-48",
                    "sv": "Kaserngatan 46-48",
                    "en": "Kasarmikatu 46-48"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.savoyteatteri.fi/",
                    "sv": "http://www.savoyteatteri.fi/",
                    "en": "http://www.savoyteatteri.fi/"
                },
                "description": null,
                "name": {
                    "fi": "Savoy-teatteri",
                    "sv": "Savoy-teatern",
                    "en": "Savoy Theatre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke: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:351",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.568885Z",
                    "last_modified_time": "2024-02-06T13:19:15.244248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 652,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri ja sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:49",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.697675Z",
                    "last_modified_time": "2024-02-06T13:19:14.132899Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 575,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Savoy-teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "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:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1942,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/3554510",
                        "sv": "https://www.lippu.fi/eventseries/3554510",
                        "en": "https://www.lippu.fi/eventseries/3554510"
                    },
                    "description": null,
                    "price": {
                        "fi": "33,50 €/48,50 € 2 pvä",
                        "sv": "33,50 €/48,50 € 2 pvä",
                        "en": "33,50 €/48,50 € 2 pvä"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6645,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-15T12:13:54.724772Z",
                    "last_modified_time": "2024-02-06T13:23:43.370405Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739295.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6645/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-13T17:13:41.677056Z",
            "last_modified_time": "2024-05-23T11:12:56.589247Z",
            "date_published": null,
            "start_time": "2024-05-25T09:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Helsinki Lit -tapahtuman alkamisajankohta la 25.5. on muuttunut. Uusi alkamisaika on klo 12.30.",
                "sv": "Litteraturfestivalen Helsinki Lit firar tioårsjubileum i maj på Savoyteatern"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/79E013D10D7A9C5F54AD50CA93BB6F04/Helsinki_Lit",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/79E013D10D7A9C5F54AD50CA93BB6F04/Helsinki_Lit",
                "en": "http://www.savoyteatteri.fi/en/events/event/79E013D10D7A9C5F54AD50CA93BB6F04/Helsinki_Lit"
            },
            "description": {
                "fi": "<p>Helsinki Lit -tapahtuman alkamisajankohta la 25.5. on muuttunut. Uusi alkamisaika on klo 12.30.</p><p>Järjestäjä tiedottaa: ”Lauantaina 25.5. ohjelma alkaa klo 12.30 TOISIN KUIN LIPPU:FI:N FYYSISISSÄ TULOSTELIPUISSA ON ILMOITETTU. Lipuissa lulee klo 13:00. Väärä aikataulu lipuissa johtuu teknisestä virheestä jota ei Early Bird -lipunmyynnin ja sen jälkeisen aikataulujen välttämättömien, kirjailijavieraiden omien myöhemmin ilmenneiden aikataulujen jälkeen voitu ennakoida ajoissa. Suuret pahoittelut virheestä. Tulkaa ajoissa paikalle, ohjelma alkaa jo klo 12:30.”</p><p>Lisätietoja: https://helsinki-lit.fi/</p><p>***</p><p>Helsinki Lit -käännöskirjallisuusfestavaali viettää toukokuussa 10-vuotisjuhliaan Savoy-teatterissa</p><p>Helsinki Lit -käännöskirjallisuusfestivaali juhlii tulevana keväänä kymmenvuotista taivaltaan. 10-vuotisjuhlafestivaali järjestetään 24.-25. toukokuuta Savoy-teatterissa, josta koko Helsinki Lit -festivaalin menestyksekäs taival vuosikymmen sitten alkoi.</p><p>Helsinki Litissä on kymmenen vuoden aikana vieraillut kymmeniä kansainvälisiä kirjalijatähtiä Nobel-voittajista Booker- ja Pulitzer-palkittuihin. Tänä vuonna Helsinki Lit sai vieraakseen muun muassa juuri kirjallisuuden Nobel-palkinnon voittaneen Annie Ernaux’n ja festivaalin liput myytiin ennakosta loppuun jo maaliskuun 2023 aikana.</p><p>10-vuotisjuhlavuoden koko ohjelma julkaistaan helmikuussa 2024. Mukana tulee tuttuun tapaan jälleen olemaan nimekkäitä kansainvälisiä kirjailijavieraita, joiden kanssa keskustelevat valitut kotimaiset kirjailijat, toimittajat ja vaikuttajat. Tänä vuonna luvassa on myös erityistä juhlaohjelmaa ja tunnelmakoosteita vuosien varrelta. <br>Juhlafestivaalilla mukana olevat kustantajat ja festivaalin muut yhteistyökumppanit ja tukijat julkaistaan helmikuun ohjelmajulkistuksen yhteydessä.</p><p>Permanto paikat ovat K18. Parveke on sallittu kaiken ikäisille.</p>",
                "sv": "<p>Litteraturfestivalen Helsinki Lit firar tioårsjubileum i maj på Savoyteatern</p><p>Den internationella litteraturfestivalen Helsinki Lit ordnas nästa år för tionde gången. Festivalen äger rum den 24-25 maj 2024, på Savoyteatern i Helsingfors, där också den första festivalen hölls 2015.</p><p>Under ett decennium har festivalen fått besök av en mängd internationella stjärnor, däribland tidigare Nobelpristagare, Pulitzer-, Booker- och Finlandiavinnare. I våras gästades Helsinki Lit av den färska nobelpristagaren Annie Ernaux, och då var festivalen var utsåld redan i mars.</p><p>Programmet för nästa år publiceras i februari 2024. Även denna gång bjuder Helsinki Lit på flera stora internationella författarnamn, som intervjuas av inhemska författare och journalister. Tioårsjubileet kommer även att uppmärksammas i programmet.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>",
                "en": "<p>The Helsinki Lit translation literature festival celebrates its 10th anniversary at Savoy Theatre in May – tickets now on sale</p><p>The Helsinki Lit translation literature festival will celebrate its 10th anniversary next spring. The 10th anniversary festival will take place at Savoy Theatre on 24–25 May, where Helsinki Lit’s successful run began a decade ago. The tickets are now on sale.</p><p>Over the past ten years, Helsinki Lit has hosted dozens of international literary stars, from Nobel Prize winners to Booker and Pulitzer Prize winners. In 2023, Helsinki Lit hosted Annie Ernaux, who had just won the Nobel Prize for Literature, and tickets for the festival sold out in advance during March 2023.</p><p>The full programme for the 10th anniversary will be published in February 2024. As usual, the festival will host internationally renowned author guests, who will participate in discussions with selected Finnish authors, journalists and influencers. This year, there will also be a special festive programme and atmospheric compilations from over the years.</p><p>The publishers and other partners and supporters of the festival will be announced when the programme is published in February.</p><p>The stalls will only be allowed for over 18s. The balcony will be allowed for people of all ages.</p>"
            },
            "name": {
                "fi": "Helsinki Lit – Käännöskirjallisuusfestivaali 10 vuotta",
                "sv": "Helsinki Lit – Litteraturfestivalen",
                "en": "Helsinki Lit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Helsingin kirjallisuusfestivaali ry",
                "sv": "Helsingin kirjallisuusfestivaali ry",
                "en": "Helsingin kirjallisuusfestivaali ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61679/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh2ohpgt4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:20410",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:58.150595Z",
                "last_modified_time": "2024-02-06T13:10:39.240104Z",
                "custom_data": null,
                "email": "kaupunginmuseo@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02740",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 2,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.680546,
                        60.2213
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8162 7337"
                },
                "street_address": {
                    "fi": "Glimsintie 1",
                    "sv": "Glimsvägen 1",
                    "en": "Glimsintie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://www.espoo.fi/fi/talomuseo-glims",
                    "sv": "https://www.espoo.fi/sv/glims-gardsmuseum",
                    "en": "https://www.espoo.fi/en/glims-farmstead-museum"
                },
                "description": {
                    "fi": "Glims on vanha maatila Karvasmäen kylässä, joka on toiminut noin 500-vuotisen historiansa aikana myös kestikievarina. Talomuseo Glims on elävä museo, jossa pääset mukaan maalaiselämän vuodenkiertoon liittyviin työnäytöksiin, opastuksiin ja tapahtumiin. Talomuseo Glims on osa KAMU Espoon kaupunginmuseon museoperhettä.",
                    "sv": "Glims är en gammal bondgård i Karvasbacka by i Bemböle som också har fungerat som gästgiveri under sin cirka 500 år långa historia. Glims gårdsmuseum är ett levande museum där du kan delta i arbetsuppvisningar, guidade visningar och evenemang med anknytning till landsbygdslivets årscykel. Glims gårdsmuseum är en del av KAMU Esbo stadsmuseums museifamilj.",
                    "en": "Glims is an old farm in the village of Karvasmäki in Bemböle, which has also served as an inn during its approximately 500 years of history. Glims Farmstead Museum is a living museum where you can participate in work performances, guided tours and events related to the seasons of rural life.\nThe Glims Farm Museum is part of the KAMU Espoo City Museum's museum family."
                },
                "name": {
                    "fi": "Talomuseo Glims",
                    "sv": "Glims gårdsmuseum",
                    "en": "Glims Farmstead Museum"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20410/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz65pm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.905249Z",
                    "last_modified_time": "2023-12-13T11:20:11.905267Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 25,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Karvasmäki",
                        "sv": "Karvasbacka",
                        "en": "Karvasmäki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?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:p4934",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "muséer"
                    ],
                    "created_time": "2023-08-16T05:19:42.193109Z",
                    "last_modified_time": "2023-08-16T05:19:42.193125Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 34,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "museot",
                        "sv": "museer",
                        "en": "museums"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4934/?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": "{'fi': '', 'sv': '', 'en': ''}"
                    },
                    "description": {
                        "fi": "{'fi': '', 'sv': '', 'en': ''}"
                    },
                    "price": {
                        "fi": "{'fi': 'Pääsy rakennuksiin museon pääsylipulla. 6 € / 3 €. Alle 18-v. vapaa pääsy. Keskiviikkoisin vapaa pääsy. Kaikukorttikohde. Museokorttikohde.', 'sv': 'Biljettpriset: 6€ / 3€. Gratis inträde för under 18-åringar. Gratis inträde på onsdagar. Gratis inträde med Museikortet och Kaikukortet.', 'en': 'Ticket prize for Museum buildings: 6€ / 3€. Free entry for under 18 olds. Free entry on Wednesdays. Free entry with the Museum card and Kaikukortti.'}"
                    }
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T10:57:16.681168Z",
            "last_modified_time": "2024-05-23T10:57:16.681204Z",
            "date_published": null,
            "start_time": "2024-06-15T08:00:00Z",
            "end_time": "2024-06-15T14: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": "Sateenkaareva perhepiknik ",
                "sv": "Regnbågspicknick för hela familjen",
                "en": "Rainbow family picnic"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Viime vuoden menestyksen jälkeen sateenkaareva perhepiknik järjestetään tänäkin vuonna Talomuseo Glimsissä lauantaina 15.6. klo 11-17. Museon piha-alue on maksuton, rakennuksiin on sisäänpääsymaksu. Talomuseo Glims on museokorttikohde.</p><p>Piknik tarjoaa koko perheelle sopivaa ohjelmaa ja paljon hauskoja värikkäitä hetkiä kuvattavaksi. Pukeudu tapahtumaan värikkäästi ja ota kuva asustasi. Lisää se museon Instagramiin #espoocitymuseum. Mitä värikkäämpi asu, sen parempi!<br>Faunora creations järjestää työpajan jossa askarrellaan korvat karvakankaasta hiuspannalla tai kuminauhalla. Värikkäät kangaspalat ovat kierrätyskangasta. Työpaja on suomeksi ja englanniksi. Myynnissä on myös muita Faunora creationsin tuotteita.</p><p>Elämysauto Välkky vierailee museolla. Tarjolla on kokoelma erilaisia kirjoja koko sateenkaaren kirjossa. Kirjastoautosta löytyy myös kirjoja luonnosta ja vastuullisesta retkeilystä. Piipahda myös Välkyn pinssityöpajassa, jossa voit tehdä oman värikkään pinssin.</p><p>Museon työpajassa askarrellaan värikkäitä paperilyhtyjä. Mikä on sinun suosikkivärisi? Vie lyhty kotiin, tai jätä se museolle ilahduttamaan muita kävijöitä.<br>Ota mukaan hauskaa seuraa, sekä piknikherkkuja ja tule mukaan Glimsin Sateenkaarevalle perhepiknikille!<br>Muista myös varautua säänmukaisella vaatetuksella.<br>Tapahtuma on osa KAMU pride -ohjelmistoa.</p><p>Ohjelma:<br>klo 11.30: Eläinten ruokintanäytös<br>klo 11:30-16: Faunora Creations työpaja: Värikkäät korvat, suomeksi ja englanniksi<br>klo 12-17: Elämysauto Välkky, kirjoja lainattavaksi ja pinssipaja<br>klo 13-15: Työpaja: Askarrellaan paperilyhtyjä!<br>klo 15-15.30: Yleisöopastus: Glims tutuksi</p><p>Tervetuloa mukaan viettämään värikästä sateenkaaripäivää Glimsiin!</p><p>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2024.</p>",
                "sv": "<p>Efter fjolårets framgång ordnas också i år en regnbågspicknick för hela familjen på Glims gårdsmuseum lördag 15.6 kl. 11–17. Tillträde till museets gårdsområde är gratis, men de som vill besöka museets byggnader ska betala en inträdesavgift. På Glims gårdsmuseum kan du använda museikortet.</p><p>Picknicken erbjuder program som passar hela familjen och många roliga färggranna stunder att fotografera. Klä dig färgrikt och ta en bild av din outfit. Lägg till den i museets Instagram #espoocitymuseum. Ju färgrikare kläderna är, desto bättre!</p><p>Faunora Creations ordnar en verkstad där deltagarna pysslar lurviga lösöron som fästs på huvudet med hjälp av ett diadem eller gummiband. De färgglada tygbitarna är av återanvänt tyg. Verkstaden går på finska och engelska. Produkter av Faunora Creations finns till salu på evenemanget.</p><p>Allaktivitetsbussen Välkky besöker museet, utrustad med ett stort urval av olika böcker i alla regnbågens färger. I bussen kan du också låna böcker om natur och ansvarsfulla utflykter. Besök också Välkkys pinsverkstad där du kan pyssla egna färgglada pins.</p><p>I museets verkstad pysslar vi färgglada papperslyktor. Vilken är din favoritfärg? Ta med lyktan hem eller lämna den på museet för att glädja andra besökare.</p><p>Ta med dig roligt sällskap och picknickdelikatesser och följ med till Glims regnbågspicknick för hela familjen!</p><p>Kom ihåg kläder enligt väder.<br>Evenemanget är en del av KAMU pride-programmet.</p><p>Program:<br>kl. 11.30: Vi matar djuren<br>kl. 11.30–16: Faunora Creations verkstad, på finska och engelska<br>kl. 12–17: Allaktivitetsbussen Välkky, utlåning av böcker och pinsverkstad<br>kl. 13–15: Verkstad: Vi pysslar papperslyktor!<br>kl. 15–15.30: Publikguidning: Bekanta dig med Glims</p><p>Välkommen att fira en färgsprakande regnbågsdag på Glims!</p><p>Esbo stad är Working with Pride-partner med Helsinki Pride 2024.</p>",
                "en": "<p>After last year's success, a rainbow family picnic will be organized again this year at Glims Farmstead Museum on Saturday on 15th June from 11 a.m. to 5 p.m. The museum’s yard is free, though entrance ticket is needed for entry to buildings. This museum is a Museum Card destination.</p><p>The picnic offers a program suitable for the whole family and lots of fun colourful moments to photograph. Dress colourfully for the event and take a photo of your outfit. Add it to the museum's Instagram handle #espoocitymuseum. The more colourful the outfit, the better!!</p><p>Faunora Creations organizes a workshop to make ear from furry materials on a hairband or elastic band. The colorful fabric pieces are recycled fabric. The workshop is in Finnish and English. Other Faunora Creations products are also on sale.</p><p>Experience car Välkky will be visiting the museum. There is a collection of different books on the entire spectrum of the rainbow. The library car also has books about nature and responsible camping. Also stop by Välkky's pin workshop, where you can make your own colorful pin.</p><p>Colorful paper lanterns will made in the museum's workshop. What is your favorite color? Take the lantern home or leave it at the museum to delight other visitors.<br>Bring a fun company and picnic treats and join Glims' Rainbow family picnic!</p><p>Also remember to be prepared with weather-appropriate clothing.</p><p>The event is part of the KAMU pride program. </p><p>Program:<br>11.30am : Animal feeding <br>11:30am - 4pm: Faunora Creations workshop: Colourful ears, in Finnish and English<br>12pm - 5pm: Experience car Välkky, books to borrow and pin workshop<br>1pm - 3pm: Museum workshop: Let's make paper lanterns!<br>3pm - 3:30pm: Guided tour for visitors: Getting to know Glims</p><p>Welcome to celebrate a colorful rainbow day in Glims!</p><p>The City of Espoo is Helsinki Pride’s Working with Pride partner in 2024.</p>"
            },
            "name": {
                "fi": "Sateenkaareva perhepiknik ",
                "sv": "Regnbågspicknick för hela familjen",
                "en": "Rainbow family picnic "
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh2ohpgt4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}