Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&hide_recurring_children=true&page=139
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 19427,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=140",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=138"
    },
    "data": [
        {
            "id": "kulke:63292",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:658/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p19077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "23,50-45,50 €",
                        "sv": "23,50-45,50 €",
                        "en": "23,50-45,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-18494906",
                        "sv": "https://www.lippu.fi/event/name-18494906",
                        "en": "https://www.lippu.fi/event/name-18494906"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 41952,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-28T09:14:03.950359Z",
                    "last_modified_time": "2024-03-28T09:14:03.950374Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746446.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/41952/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-28T09:14:03.915462Z",
            "last_modified_time": "2024-12-20T01:13:52.545456Z",
            "date_published": null,
            "start_time": "2024-10-22T16: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,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C1A228D2ABB315CF7A465A0F2EB7EC58/Myrskyluodon_Lasse",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C1A228D2ABB315CF7A465A0F2EB7EC58/Stormskars_Lasse_",
                "en": "http://www.savoyteatteri.fi/en/events/event/C1A228D2ABB315CF7A465A0F2EB7EC58/Stormskerry_Lasse"
            },
            "name": {
                "fi": "Myrskyluodon Lasse – Ami Aspelund, Jannike ja Nicke Lignell",
                "sv": "Stormskärs Lasse – Ami Aspelund, Jannike och Nicke Lignell",
                "en": "Stormskerry Lasse – Ami Aspelund, Jannike and Nicke Lignell"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Lasse Mårtensonin unohtumattomia sävelmiä – Lavalla Ami Aspelund, Jannike ja Nicke Lignell!</p><p>Edesmenneen rakastetun laulajan ja säveltäjän Lasse Mårtensonin syntymästä tulee kuluneeksi syksyllä 90 vuotta. Mårtensonin uraa ja hänen musiikkiaan kunnioitetaan lokakuussa toteutettavalla kiertueella, jossa lavalla nousevat <b>Ami Aspelund, Jannike</b> ja <b>Nicke Lignell</b>. <br> <br>Myrskyluodon Lasse – Lasse Mårtensonin unohtumattomia sävelmiä niminen kiertue alkaa Kokkolasta 20. lokakuuta ja päättyy Porvooseen 25.10. Muut konserttipaikkakunnat ovat Vaasa, Helsinki, Turku ja Karjaa. Kiertueen säestyksestä vastaa Henrik Wikströmin orkesteri.<br> <br>Vuonna 1934 syntynyt ja 2016 menehtynyt Lasse Mårtenson nousi 1960-luvulla yhdeksi maamme suosituimmista laulajista. Hänen tunnetuimpia kappaleitaan ovat vuoden 1964 euroviisu Laiskotellen sekä Marraskuu, Iltaisin, Mä lähden stadiin, Rikas mies jos oisin sekä Nousevan auringon talo.<br> <br>Erityisen suureen suosioon on noussut Mårtensonin säveltämä musiikki Åke Lindmanin ohjaamaan, vuonna 1976 ensi-iltansa saaneeseen Myrskyluodon Maija -elokuvaan.<br> <br><i>Lasse Mårtensonin musiikki on ollut minulla aina sydäntä lähellä. Minulla oli myös ilo työskennellä yhdessä hänen kanssaan monissa eri produktioissa vuosien varrella. On suuri kunnia saada olla nyt kiertueella kunnioittamassa Mårtensonin muistoa</i>, kertoo Ami Aspelund.<br> <br>Tervetuloa viettämään unohtumaton ilta hienon ja ajattoman musiikin äärellä.</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p>",
                "sv": "<p>Lasse Mårtenssons jubileumskonsertturne’ hösten 2024 – På scen Ami Aspelund, Jannike och Nicke Lignell!</p><p>Den älskade sångaren och kompositören Lasse Mårtensson skulle i höst ha fyllt 90 år. Till minne av hans musik och karriär ordnas en konsertturne’ i oktober där Ami Aspelund, Jannike och Nicke Lignell stiger upp på scen.<br> <br>Stormskärs Lasse - Lasse Mårtenssons oförglömliga musik turne’ börjar i Karleby den 20 oktober och slutar i Borgå den 25 oktober. Andra konsertplatser är Wasa, Helsingfors, Åbo och Karis. <br>Orkestern leds av Henrik Wikström.<br> <br>Lasse Mårtensson föddes år 1934 och dog 2016. På 60-talet steg han till en av landets mest populära artister. Till hans kändaste låtar hör Laiskotellen (som han 1964 deltog i Eurovisionen med),  Marraskuu, Iltaisin, Mä lähden stadiin, Rikas mies jos oisin och Nousevan auringon talo.<br> <br>Mest är Lasse Mårtensson ändå känd för för sina kompositioner till den finska tv-serien Stormskärs Maja från år 1976. Serien regisserades av Åke Lindman.<br> <br>-Lasses musik har alltid stått mitt hjärta nära. Jag hade den stora glädjen att få arbeta med honom i många olika produktioner och därför är det en särskilt stor ära att få vara med på denna turne’, säger Ami Aspelund.<br> <br>Varmt välkomna att njuta av en oförglömlig afton med fin och tidlös music ut av Lasse.</p><p>Längd ca. 2 h 15 min, inkl. paus.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>",
                "en": "<p>Unforgettable tunes by Lasse Mårtenson – Ami Aspelund, Jannike and Nicke Lignell on stage!</p><p>This autumn, it will be 90 years since the birth of the late beloved singer and composer Lasse Mårtenson. Mårtenson’s career and his music will be honoured with a tour in October, featuring Ami Aspelund, Jannike and Nicke Lignell.</p><p>Lasse Mårtenson (1934–2016) became one of the most popular singers in Finland in the 1960s. His most famous songs are Finland’s entry to the 1964 Eurovision Song Contest <i>Laiskotellen</i>, <i>Marraskuu</i>, <i>Iltaisin</i>, <i>Mä lähden stadiin</i>, <i>Rikas mies jos oisin</i> and <i>Nousevan auringon talo (The house of the rising sun).</i></p><p>Music composed by Mårtenson for the film <i>Myrskyluodon Maija</i> (Stormskerry Maja), directed by Åke Lindman in 1976, has become especially popular.</p><p>\"Lasse Mårtenson’s music has always been close to my heart. I also had the pleasure of working with him on many different productions over the years. It’s a great honour to be on tour now to honour Mårtenson’s memory\", says Ami Aspelund.</p><p>Welcome to spend an unforgettable evening with great timeless music!</p><p>Duration approx. 2 h 15 min, including intermission</p><p>Stalls K-18, a licensed area. The balcony is a non-licensed area without an age limit.</p>"
            },
            "provider": {
                "fi": "MagnumLive Oy",
                "sv": "MagnumLive Oy",
                "en": "MagnumLive Oy"
            },
            "short_description": {
                "fi": "Lasse Mårtensonin unohtumattomia sävelmiä – Lavalla Ami Aspelund, Jannike ja Nicke Lignell!",
                "sv": "Lasse Mårtenssons jubileumskonsertturne’ hösten 2024 – På scen Ami Aspelund, Jannike och Nicke Lignell!",
                "en": "Unforgettable tunes by Lasse Mårtenson – Ami Aspelund, Jannike and Nicke Lignell on stage!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63292/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64293",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151879,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T15:15:02.998543Z",
                    "last_modified_time": "2024-07-25T15:15:02.998572Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745842.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151879/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T15:15:02.961432Z",
            "last_modified_time": "2024-12-20T01:13:52.437872Z",
            "date_published": null,
            "start_time": "2024-10-22T15:00:00Z",
            "end_time": "2024-10-22T17: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,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6BCDC1FD903250D2D64954BA82C49F33/Doc_Helios_Savusaunasisaruus_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6BCDC1FD903250D2D64954BA82C49F33/Doc_Helios_Savusaunasisaruus_Rokbastusysterskap_12_",
                "en": "http://www.malmitalo.fi/en/events/event/6BCDC1FD903250D2D64954BA82C49F33/Doc_Helios_Smoke_Sauna_Sisterhood_12_"
            },
            "name": {
                "fi": "Doc Helios: Savusaunasisaruus (12) – Kino Helios",
                "sv": "Doc Helios: Savusaunasisaruus (Rökbastusysterskap) (12) – Kino Helios",
                "en": "Doc Helios: Smoke Sauna Sisterhood (12) – Kino Helios"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Savusaunan pimeydessä naiset jakavat sisimpiä salaisuuksiaan ja intiimejä kokemuksiaan, huuhtelevat pois kehonsa loukkuun jääneen häpeän ja saavat voimansa takaisin yhteisöllisyyden tunteen kautta.</p><p>Ohjaaja Anna Hints palkittiin Savusaunasisaruus-elokuvastaan Sundancen elokuvajuhlilla 2023 (Directing Award: World Cinema Documentary). Savusaunasisaruus oli Viron virallinen Oscar-ehdokas ja voitti vuoden parhaan dokumenttielokuvan European Film Awards -palkinnon.</p><p>Kesto 89 min<br>Ikäraja 12<br>Ensi-ilta 8.12.2023<br>Vapaa pääsy!</p><p>Doc Helios on Kino Helioksen uusi ilmaisnäytössarja, jossa nähdään tuoreimpia ja ajankohtaisimpia dokumentteja eri aiheista.</p>",
                "sv": "<p>I rökbastuns mörker delar kvinnor med sig av sina innersta hemligheter och intima upplevelser, sköljer bort den skam som finns instängd i kroppen och återfår sin styrka genom en känsla av gemenskap.</p><p>Regissören Anna Hints belönades för filmen Savusaunasisaruus på Sundance-filmfestivalen 2023 (Directing Award: World Cinema Documentary). Savusaunasisaruus var Estlands officiella Oscarsnominering och vann European Film Awards-priset för årets bästa dokumentärfilm.</p><p>Längd 89 min.<br>Åldersgräns 12 år<br>Premiär 8.12.2023<br>Fritt inträde!</p><p>Doc Helios är Kino Helios nya gratisvisningsserie, där vi får se de färskaste och mest aktuella dokumentärerna om olika ämnen.</p>",
                "en": "<p>In the darkness of the smoke sauna, women share their innermost secrets and intimate experiences, washing away the shame trapped in their bodies and regain their strength through a sense of community.</p><p>Director Anna Hints was awarded for her film, Smoke Sauna Sisterhood, at the Sundance Film Festival in 2023 (Directing Award: World Cinema Documentary). Smoke Sauna Sisters was the official Oscar nominee for Estonia and won the European Film Award for Best Documentary.</p><p>Duration: 89 mins.<br>Age limit 12<br>Premiere: 8 December 2023</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Savusaunan pimeydessä naiset jakavat sisimpiä salaisuuksiaan ja intiimejä kokemuksiaan, huuhtelevat pois kehonsa loukkuun jääneen häpeän ja saavat voimansa takaisin yhteisöllisyyden tunteen kautta.",
                "sv": "I rökbastuns mörker delar kvinnor med sig av sina innersta hemligheter och intima upplevelser, sköljer bort den skam som finns instängd i kroppen och återfår sin styrka genom en känsla av gemenskap.",
                "en": "In the darkness of the smoke sauna, women share their innermost secrets and intimate experiences, washing away the shame trapped in their bodies and regain their strength through a sense of community."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64293/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64300",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151909,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-26T07:14:27.480444Z",
                    "last_modified_time": "2024-07-26T07:14:27.480459Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753200.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151909/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T07:14:27.448997Z",
            "last_modified_time": "2024-12-20T01:13:52.340286Z",
            "date_published": null,
            "start_time": "2024-10-21T15:00:00Z",
            "end_time": "2024-10-21T16: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,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/91A13FDF6D32754AE25FB0C1CB36B035/Juurilla_Bryn_Jones",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/91A13FDF6D32754AE25FB0C1CB36B035/Vid_rotterna_Bryn_Jones",
                "en": "http://www.kanneltalo.fi/en/events/event/91A13FDF6D32754AE25FB0C1CB36B035/At_the_Roots_Club_Bryn_Jones"
            },
            "name": {
                "fi": "Juurilla: Bryn Jones – Maksuttomat maanantait",
                "sv": "Vid rötterna: Bryn Jones – Kostnadsfria måndagar",
                "en": "At the Roots Club: Bryn Jones – Free Mondays"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Aloita viikko menevällä meiningillä! Syksyn Juurilla-klubien ohjelmistossa vuorossa on laulaja-kitaristi Bryn Jones.</p><p>Lontoon rock-piireistä Suomeen rantautunut laulaja-lauluntekijä Bryn Jones tunnetaan Los Bastardos Finlandeses -bändin nokkamiehenä. Yli kolmekymmentä vuotta musisoinut Jones on kiertänyt bändeineen mm. Aerosmithin ja Motörheadin kanssa.</p><p>Jonesin trubaduuriesiintymiset ovat kuuluja intensiivisyydestään ja rouheasta kitarasoundistaan. Illan keikalla kuullaan artistin soolotuotantoa ja musiikkia pitkän uran varrelta.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Börja veckan med fullt hålligång! Sångaren och gitarristen Bryn Jones står i tur på Juurilla-klubbarnas höstprogram.</p><p>Sångaren och låtskrivaren Bryn Jones som anlänt till Finland från Londons rockkretsar är känd som frontfigur i bandet Los Bastardos Finlandeses. Jones har musicerat i över trettio år och turnerat med band såsom Aerosmith och Motörhead.</p><p>Jones trubadurframträdanden är kända för sin intensitet och sitt grova gitarrsound. På kvällens spelning får vi höra artistens soloproduktion och musik från hans långa karriär.</p>",
                "en": "<p>Start your week with some catchy tunes! Singer-guitarist Bryn Jones is a part of this autumn’s At the Roots Club’s repertoire.</p><p>Bryn Jones, a singer-songwriter who landed in Finland from London’s rock scene, is known as the front man of Los Bastardos Finlandeses. Jones, who has been playing music for over thirty years, and his band, have gone on tour with bands like Aerosmith and Motörhead.</p><p>Jones' troubadour performances are famous for their intensity and rugged guitar sounds. This evening's gig will feature the artist's solo works and music from a long career.</p><p>Start your week with some catchy tunes! Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Aloita viikko menevällä meiningillä! Syksyn Juurilla-klubien ohjelmistossa vuorossa on laulaja-kitaristi Bryn Jones.",
                "sv": "Börja veckan med fullt hålligång! Sångaren och gitarristen Bryn Jones står i tur på Juurilla-klubbarnas höstprogram.",
                "en": "Start your week with some catchy tunes! Singer-guitarist Bryn Jones is a part of this autumn’s At the Roots Club’s repertoire."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64300/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64245",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151812,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T13:13:17.502289Z",
                    "last_modified_time": "2024-07-24T13:13:17.502305Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748952.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151812/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-24T13:13:17.475916Z",
            "last_modified_time": "2024-12-20T01:13:52.035504Z",
            "date_published": null,
            "start_time": "2024-10-07",
            "end_time": "2024-11-01",
            "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,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F322A2E20442B061B43E0665541B04C6/Vuotalosta_Villaan_taiteilijatalo_sateilee",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/F322A2E20442B061B43E0665541B04C6/Fran_Nordhuset_till_Villan_konstnarshuset_skiner",
                "en": "http://www.vuotalo.fi/en/events/event/F322A2E20442B061B43E0665541B04C6/From_Vuotalo_to_Villa_the_artist_house_radiates"
            },
            "name": {
                "fi": "Vuotalosta Villaan – taiteilijatalo säteilee",
                "sv": "Från Nordhuset till Villan – konstnärshuset skiner",
                "en": "From Vuotalo to Villa – the artist house radiates"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Kivenheiton päässä Vuotalosta, Aurinkolahdessa, sijaitsee Vuosaaren taiteilijatalo. Näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia.</p><p>Taiteilijatalossa on 52 asuntoa ja toista sataa asukasta. Eri alojen taiteilijoista suuri joukko on kuvataiteilijoita, jotka käyttävät mitä moninaisimpia tekniikoita ja materiaaleja taideteoksissaan. Taiteilijatalon vieressä oleva vanha huvila, Villa Lill Kallvik, on osa taloa.</p><p>Vuotalosta Villaan – taiteilijatalo säteilee -näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia Vuotalon galleriassa ja Villa Lill Kallvikissa. Tervetuloa näkemään ja kokemaan paikallisten tekijöiden kuvataiteen laaja kirjo!</p><p>Näyttelyn taiteilijat: <br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme (performanssi)</p><p>Villa Lill Kallvikin aukioloajat: ke–pe 12–18 ja la–su 11–17</p><p><b>Tule mukaan myös näyttelykävelyille ja koe näyttelyyn liittyvä performanssi!</b></p><p>Performanssi to 10.10. klo 19, lähtö Vuotalon aulasta.</p><p>Näyttelykävelyt perjantaisin<br>18.10. / to 24.10. / pe 1.11. klo 17–18, lähtö Vuotalon galleriasta.</p><p>Tapahtumakuvan tiedot:<br>Vasemmalla: Rosalia Janovic: Monimuotoisuus, Diversity Keskellä: Tiina Heiska: Japanese room, kuvaaja Jussi Tiainen Oikealla: Pekka Sassi: Green, abstrakti värikertomus (video)</p>",
                "sv": "<p>Ett stenkast från Nordhuset, i Solvik, ligger Nordsjö konstnärshus. Utställningen presenterar nya verk av husets bildkonstnärer.</p><p>Konstnärshuset har 52 lägenheter och ett drygt hundratal boende. En stort del av konstnärerna som representerar olika konstarter är bildkonstnärer, som använder en mängd olika tekniker och material i sina konstverk. Den gamla villan som ligger invid konstnärshuset, Villa Lill Kallvik, är en del av huset.</p><p>Utställningen Från Nordhuset till Villan – konstnärshuset skiner presenterar nya verk av husets bildkonstnärer i Nordhusets galleri och Villa Lill Kallvik. Välkommen att se och uppleva mångsidig bildkonst av lokala konstnärer!</p><p>Konstnärerna:<br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme</p><p>Villa Lill Kallvik öppettider: ons–fre 12–18 och lör–sön 11–17</p>",
                "en": "<p>A stone's throw away from Vuotalo, in Aurinkolahti, lies the Vuosaari Artist House. This exhibition showcases recent works by the house's visual artists.</p><p>The Artist House has 52 apartments and over 100 residents. A large group of the artists, who are from different fields, are visual artists, who use diverse techniques and materials in their artworks. The old villa next to the Artist House, Villa Lill Kallvik, is a part of it.</p><p>The From Vuotalo to Villa – Artist House Radiates exhibition showcases the recent works of the house's visual artists at Vuotalo Gallery and Villa Lill Kallvik. Come and experience the vast array of visual arts by local creators!</p><p>Artists:<br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme</p><p>Villa Lill Kallvik opening hours: Wed–Fri 12–18 and Sat–Sun 11–17</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Kivenheiton päässä Vuotalosta, Aurinkolahdessa, sijaitsee Vuosaaren taiteilijatalo. Näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia.",
                "sv": "Ett stenkast från Nordhuset, i Solvik, ligger Nordsjö konstnärshus. Utställningen presenterar nya verk av husets bildkonstnärer.",
                "en": "A stone's throw away from Vuotalo, in Aurinkolahti, lies the Vuosaari Artist House. This exhibition showcases recent works by the house's visual artists."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64245/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj554qpke",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": 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-12-19T12:43:45.926072Z",
            "last_modified_time": "2024-12-19T12:43:45.926093Z",
            "date_published": "2024-12-19T12:00:40.687000Z",
            "start_time": "2025-01-02T09:00:00Z",
            "end_time": "2025-01-02T10:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Piilosta kirjastossa",
                "sv": "Kurragömma i biblioteket",
                "en": "Hide and seek in the library"
            },
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "description": {
                "fi": "<p>Asiakkaidemme toiveesta järjestämme ohjatun piiloleikin</p><p>joululomalla. Tervetuloa mukaan. Kokoonnumme Lastenmaassa.</p>",
                "sv": "<p>På begäran av våra kunder ordnar vi en guidad kurragömmalek under julhelgen. Välkommen att följa med oss. Vi träffas vid Lastenmaa.</p>",
                "en": "<p>At the request of our customers, we organise a guided hide-and-seek game</p><p>during the Christmas holidays. Welcome to join us. We meet at Lastenmaa,</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Piilosta kirjastossa",
                "sv": "Kurragömma i biblioteket",
                "en": "Hide and seek in the library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj554qpke/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj55oorkq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-19T10:38:12.064654Z",
            "last_modified_time": "2024-12-19T10:38:12.064678Z",
            "date_published": "2024-12-19T10:29:00Z",
            "start_time": "2025-01-21T16:00:00Z",
            "end_time": "2025-01-21T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Elokuvaohjaaja Raimo O Niemi vieraana kirjastossa"
            },
            "location_extra_info": {
                "fi": "Kaija"
            },
            "description": {
                "fi": "<p>Tule kuuntelemaan kun elokuvaohjaaja Raimo O Niemi kertoo kirjastaan Kirjeitä Moskovasta - Miten minusta tuli elokuvaohjaaja. </p><p>Tilaisuuteen on vapaa pääsy!</p><p>**</p><p><a href=\"https://helmet.finna.fi/Record/helmet.2582321?sid=4887534060\"><strong>Kirjeitä Moskovasta - Miten minusta tuli elokuvaohjaaja</strong></a></p><p>”Miten ja miksi olin päättänyt tulla elokuvaohjaajaksi? Miten parikymppinen suomalaispoika sopeutui ja oppi elämään Breznevin ajan sosialistisessa Neuvostoliitossa?”</p><p>Elokuvaohjaaja Raimo O Niemi etsii vastauksia näihin kysymyksiin kirjassaan Kirjeitä Moskovasta. Hän kertoo elämästään 1970-luvun Moskovassa ja opiskelustaan maailman vanhimmassa elokuvakoulussa. Ensimmäisenä suomalaisena elokuvaohjaaja Raimo O Niemi kävi rankan koulun pitkän kaavan kautta. Päiväkirjaa hän ei pitänyt, mutta lainaukset säilyneistä kirjeistä välittävät aikalaistunnelmia.</p><p>Nuori idealisti sopeutui ja oli pian ”nas tselovek, meikäläinen”, jonka seurassa ei tarvinnut varoa ja pelätä puheitaan. Liikkumista ja kuvauslupia hallinnoivan ”1. osaston” kanssa oli silti tavalla tai toisella tultava toimeen.</p><p>Suunnitelma vuoden kahden opiskelusta vaihtui kuudeksi. Hän oppi tuntemaan ja kokemaan neuvostotodellisuuden niin hyvässä kuin pahassa, koki onnistumisia, mutta myös pettymyksiä ja takaiskuja. Ohjaajaopintojen ja henkilökohtaisten muistojen lisäksi kirjassa kerrotaan tavallisten neuvostokansalaisten arkipäivästä.</p><p>Kirjan runsas kuvitus pohjautuu pääasiassa Raimo O Niemen kuva-arkistoon ja hänen valokuvanäyttelyihinsä ”Kuljen Moskovan katuja” ja ”Dziganovtsy”.</p><p>(Kirjan kuvaus: Kustantaja Musta taide)</p>"
            },
            "provider": {
                "fi": "Raimo O Niemi"
            },
            "short_description": {
                "fi": "Elokuvaohjaaja Raimo O Niemi kertoo kirjastaan Kirjeitä Moskovasta - Miten minusta tuli elokuvaohjaaja"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55oorkq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj55oorva",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-19T10:25:42.155132Z",
            "last_modified_time": "2024-12-19T10:28:39.746862Z",
            "date_published": null,
            "start_time": "2025-01-11T12:00:00Z",
            "end_time": "2025-01-11T15: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,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "WeCode platforming järjestämä IT-alan verkostoitumistapahtuma",
                "en": "The WeCode Networking Event"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "en": "Salonki"
            },
            "description": {
                "fi": "<p>WeCode platforming järjestämän IT-alan verkostoitumistapahtuman tarkoituksena on saattaa yhteen IT-alalla jo työskentelevät ja IT-työpaikkoja etsivät henkilöt. Tapahtumassa voi tavata uusia ihmisiä, jakaa kokemuksia ja oppia toisiltaan rennossa ympäristössä. Etsitpä sitten neuvoja, tutkit työmahdollisuuksia tai haluat vain luoda yhteyksiä muihin alan ammattilaisiin, tämä tapahtuma on täydellinen paikka aloittaa. Kasvatetaan IT-yhteisöä yhdessä!</p><p>Tapahtuma on englanninkielinen. Tervetuloa!</p>",
                "en": "<p>The WeCode Networking Event is a friendly gathering designed to bring together people who are already working in the IT sector and those looking for IT jobs. It’s a great chance to meet new people, share experiences, and learn from each other in a relaxed environment. Whether you’re looking for advice, exploring job opportunities, or just want to connect with others in the industry, this event is a perfect place to start. Let’s grow our IT community together!</p>"
            },
            "provider": {
                "fi": "WeCode platform",
                "en": "WeCode platform"
            },
            "short_description": {
                "fi": "Tervetuloa WeCode platforming järjestämään IT-alan verkostoitumistapahtumaan 11.1. klo 14-17",
                "en": "Welcome to take in the WeCode Networking Event on 11th of January at 14-17 o clock."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55oorva/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agjxf7uo6e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7unsa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7unw4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7un3a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7un7q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uoea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uoja/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uon4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uory/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uovu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uozu/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-28T12:25:57.481195Z",
            "last_modified_time": "2024-12-19T10:24:25.331916Z",
            "date_published": null,
            "start_time": "2025-01-17T14:00:00Z",
            "end_time": "2025-05-23T15: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,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Paja tutuksi kaikille!",
                "sv": "Lär känna Paja!  ",
                "en": "Paja for everyone! "
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "description": {
                "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>",
                "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag ​​klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>",
                "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin",
                "sv": "Kom och upptäck verkstadens utrustning och möjligheter",
                "en": "Come and discover the equipment and possibilities of the Paja"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj55aulvy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aulju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aulta/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-12-19T10:05:31.379102Z",
            "last_modified_time": "2024-12-19T10:05:31.379125Z",
            "date_published": null,
            "start_time": "2025-01-18T09:00:00Z",
            "end_time": "2025-01-18T10:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Vauvajamit",
                "en": "Jamming Babies"
            },
            "location_extra_info": {
                "fi": "Lippulaivan kirjasto",
                "en": "Lippulaivan kirjasto"
            },
            "description": {
                "fi": "<p>Vauvajamit, Jamming Babies, on vauvan ja aikuisen yhteinen elämys – toiminnallinen musiikkituokio, josta ei iloa ja ihmeteltävää puutu.</p><p><br></p><p>Vauvaperheille suunnatuissa riemukkaissa tuokioissa lauletaan ja lorutellaan, katsotaan ja kuunnellaan.</p><p>&nbsp;</p><p>Tule viettämään vauvasi kanssa ihastuttava hetki musiikin parissa. Tapahtuman kesto on 30 minuuttia, jonka jälkeen voit jäädä vielä fiilistelemään ja juttelemaan ohjaajien kanssa.</p><p>&nbsp;</p><p>Ohjelma sopii kaikille vauvoille ja heidän perheilleen! Sisältö on suunniteltu vauvoille, mutta mukaan ovat tervetulleita myös isommat sisarukset.</p><p>Tapahtumaan ei ole ennakkoilmoittautumista.</p>",
                "en": "<p>Jamming Babies is a shared experience for baby and adult - an activity-based music session with no shortage of joy and wonder.</p><p><br></p><p>Aimed at families with babies, this joyful session is all about singing and chattering, watching and listening.</p><p><br></p><p>Come and spend a delightful moment with your baby in the midst of music. The event lasts for 30 minutes, after which you can stay and enjoy a chat with the instructors.</p><p><br></p><p>The programme is suitable for all babies and their families! The content is designed for babies, but older siblings are also welcome.</p><p><br></p><p>There is no pre-registration for this event.</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Vauvajamit, Jamming Babies, on vauvan ja aikuisen yhteinen elämys – toiminnallinen musiikkituokio, josta ei iloa ja ihmeteltävää puutu. Tervetuloa mukaan!",
                "en": "Jamming Babies is a shared experience for baby and adult - an activity-based music session with no shortage of joy and wonder. Welcome!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aulvy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj55aulyy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-19T09:30:57.296675Z",
            "last_modified_time": "2024-12-19T09:30:57.296750Z",
            "date_published": "2024-12-19T09:26:00Z",
            "start_time": "2025-01-09T15:30:00Z",
            "end_time": "2025-01-09T17: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,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Arki miehityksen alla Länsirannalla -valokuvanäyttelyn taiteilija tavattavissa"
            },
            "location_extra_info": {
                "fi": "Heikki"
            },
            "description": {
                "fi": "<p>Länsirannalla ihmisoikeustarkkailijana toiminut Leena Sillanpää on tavattavissa Tapiolan kirjaston&nbsp;Heikki-tilassa&nbsp;torstaina 9.1.2025 klo 17.30. Tule kuulemaan ihmisoikeustarkkailijoiden kokemuksia Länsirannalla ja keskustelemaan alueen tilanteesta.</p><p>***</p><p>Valokuvanäyttely kuvaa miehitetyn Palestiinalaisalueen asukkaiden arkista selviytymiskamppailua miehityksen alla. Israelin sotilaallinen miehitys vaikeuttaa palestiinalaisten elämää monin tavoin rikkoen heidän ihmisoikeuksiaan sekä kansainvälisen oikeuden sääntöjä. Pääosa kuvista on otettu Jordanlaakson alueelta Länsirannalta. Jordanjoen laaksossa palestiinalaisten päivittäiseen elämään vaikuttavat häirintä siirtokunnista, toistuvat sotilasharjoitukset sekä systemaattiset rajoitukset vedensaantiin sekä rakentamiseen.</p><p>Näyttelyn kuvat ovat EAPPI-tarkkailijana toimineen Leena Sillanpään ottamia Länsirannalla. EAPPI (Ecumenical Accompaniment Programme in Palestine and Israel) on kansainvälinen ohjelma, jonka puitteissa vapaaehtoiset ihmisoikeustarkkailijat seuraavat ihmisoikeustilannetta ruohonjuuritasolla, raportoivat siitä sekä tarjoavat suojelevaa läsnäoloa paikallisille. Suomessa EAPPI-ohjelmaa koordinoi Kirkon Ulkomaanapu. Ohjelman päämääränä on väkivallan kierteen katkaiseminen, miehityksen päättyminen ja oikeudenmukainen rauha.</p>",
                "sv": "<p>Välkommen att besöka Leena Sillanpääs utställning \"Arki miehityksen alla Länsirannalla\" i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>",
                "en": "<p>Art exhibition \"Arki miehityksen alla Länsirannalla\" by Leena Sillanpää in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>"
            },
            "provider": {
                "fi": "Leena Sillanpää",
                "sv": "Leena Sillanpää",
                "en": "Leena Sillanpää"
            },
            "short_description": {
                "fi": "Länsirannalla ihmisoikeustarkkailijana toiminut Leena Sillanpää on tavattavissa."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aulyy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj55aul4i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-19T09:18:55.167890Z",
            "last_modified_time": "2024-12-19T09:18:55.167911Z",
            "date_published": "2024-12-19T09:03:00Z",
            "start_time": "2025-01-08T06:00:00Z",
            "end_time": "2025-02-01T18: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,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Näyttely: Arki miehityksen alla Länsirannalla",
                "sv": "Utställning: Arki miehityksen alla Länsirannalla",
                "en": "Art exhibition: Arki miehityksen alla Länsirannalla"
            },
            "location_extra_info": {
                "fi": "Näyttelyparvi (kirjaston lehtisalissa)",
                "sv": "Utställningsloftet (i bibliotekets tidningssal)",
                "en": "Exhibition loft (in the library’s reading room)"
            },
            "description": {
                "fi": "<p>Valokuvanäyttely kuvaa miehitetyn Palestiinalaisalueen asukkaiden arkista selviytymiskamppailua miehityksen alla. Israelin sotilaallinen miehitys vaikeuttaa palestiinalaisten elämää monin tavoin rikkoen heidän ihmisoikeuksiaan sekä kansainvälisen oikeuden sääntöjä. Pääosa kuvista on otettu Jordanlaakson alueelta Länsirannalta. Jordanjoen laaksossa palestiinalaisten päivittäiseen elämään vaikuttavat häirintä siirtokunnista, toistuvat sotilasharjoitukset sekä systemaattiset rajoitukset vedensaantiin sekä rakentamiseen.</p><p>Näyttelyn kuvat ovat EAPPI-tarkkailijana toimineen Leena Sillanpään ottamia Länsirannalla. EAPPI (Ecumenical Accompaniment Programme in Palestine and Israel) on kansainvälinen ohjelma, jonka puitteissa vapaaehtoiset ihmisoikeustarkkailijat seuraavat ihmisoikeustilannetta ruohonjuuritasolla, raportoivat siitä sekä tarjoavat suojelevaa läsnäoloa paikallisille. Suomessa EAPPI-ohjelmaa koordinoi Kirkon Ulkomaanapu. Ohjelman päämääränä on väkivallan kierteen katkaiseminen, miehityksen päättyminen ja oikeudenmukainen rauha.</p><p>***</p><p>Länsirannalla ihmisoikeustarkkailijana toiminut Leena Sillanpää on tavattavissa Tapiolan kirjaston Heikki-tilassa torstaina 9.1.2025 klo 17.30. Tule kuulemaan ihmisoikeustarkkailijoiden kokemuksia Länsirannalla ja keskustelemaan alueen tilanteesta.</p>",
                "sv": "<p>Välkommen att besöka Leena Sillanpääs utställning \"Arki miehityksen alla Länsirannalla\" i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>",
                "en": "<p>Art exhibition \"Arki miehityksen alla Länsirannalla\" by Leena Sillanpää in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>"
            },
            "provider": {
                "fi": "Leena Sillanpää",
                "sv": "Leena Sillanpää",
                "en": "Leena Sillanpää"
            },
            "short_description": {
                "fi": "Valokuvanäyttely kuvaa miehitetyn Palestiinalaisalueen asukkaiden arkista selviytymiskamppailua miehityksen alla.",
                "sv": "Välkommen att besöka Leena Sillanpääs utställning \"Arki miehityksen alla Länsirannalla\" i Hagalund biblioteken.",
                "en": "Art exhibition \"Arki miehityksen alla Länsirannalla\" by Leena Sillanpää in Tapiola Library."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aul4i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj54s5wy4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-19T09:08:44.542096Z",
            "last_modified_time": "2024-12-19T09:08:44.542120Z",
            "date_published": null,
            "start_time": "2025-03-18T14:30:00Z",
            "end_time": "2025-03-18T15:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Tervetuloa oman hyvinvoinnin polulle!"
            },
            "location_extra_info": {
                "fi": "Akseli-sali"
            },
            "description": {
                "fi": "<p>Arjen pyörteissä omasta hyvinvoinnista huolehtiminen voi toisinaan tuntua vaikealta. Pitkäaikaissairaus, sen hoito ja esimerkiksi pitkittyneet kivut voivat haastaa jaksamista entisestään.</p><p>Onneksi omaa hyvinvointia voi kuitenkin tukea pienillä arkisilla teoilla. Ota siis askel oman hyvinvoinnin polulle!</p><p>Oman hyvinvoinnin polun sisällöt on suunniteltu erityisesti tulehduksellisia reumasairauksia sairastaville hyvinvoinnin tueksi. Monet sisällöistä sopivat kuitenkin kenelle tahansa, diagnoosista riippumatta. Myös reuma- ja muita tuki- ja liikuntaelinsairauksia sairastavien läheiset sekä terveydenhuollon ammattilaiset voivat hyötyä sivuston sisällöistä. Oman hyvinvoinnin polusta tulee kertomaan Reumaliiton Omahoitopolku-hankkeen projektipäällikkö</p><p><br></p><p>  </p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Espoon Reumayhdistys järjestää tiedotustilaisuuden\n\"Oman hyvinvoinnin polusta\" Paikalle tulee kertomaan\nReumaliiton Omahoitopolku-hankkeen projektipääll...\n"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5wy4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj54s5xt4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5xdu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5xhu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5xlq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5xpu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 151138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-16T07:16:46.641203Z",
                    "last_modified_time": "2024-05-16T07:16:46.641224Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/RitvanSalonki.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Avoin kirja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-19T08:55:57.037715Z",
            "last_modified_time": "2024-12-19T08:55:57.037734Z",
            "date_published": null,
            "start_time": "2025-01-28T11:30:00Z",
            "end_time": "2025-04-22T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Ritvan Salonki",
                "sv": "Ritvas Salong",
                "en": "Ritva's Salon"
            },
            "location_extra_info": {
                "fi": "Mauri",
                "sv": "Mauri",
                "en": "Mauri"
            },
            "description": {
                "fi": "<p>Ritvan salongissa keskustellaan kirjallisuudesta suomen kielellä.</p><p>Tiistaina 28.1.2025 klo 13.30 - 15.30</p><p>Kirjana Anni Kytömäki: Mirabilis, Gummerus 2024, 688 s</p><p>Tiistaina 25.2.2025 klo 13.30 - 15.30</p><p>Kirjana Pirkko Saisio: Suliko, Siltala 2024, 411 s</p><p>Tiistaina 25.3.2025 klo 13.30 - 15.30</p><p>Kirjana Han Kang: Valkoinen kirja, Gummerus 2021, 111 s, suom. Taru Salminen</p><p>Tiistaina 22.4.2025 klo 13.30 - 15.30</p><p>Kirjana Paul Auster: Baumgartner, Tammi 2024/wsoy, 204 s, suom. Arto Schroderus</p><p><br></p><p>Lisätietoja: Ritva Laine, kirjallisuuspiirin vetäjä, ritva.laine@kotiportti.fi</p><p>Lämpimästi tervetuloa luottamukselliseen keskustelun piiriin!</p>",
                "sv": "<p>I Ritvas salong diskuteras litteratur på finska.</p>",
                "en": "<p>In Ritva's salon, literature is discussed in Finnish.</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Ritvan salongissa keskustellaan kirjallisuudesta suomen kielellä.",
                "sv": "I Ritvas salong diskuteras litteratur på finska.",
                "en": "In Ritva's salon, literature is discussed in Finnish."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5xt4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj54fibjq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-19T07:47:21.300902Z",
            "last_modified_time": "2024-12-19T07:47:21.300923Z",
            "date_published": "2024-12-19T07:42:00Z",
            "start_time": "2025-01-08T06:00:00Z",
            "end_time": "2025-01-31T18: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,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Näyttely: KUIKKAJÄRVI",
                "sv": "Utställning: KUIKKAJÄRVI",
                "en": "Art exhibition: KUIKKAJÄRVI"
            },
            "location_extra_info": {
                "fi": "Näyttelyseinä Kaija",
                "sv": "Utställningsväggen Kaija",
                "en": "Exhibition wall Kaija"
            },
            "description": {
                "fi": "<p>Valokuvanäyttelyssä KUIKKAJÄRVI on maisema- ja lintukuvia isolta keskisuomalaiselta järveltä. Järvellä elää noin 150 kuikkaparia.&nbsp;Pekka Lehtonen on kuikkatutkija ja julkaissut vuonna 2019 yhdessä Martti Perämäen kanssa kirjan Lähikuvassa kuikka. Kirja oli vuoden luontikirjaehdokkaana 2019. Siinä kerrotaan kuikan biologiasta ja elintavoista.</p><p>Lehtonen on saavuttanut kansainvälisen valokuvataiteilijan tittelin EFIAP. Hän on pitänyt Kuikkajärvi&nbsp;-näyttelyn lisäksi valokuvanäyttelyt Saariston lumoa ja Lumoava Japani ja osallistunut useisiin yhteisnäyttelyihin.&nbsp;Sadat hänen kuvansa ovat saavuttaneet palkintosijan valokuvakilpailuissa.</p>",
                "sv": "<p>Välkommen att besöka Pekka Lehtonens utställning \"KUIKKAJÄRVI\" i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>",
                "en": "<p>Art exhibition \"KUIKKAJÄRVI\" by Pekka Lehtonen in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>"
            },
            "provider": {
                "fi": "Pekka Lehtonen",
                "sv": "Pekka Lehtonen",
                "en": "Pekka Lehtonen"
            },
            "short_description": {
                "fi": "Pekka Lehtosen näyttely KUIKKAJÄRVI on esillä Tapiolan kirjastossa.",
                "sv": "Välkommen att besöka Pekka Lehtonens utställning \"KUIKKAJÄRVI\" i Hagalund biblioteken.",
                "en": "Art exhibition \"KUIKKAJÄRVI\" by Pekka Lehtonen in Tapiola Library."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fibjq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj53xpysq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj53xpyni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj53xpyqe/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-19T06:42:49.706379Z",
            "last_modified_time": "2024-12-19T06:42:49.706401Z",
            "date_published": null,
            "start_time": "2025-02-12T15:00:00Z",
            "end_time": "2025-04-16T16: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,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Espoon Selkäyhdistys ry:n selkäoireisten vertaistapaamiset "
            },
            "location_extra_info": {
                "fi": "Elina ja Mauri"
            },
            "description": {
                "fi": "<p>Selkäoireisten vertaistapaaminen</p><p>12.2. Elinassa</p><p>16.4. Maurissa</p>"
            },
            "provider": {
                "fi": "Espoon Selkäyhdistys ry"
            },
            "short_description": {
                "fi": "Selkäoireisten vertaistapaaminen"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj53xpysq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj53xpyu4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-19T06:33:37.355460Z",
            "last_modified_time": "2024-12-19T06:33:37.355482Z",
            "date_published": null,
            "start_time": "2025-01-20T15:30:00Z",
            "end_time": "2025-01-20T17: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,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Selkäliiton luento"
            },
            "location_extra_info": {
                "fi": "Akseli-sali"
            },
            "description": {
                "fi": "<p>Mitä kaikkea kevyt liikkuminen voi olla, ja mitä positiivisia vaikutuksia on kevyellä liikkumisella? Selkäliiton liikuntatoiminnan koordinaattori Hanna Kääriäinen kertoo kevyen liikkumisen hyödyistä. Luento on kaikille avoin ja maksuton.</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Mitä kaikkea kevyt liikkuminen voi olla, ja mitä positiivisia vaikutuksia on kevyellä liikkumisella? "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj53xpyu4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj53jsfsa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj53jsfca/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj53jsfnm/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-19T05:33:29.536468Z",
            "last_modified_time": "2024-12-19T05:33:29.536497Z",
            "date_published": null,
            "start_time": "2025-02-28T08:00:00Z",
            "end_time": "2025-02-28T09:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Jamkis Vauvajamit",
                "sv": "Jamming Babies",
                "en": "Jamming Babies"
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "description": {
                "fi": "<p>Vauvajamit, Jamming Babies, on vauvan ja aikuisen yhteinen elämys – toiminnallinen musiikkituokio, josta ei iloa ja ihmeteltävää puutu.</p><p>Vauvaperheille suunnatuissa riemukkaissa tuokioissa lauletaan ja lorutellaan, katsotaan ja kuunnellaan.</p><p>&nbsp;</p><p>Tule viettämään vauvasi kanssa ihastuttava hetki musiikin parissa. Tapahtuman kesto on 30 minuuttia, jonka jälkeen voit jäädä vielä fiilistelemään ja juttelemaan ohjaajien kanssa.</p><p>&nbsp;</p><p>Ohjelma sopii kaikille vauvoille ja heidän perheilleen! Sisältö on suunniteltu vauvoille, mutta mukaan ovat tervetulleita myös isommat sisarukset.</p><p>Tapahtumaan ei ole ennakkoilmoittautumista</p>",
                "sv": "<p>Jamming Babies är en gemensam upplevelse för barn och vuxna - en aktivitetsbaserad musikstund med massor av glädje och förundran.</p><p>Det här glädjefyllda passet riktar sig till familjer med spädbarn och handlar om att sjunga och prata, titta och lyssna.</p><p><br></p><p>Kom och tillbringa en härlig stund med din bebis i musikens tecken. Evenemanget pågår i 30 minuter och därefter kan du stanna kvar en stund och prata med instruktörerna.</p><p><br></p><p>Programmet lämpar sig för alla bebisar och deras familjer! Innehållet är utformat för bebisar, men äldre syskon är också välkomna.</p><p>Det finns ingen föranmälan till detta evenemang</p><p><br></p><p>Translated with DeepL.com (free version)</p>",
                "en": "<p>Jamming Babies is a shared experience for baby and adult - an activity-based music session with no shortage of joy and wonder.</p><p>Aimed at families with babies, this joyful session is all about singing and chattering, watching and listening.</p><p><br></p><p>Come and spend a delightful time with your baby in music. The event lasts 30 minutes, after which you can stay for a while and chat with the instructors.</p><p><br></p><p>The programme is suitable for all babies and their families! The content is designed for babies, but older siblings are also welcome.</p><p>There is no pre-registration for this event</p><p><br></p><p>Translated with DeepL.com (free version)</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Vauvajamit, Jamming Babies, on vauvan ja aikuisen yhteinen elämys – toiminnallinen musiikkituokio, josta ei iloa ja ihmeteltävää puutu.",
                "sv": "Jamming Babies är en gemensam upplevelse för barn och vuxna - en aktivitetsbaserad musikstund med massor av glädje och förundran.",
                "en": "Jamming Babies is a shared experience for baby and adult - an activity-based music session with no shortage of joy and wonder."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj53jsfsa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj5vjjmry",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-18T15:33:50.754770Z",
            "last_modified_time": "2024-12-18T15:35:26.620458Z",
            "date_published": null,
            "start_time": "2025-01-27T06:00:00Z",
            "end_time": "2025-02-14T18: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,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Inka Klingin 52 viikkoa ja  52 villasukkaa- näyttely"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Olen intohimoinen harrastajaneuloja.</p><p>Näyttelyssä on esillä vuonna 2024 neulomani villasukat, yhteensä 52 paria.</p><p>Suuri osa malleista on neulottu erilaisiin sukkakilpailuihin, joukossa on myös kaksi itse suunnittelemaani mallia. Sukissa hehkuvat värit ja monien sukkaparien takaa löytyy tarina tai mielenkiintoinen inspiraation lähde.</p><p>Näyttely on esillä näyttelyseinällä 27.1. - 14.2.25.</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa katsomaan Inka Klingin 52 vikkoa ja 52 villasukkaa-näyttelyn upeita villasukkia ! Näyttely on esillä näyttelyseinällä 27.1. - 14.2.25."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5vjjmry/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agjwq562vm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-11-26T11:39:50.621437Z",
            "last_modified_time": "2024-12-18T14:13:31.565743Z",
            "date_published": null,
            "start_time": "2024-12-18T14:00:00Z",
            "end_time": "2024-12-18T16: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,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Kabooks- musiikillinen satuhetki",
                "en": "Kabooks- Musical stories in Farsi & Spanish"
            },
            "location_extra_info": {
                "fi": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "description": {
                "fi": "<p>Kabooks! on monikielinen musiikillinen satuhetki lapsille ja perheille, joka herättää kirjat eloon elävän improvisoidun musiikin avulla.</p><p><br></p><p>Nämä musiikilliset satuhetket juhlistavat kansainvälistä maahanmuuttajien päivää Sellon kirjastossa 18. joulukuuta klo 16-18!</p><p><br></p><p>Kabooks! nostaa esiin vähemmistöjen perinnekieliä, edistää lukemista, tarjoaa perheille kokemuksia ja esittelee monimuotoisen yhteiskuntamme taiteellisia kykyjä.</p><p><br></p><p>Tervetuloa kuuntelemaan&nbsp;satuhetkeä espanjan ja farsin kielillä.</p>",
                "en": "<p>Kabooks! is a multilingual, musical storytelling experience for families and children, bringing books to life, with live improvised music.</p><p>These musical storytelling sessions will commemorate International Migrants Day at Sello Library, on December 18th!</p><p>Kabooks! will highlight minority heritage languages, promote reading mediation, music sensibilization, enrich family life, and showcase the artistic talents within our diverse society.</p><p>Enjoy with your children storytelling and live music sessions in Farsi and Spanish languages.</p><p>&nbsp;18.12.2024&nbsp;&nbsp;Free access&nbsp;&nbsp;4 – 6 pm.</p><p>Recommended age: +2-6 years old.</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Kabooks! on monikielinen musiikillinen satuhetki lapsille ja perheille, joka herättää kirjat eloon elävän improvisoidun musiikin avulla. Tervetuloa!",
                "en": "Kabooks! is a multilingual, musical storytelling experience for families and children, bringing books to life, with live improvised music. Welcome!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjwq562vm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj5l3qy4y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qyuu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qyyy/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-17T17:20:22.862921Z",
            "last_modified_time": "2024-12-18T13:25:52.270281Z",
            "date_published": null,
            "start_time": "2025-01-23T14:00:00Z",
            "end_time": "2025-02-06T16: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,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Paja tutuksi kaikille",
                "sv": "Verkstad för alla",
                "en": "Makerspace for all"
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "description": {
                "fi": "<p>Tervetuloa tutustumaan 3D-tulostimeen ja vinyylileikkuriin Tapiolan kirjaston Pajaan.</p><p>Opettelemme tekemään 3D-tulosteen sekä käyttämään vinyylileikkuria ja lämpöprässiä. Ota oma puuvillainen vaate tms. mukaan, jos haluat painaa siihen kuvan tai tekstin. Vaihtoehtoisesti voit tehdä tarran.</p><p>Tulostus- ja vinyylimateriaalin tarjoaa kirjasto.</p><p>Ohjausta tarjotaan suomeksi ja englanniksi.</p>",
                "sv": "<p>Välkommen att lära dig hur du använder en 3D-skrivare och en vinylskärare.</p><p>Biblioteket bjuder på material som behövs.</p>",
                "en": "<p>Welcome to learn how to use a 3D printer and a vinyl cutter.</p><p>The library will provide the necessary materials.</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa tutustumaan 3D-tulostimeen ja vinyylileikkuriin Tapiolan kirjaston Pajaan.",
                "sv": "Välkommen att lära dig hur du använder en 3D-skrivare och en vinylskärare.",
                "en": "Welcome to learn how to use a 3D printer and a vinyl cutter."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qy4y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}