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

{
    "meta": {
        "count": 27046,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=120&registration__remaining_waiting_list_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=118&registration__remaining_waiting_list_capacity__isnull=true"
    },
    "data": [
        {
            "id": "espoo_le:agmk22otee",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dgni/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22og5e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ohna/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oh4u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oile/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oi2i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ojje/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ojya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22okoi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22olki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ol2y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22omku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22om2u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22onjy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22onyi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ooga/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ooue/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22opci/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22opqe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22op6e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oqna/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oq3m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22orju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22orye/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22osga/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22osua/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490207,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-15T14:09:55.564411Z",
                    "last_modified_time": "2025-01-15T14:09:55.564429Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6322ba40-92fa-4717-ab7a-f9fa0170a55c.png",
                    "cropping": "88,0,424,336",
                    "photographer_name": "",
                    "alt_text": "Play Station ohjaimet ja monitori blurrina taustalla. Siellä näkyy todennäköisesti Fifa peli.  Teksti: Tapahtuman ikäraja on 12-vuotta!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490207/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-07-04T11:29:08.066516Z",
            "last_modified_time": "2025-07-04T11:29:08.066538Z",
            "date_published": null,
            "start_time": "2025-07-04T11:30:00Z",
            "end_time": "2025-12-19T16: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,
            "name": {
                "fi": "Nuorten perjantai Voxissa",
                "sv": "Ungdomarnas fredag i Vox!",
                "en": "Youth Friday at Vox!"
            },
            "provider": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tapahtuman aikana on mahdollista pelata pelejä, joissa on PEGI 12 ikäraja. Kaikkien tapahtumaan osallistuvien tulee todistaa ikänsä joka perjantai esimerkiksi kirjastokortilla tai henkilökortilla.</p>",
                "sv": "<p>Under evenemanget är det möjligt att spela spel med PEGI 12 åldersgräns. Alla som deltar i evenemanget måste bevisa sin ålder varje fredag, till exempel med ett bibliotekskort eller ID-kort.</p>",
                "en": "<p>During the event, it is possible to play games with a PEGI 12 age rating. All participants must prove their age every Friday, for example with a library card or ID card</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Voxissa järjestetään joka perjantai tapahtuma yli 12-vuotiaille kello 14:00-19:30",
                "sv": "I Vox arrangeras en evenemang varje fredag för över 12-åringar kl. 14:00-19:30.",
                "en": "\nThe event is held every Friday at Vox for those over 12 years old from 2:00 PM to 7:30 PM"
            },
            "location_extra_info": {
                "fi": "Vox",
                "sv": "Vox",
                "en": "Vox"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22otee/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66687",
            "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: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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1179029,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T10:12:39.980148Z",
                    "last_modified_time": "2025-07-04T10:12:39.980161Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774073.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1179029/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T10:12:39.927802Z",
            "last_modified_time": "2025-07-04T10:12:40.057744Z",
            "date_published": null,
            "start_time": "2025-10-14T07:00:00Z",
            "end_time": "2025-10-14T10: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,
            "name": {
                "fi": "Vaianan korupaja – Syyslomatekemistä",
                "sv": "Vaianan korupaja – Syyslomatekemistä",
                "en": "Vaianan korupaja – Syyslomatekemistä"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8029867F7B5050BC100A42D224C3026C/Vaianan_korupaja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8029867F7B5050BC100A42D224C3026C/Vaianan_korupaja",
                "en": "http://www.malmitalo.fi/en/events/event/8029867F7B5050BC100A42D224C3026C/Vaianan_korupaja"
            },
            "description": {
                "fi": "<p>Työpajassa valmistetaan Vaianan jalanjäljissä merellisiä koruja, jotka pitävät sisällään maagisia voimia. Mitä taianomaista sinun korusi pystyy tekemään?</p><p>Syyslomalla Malmitalolla järjestetään maksuttomia työpajoja. Luvassa on askarreltavaa ja muuta kivaa puuhaa lapsille ja perheille. Jokaiselle työpajalle on oma teemansa, joka on inspiroitunut kyseisen päivän syyslomaleffasta.</p><p>Vapaa pääsy!<br>Paikka: Malmitalon parvi</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Työpajassa valmistetaan Vaianan jalanjäljissä merellisiä koruja, jotka pitävät sisällään maagisia voimia. Mitä taianomaista sinun korusi pystyy tekemään?"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66687/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66054",
            "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:33/?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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "29,90 € / 21,80 €",
                        "sv": "29,90 € / 21,80 €",
                        "en": "29,90 € / 21,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stella-polaris/stella-polaris-malmi-noir-improvisoitu-rikosdraama-3886102/",
                        "sv": "https://www.lippu.fi/artist/stella-polaris/stella-polaris-malmi-noir-improvisoitu-rikosdraama-3886102/",
                        "en": "https://www.lippu.fi/artist/stella-polaris/stella-polaris-malmi-noir-improvisoitu-rikosdraama-3886102/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1179028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T10:12:39.659412Z",
                    "last_modified_time": "2025-07-04T10:12:39.659425Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770647.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1179028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T10:12:39.600941Z",
            "last_modified_time": "2025-07-04T10:12:39.756481Z",
            "date_published": null,
            "start_time": "2025-10-11T15: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,
            "name": {
                "fi": "Malmi Noir – improvisoitu rikosdraama – Stella Polaris",
                "sv": "Malmi Noir – improvisoitu rikosdraama – Stella Polaris",
                "en": "Malmi Noir – improvisoitu rikosdraama – Stella Polaris"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/46E2523CC4D17590D9F77840100685F5/Malmi_Noir_improvisoitu_rikosdraama",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/46E2523CC4D17590D9F77840100685F5/Malmi_Noir_improvisoitu_rikosdraama",
                "en": "http://www.malmitalo.fi/en/events/event/46E2523CC4D17590D9F77840100685F5/_Malmi_Noir_improvisoitu_rikosdraama"
            },
            "description": {
                "fi": "<p>Tule luomaan esitystä yhdessä kanssamme ja seuraamaan ratkeaako rikos!</p><p>Sorjonen, Silta, Wallander, Ivalo… Nordic noir valloittaa maailmaa televisiossa ja valkokankaalla ja Stella Polaris tuo suositun tyylilajin myös teatterinäyttämölle. Tummanpuhuva rikosdraama saa alkunsa yleisön antamista lähtökohdista, ja näin käynnistyy tapahtumaketju, jossa kaikki ovat epäiltyjä, kunnes toisin todistetaan.</p><p>Stella Polariksen taitavat improvisoijat tarttuvat rikostarinoista synkimpään ja tekevät siitä oman tulkintansa. Improvisaatiossa mitään ei ole ennalta sovittu, joten syyllinen voi olla kuka tahansa.  <br>Esiintyjät vaihtuvat esityksissä. Kaikki oikeudet muutoksiin pidetään!</p><p>Esityksen kesto: 1 t 45 min (sis. väliajan). <br>Ikäsuositus: 13 v.  <br>Esityksen kieli: suomi</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule luomaan esitystä yhdessä kanssamme ja seuraamaan ratkeaako rikos!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66054/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66491",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-781/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 869337,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-27T12:12:44.882091Z",
                    "last_modified_time": "2025-05-27T12:12:44.882104Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735437.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/869337/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-27T12:12:44.780262Z",
            "last_modified_time": "2025-07-04T10:12:34.604917Z",
            "date_published": null,
            "start_time": "2025-07-31T10:30:00Z",
            "end_time": "2025-07-31T15: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,
            "name": {
                "fi": "Ara Yaralyan Quartet | Valjakka & Vannesluoma feat. Mingo Rajandi | Iro Haarla Ouranos Ensemble – Jazz-Espa",
                "sv": "Ara Yaralyan Quartet | Valjakka & Vannesluoma feat. Mingo Rajandi | Iro Haarla Ouranos Ensemble – Jazz-Espa",
                "en": "Ara Yaralyan Quartet| Valjakka & Vannesluoma feat. Mingo Rajandi | Iro Haarla Ouranos Ensemble – Jazz-Espa"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D3FD87B96633222061F9041B31546632/Ara_Yaralyan_Quartet_Valjakka_Vannesluoma_feat_Mingo_Rajandi_Iro_Haarla_Ouranos_Ensemble",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/D3FD87B96633222061F9041B31546632/Ara_Yaralyan_Quartet_Valjakka_Vannesluoma_feat_Mingo_Rajandi_Iro_Haarla_Ouranos_Ensemble",
                "en": "http://www.espanlava.fi/en/events/event/D3FD87B96633222061F9041B31546632/Ara_Yaralyan_Quartet_Valjakka_Vannesluoma_feat_Mingo_Rajandi_Iro_Haarla_Ouranos_Ensemble"
            },
            "description": {
                "fi": "<p>Jazz-Espan lavalla Ara Yaralyan Quartet, Valjakka & Vannesluoma feat. Mingo Rajandi ja Iro Haarla Ouranos Ensemble!</p><p><b>Aikataulu</b><br>klo 13.30 Ara Yaralyan Quartet<br>klo 16 Valjakka & Vannesluoma feat. Mingo Rajandi<br>klo 17.15 Iro Haarla Ouranos Ensemble</p><p><b>Ara Yaralyan Quartet</b><br>Armenialaissyntyisen jazzbasisti Ara Yaralyanin ohjelmistossa kuullaan materiaalia hänen sooloalbumiltaan Alone and Together sekä uusia sovituksia ja sävellyksiä. Ohjelmisto kattaa laajan kirjon musiikkia jazzista itämaiseen musiikkiin, mikä heijastaa sitä ympäristöä, jossa Yaralyan kehittyi muusikkona.</p><p>Ara Yaralyania säestävät tunnetut suomalaismuusikot; laulaja Mia Simanainen, pianisti Kari Ikonen ja rumpali Markku Ounaskari.</p><p>Konsertti järjestetään yhteistyössä Viron Helsingin-suurlähetystön kanssa.</p><p><b>Valjakka & Vannesluoma feat. Mingo Rajandi</b><br>Pianisti Juho Valjakan, laulaja Josefiina Vannesluoman ja kontrabasisti Mingo Rajandin musiikissa kohtaavat herkkä ja voimakas, selkeä ja määrittämätön. Säveltäjinäkin toimivat muusikot etsivät taiteenlajien rajapinnoilla yhteistä ja erillistä olemisen tapaa, ammentaen merkityksiä mm. runoudesta ja liikkeestä. Äänen, pianon ja kontrabasson akustisessa avantgardessa vuoroin levätään korvia kahisuttavan kauniissa tekstuureissa, vuoroin yllätytään kielen ja soinnillisten merkitysten kohtaamisissa.</p><p>Juho Valjakka on jazz- ja improvisoituun musiikkiin keskittynyt pianisti ja säveltäjä, jota kiehtoo taiteessa määrittelemättömyys ja ambiguiteetin mahdollisuudet. Jazz Emma -ehdokkuudella huomioidun Juho Valjakka Trion ohella hän soittaa usean kotimaisen huippuyhtyeen riveissä.</p><p>Josefiina Vannesluoma on turkulaissyntyinen, kolmella Jazz Emma -ehdokkuudella huomioitu laulaja ja säveltäjä, joka luotsaa yhtyeitä Mortal Lease ja Signe.</p><p>Virolaissyntyisen kontrabasisti ja säveltäjä Mingo Rajandin musiikissa sävellys ja improvisointi kohtaavat genrerajoja ja taidemuotoja venyttäen. Näyttelijäksikin valmistuneelta Rajandilta on tilattu useita kantaesityksiä jazz- ja klassisen musiikin festivaaleille.</p><p>Konsertti järjestetään yhteistyössä Viron Helsingin-suurlähetystön kanssa.</p><p><b>Iro Haarla Ouranos Ensemble</b><br>Iro Haarla Ouranos Ensemble on uusi yhtye, jossa puhaltaa uusi tuuli. Yhtye soittaa Jazz-Espassa kappaleita marraskuussa 2024 julkaisemalta levyltään̈ Ouranos – Under the Firmament, jonka julkaisijana toimi Willa Silva Records.</p><p>Sana ”ouranos” on kreikan kieltä ja tarkoittaa taivaankaarta. Jokainen yhtyeen esittämä kappale kuvaa jollakin tapaa maan pinnan yläpuolella tapahtuvia ilmiöitä, joita emme ehkä näe, mutta aistimme ne kuitenkin elämäämme vaikuttavina elementteinä.</p><p>Iro Haarla – piano<br>Jarmo Saari – sähkökitara<br>Ulf Krokfors – kontrabasso<br>Aniida Vesala – rummut<br>Aija Puurtinen – laulu</p>",
                "sv": "<p>Ara Yaralyan Quartet, Valjakka & Vannesluoma feat. Mingo Rajandi och Iro Haarla Ouranos Ensemble på Jazz-Espa scenen!</p><p><b>Schema</b><br>13:30 Ara Yaralyan Quartet<br>16.00 Valjakka & Vannesluoma feat. Mingo Rajandi<br>17:15 Iro Haarla Ouranos Ensemble</p><p><b>Ara Yaralyan Quartet</b><br>Den armeniskfödde jazzbasisten Ara Yaralyans program innehåller material från hans soloalbum Alone and Together samt nya arrangemang och kompositioner. Repertoaren spänner över ett brett spektrum av musik – från jazz till orientalisk musik – och speglar den miljö där Yaralyan formades som musiker. Hans mål är att skapa något nytt av det gamla genom att använda melodiska teman från armeniska folksånger.</p><p>Ara Yaralyan ackompanjeras av välkända finländska musiker: sångerskan Mia Simanainen, pianisten Kari Ikonen och trumslagaren Markku Ounaskari.</p><p>Yaralyan har tidigare varit medlem i Kari Ikonens trio, med vilken han har gett ut två album. Tillsammans med Markku Ounaskari spelar han både i sin egen kvartett och i trion Sooäär–Yaralyan–Ounaskari.</p><p>Konserten arrangeras i samarbete med Estlands ambassad i Helsingfors.</p><p><b>Valjakka & Vannesluoma feat. Mingo Rajandi</b><br>I pianisten Juho Valjakkas, sångaren Josefiina Vannesluomas och kontrabasisten Mingo Rajandis musik möts det sköra och det kraftfulla, det tydliga och det obestämda. Musikanterna, som även är tonsättare, söker vid gränsytorna mellan konstformer efter ett gemensamt och separat sätt att vara, och hämtar betydelser bland annat ur poesi och rörelse. I det akustiska avantgardet för röst, piano och kontrabas vilar man stundvis i vackra, prasslande texturer, för att i nästa stund överraskas av möten mellan språk och klangliga betydelser.</p><p>Juho Valjakka är en pianist och kompositör med fokus på jazz och improviserad musik, som fascineras av det obestämda och möjligheterna i tvetydighet. Förutom sitt uppmärksammade Juho Valjakka Trio – nominerat till en Jazz-Emma – spelar han med flera av Finlands främsta ensembler.</p><p>Josefiina Vannesluoma är en sångare och kompositör från Åbo, nominerad till tre Jazz-Emma, som leder grupperna Mortal Lease och Signe.</p><p>Den estniska kontrabasisten och kompositören Mingo Rajandi förenar komposition och improvisation i musik som tänjer på genregränser och konstformer. Rajandi, som även är utbildad skådespelare, har fått flera beställningsverk uruppförda på jazz- och klassiska musikfestivaler.</p><p>Konserten arrangeras i samarbete med Estlands ambassad i Helsingfors.</p><p><b>Iro Haarla Ouranos Ensemble</b> är ett nytt band som blåser in nya vindar. De spelar på Jazz-Espa låtar från sitt album Ouranos - Under the Firmament, som gavs ut i november 2024, publicerat av Willa Silva Records.</p><p>Det grekiska ordet ”ouranos” betyder himlens valv. Varje stycke i gruppens repertoar beskriver, på något sätt, skeenden som tar plats ovanför jordens yta, saker man kanske inte förnimmer men som ändå har en inverkan på oss.</p><p>Iro Haarla – piano<br>Jarmo Saari – gitarr<br>Ulf Krokfors – kontrabas<br>Aniida Vesala – trummor<br>Aija Puurtinen – sång</p>",
                "en": "<p>Ara Yaralyan Quartet, Valjakka & Vannesluoma feat. Mingo Rajandi and Iro Haarla Ouranos Ensemble on the Jazz-Espa stage!</p><p><b>Schedule</b><br>1:30 p.m. Ara Yaralyan Quartet<br>4 p.m. Valjakka & Vannesluoma feat. Mingo Rajandi<br>5:15 p.m.  Iro Haarla Ouranos Ensemble</p><p><b>Ara Yaralyan Quartet</b><br>Armenian-born jazz bassist Ara Yaralyan’s program features material from his solo album Alone and Together, as well as new arrangements and compositions. The repertoire will cover a wide range of styles, from jazz to oriental music, reflecting the environment in which Yaralyan developed as a musician. His goal is to create something new from the old by drawing on the melodic themes of Armenian folk songs.</p><p>Yaralyan is accompanied by well-known Finnish musicians: vocalist Mia Simanainen, pianist Kari Ikonen and drummer Markku Ounaskari.</p><p>Yaralyan has previously been a member of Kari Ikonen’s trio, with whom he has released two albums. Together with Markku Ounaskari, he performs both in his own quartet and in the Sooäär–Yaralyan–Ounaskari trio.</p><p>The concert is organized in collaboration with the Embassy of Estonia in Helsinki.</p><p><b>Valjakka & Vannesluoma feat. Mingo Rajandi</b><br>In the music of pianist Juho Valjakka, singer Josefiina Vannesluoma and double bassist Mingo Rajandi, delicate and powerful, clear and undefined meet. The musicians, who also compose, seek a common and separate way of being at the intersections of art forms, drawing meanings from poetry and movement, among other things. In the acoustic avant-garde of sound, piano and double bass, one moment rests in beautifully rustling textures, and the next is surprised by the encounters of language and tonal meanings.</p><p>Juho Valjakka is a pianist and composer focused on jazz and improvised music, fascinated by the ambiguity and possibilities of indeterminacy in art. In addition to the Juho Valjakka Trio, which has been recognized with a Jazz Emma nomination, he plays with several top domestic ensembles.</p><p>Josefiina Vannesluoma is a Turku-born singer and composer, also recognized with three Jazz Emma nominations, who leads the bands Mortal Lease and Signe.</p><p>The music of Estonian-born double bassist and composer Mingo Rajandi blends composition and improvisation, stretching genre boundaries and art forms. Mingo, who is also trained as an actor, has been commissioned to create several premieres for jazz and classical music festivals.</p><p>The concert is organized in collaboration with the Embassy of Estonia in Helsinki.</p><p><b>Iro Haarla Ouranos Ensemble</b><br>Iro Haarla Ouranos Ensemble is a new band with a new wind blowing. At Jazz-Espa, the ensemble will play songs from their album Ouranos – Under the Firmament, which was released in November 2024 by Willa Silva Records.</p><p>The Greek word ”ouranos” means firmament. Every piece in the group's repertoire depicts, in some way, events that occur above the Earth. There are things we may not see but still affect our lives.</p><p>Iro Haarla – piano<br>Jarmo Saari– guitar<br>Ulf Krokfors – double bass<br>Aniida Vesala – drums<br>Aija Puurtinen – vocals</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jazz-Espan lavalla Ara Yaralyan Quartet, Valjakka & Vannesluoma feat. Mingo Rajandi ja Iro Haarla Ouranos Ensemble!",
                "sv": "Ara Yaralyan Quartet, Valjakka & Vannesluoma feat. Mingo Rajandi och Iro Haarla Ouranos Ensemble på Jazz-Espa scenen!",
                "en": "Ara Yaralyan Quartet, Valjakka & Vannesluoma feat. Mingo Rajandi and Iro Haarla Ouranos Ensemble on the Jazz-Espa stage!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66491/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66485",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-781/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 837056,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-23T14:13:25.918747Z",
                    "last_modified_time": "2025-05-23T14:13:25.918765Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735434.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/837056/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-23T14:13:25.726366Z",
            "last_modified_time": "2025-07-04T10:12:34.411327Z",
            "date_published": null,
            "start_time": "2025-07-28T13:00:00Z",
            "end_time": "2025-07-28T15: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,
            "name": {
                "fi": "Paneelikeskustelu: Jazz yhteiskunnallisena muutosvoimana | Maja Mannila Trio – Jazz-Espa",
                "sv": "Paneldiskussion: Jazz som en kraft för social förändring | Maja Mannila Trio – Jazz-Espa",
                "en": "Panel Discussion: Jazz as a Force for Social Change | Maja Mannila Trio – Jazz-Espa"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/8B5D32207CA1DB8C343D8416FA457A6E/Paneelikeskustelu_Jazz_yhteiskunnallisena_muutosvoimana_Maja_Mannila_Trio",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/8B5D32207CA1DB8C343D8416FA457A6E/Paneldiskussion_Jazz_som_en_kraft_for_social_forandring_Maja_Mannila_Trio",
                "en": "http://www.espanlava.fi/en/events/event/8B5D32207CA1DB8C343D8416FA457A6E/Panel_Discussion_Jazz_as_a_Force_for_Social_Change_Maja_Mannila_Trio"
            },
            "description": {
                "fi": "<p>Jazz on paljon enemmän kuin musiikkia – se on ollut kautta historian väline muutokselle, aktivismille ja vuoropuhelulle.</p><p>Yhteiskunnallisen kokemuksen äänitorveksi syntynyt jazz on säilyttänyt asemansa kantaa ottavana taidemuotona. UNESCO on tunnustanut tämän perustamalla Kansainvälisen Jazzpäivän korostaakseen jazzin roolia globaalina rauhan, ihmisoikeuksien ja yhteisymmärryksen edistäjänä.<br> <br>Myös Suomessa jazz on vaikuttanut yhteiskuntaan aina 1920-luvulta lähtien. Se on antanut äänen nuorille, rikkonut sukupuolirooleja ja toiminut vastakulttuurin ilmentäjänä. Jazzin parissa tehty aktivismi johti muun muassa Suomen Jazzliiton perustamiseen vuonna 1966 ja jazzin aseman vahvistamiseen kulttuuripolitiikassa.<br> <br>Tänään jazz elää ja hengittää ajankohtaisia teemoja – ilmastokriisistä maailman konflikteihin. Mikä on jazzin yhteiskunnallinen rooli kotimaassamme nyt? Entä tulevaisuudessa?<br> <br>Tule kuulemaan ja osallistumaan keskusteluun, kun jazzin, yhteiskunnallisen vaikuttamisen ja aktivismin asiantuntijat kokoontuvat Jazz-Espan lavalle pohtimaan jazzin yhteiskunnallista voimaa 2020-luvun Suomessa.<br> <br><b>Keskustelijat:</b><br>Jari Perkiömäki (Sibelius-Akatemia, lehtori)<br>Reiska Laine (muusikko)<br>Nina Öhman (Helsingin yliopiston tutkijakollegium, tutkijatohtori)<br>Mikko Innanen (muusikko)<br>Selma Savolainen (muusikko)</p><p>Paneelikeskustelun moderoi Laura Korhonen (musiikkitoimittaja, Yle).</p><p><b>klo 17.15 Maja Mannila Trio</b><br>Maja Mannila on laulaja, pianisti ja säveltäjä, joka on noussut nopeasti kotimaisen jazzin huipulle. Hän esittää omia, englanninkielisiä kappaleitaan, jotka ovat tyyliltään sekoitus R&B:tä, soulia ja jazzia. Muusikkoperheen kasvatilla on vahva instrumentin hallinta samalla, kun hän painottaa vapauden ja hauskanpidon olevan tärkeää musiikin luomisessa ja soittamisessa. Maja Mannila Triossa soittavat Mannilan lisäksi taitavana komppiparina rumpali Severi Sorjonen ja basisti <br>Johannes Granroth.</p><p>Mannila on herättänyt viime vuosina kansainvälistä kiinnostusta, ja hän on keikkaillut niin solistina kuin trionsa kanssa Suomen lisäksi mm. Saksassa, Ruotsissa, Iso-Britanniassa, Sloveniassa, Liettuassa, Virossa ja Japanissa.</p><p>Maja Mannila Trio julkaisi debyyttialbuminsa Up & Down vuonna 2022. Toinen pitkäsoitto Seasons ilmestyi syksyllä 2023.</p><p>Maja Mannila – laulu, koskettimet<br>Johannes Granroth – basso<br>Severi Sorjonen – rummut</p>",
                "sv": "<p>Jazz är mycket mer än musik – det har genom historien fungerat som ett verktyg för förändring, aktivism och dialog.</p><p>Jazz föddes som en röst för samhälleliga erfarenheter och har behållit sin ställning som en konstform som tar ställning. UNESCO har erkänt detta genom att inrätta Internationella Jazzdagen för att lyfta fram jazzens roll som global förespråkare för fred, mänskliga rättigheter och ömsesidig förståelse.</p><p>Också i Finland har jazzen påverkat samhället ända sedan 1920-talet. Den har gett röst åt unga, brutit könsroller och fungerat som ett uttryck för motkultur. Aktivism inom jazzen ledde bland annat till grundandet av Finlands Jazzförbund år 1966 och till att jazzens ställning stärktes inom kulturpolitiken.</p><p>Idag lever och andas jazzen aktuella teman – från klimatkrisen till globala konflikter. Vilken är jazzens samhälleliga roll i dagens Finland? Och i framtiden?<br>Kom och lyssna och delta i diskussionen när experter inom jazz, samhällspåverkan och aktivism samlas på Jazz-Espa-scenen för att reflektera över jazzens samhälleliga kraft i 2020-talets Finland.</p><p><b>Deltagare:</b><br>Jari Perkiömäki (Sibelius-Akademin, lektor)<br>Reiska Laine (musiker)<br>Nina Öhman (Helsingfors universitetets forskarkollegium, forskardoktor)<br>Mikko Innanen (musiker)<br>Selma Savolainen (musiker)</p><p><b>kl. 17.15 Maja Mannila Trio</b><br>Maja Mannila är en sångerska, pianist och kompositör som snabbt har tagit sig till toppen av den finländska jazzscenen. Hon framför sina egna engelskspråkiga låtar, som stilmässigt är en blandning av R&B, soul och jazz. Som uppvuxen i en musikerfamilj har hon ett säkert grepp om musiken samtidigt som hon betonar att frihet och nöje är viktiga i skapandet och framförandet av musik. I Maja Mannila Trio spelar trumslagare Severi Sorjonen och basist Johannes Granroth – en skicklig kompduo.</p><p>Mannila har väckt internationell uppmärksamhet under de senaste åren och har uppträtt både som solist och med sin trio i bland annat Tyskland, Sverige, Storbritannien, Slovenien, Litauen, Estland och Japan – förutom i Finland.</p><p>Maja Mannila Trio släppte sitt debutalbum Up & Down år 2022. Det andra albumet Seasons kom ut hösten 2023.<br>Maja Mannila – sång, keyboards<br>Johannes Granroth – bas<br>Severi Sorjonen – trummor</p>",
                "en": "<p>Jazz is much more than music – throughout history, it has served as a vehicle for change, activism and dialogue.</p><p>Born as a voice for social experience, jazz has maintained its role as an art form that takes a stand. UNESCO has recognized this by establishing International Jazz Day to highlight jazz’s role as a global advocate for peace, human rights, and mutual understanding.</p><p>In Finland jazz has had an impact on society since the 1920s. It has given a voice to the youth, challenged gender roles and acted as a symbol of counterculture. Activism within the jazz scene even led to the founding of the Finnish Jazz Federation in 1966 and helped strengthen jazz’s position in cultural policy.</p><p>Today, jazz lives and breathes contemporary issues – from the climate crisis to global conflicts. What is the societal role of jazz in Finland today? And what could it be in the future?<br>Come listen and join the conversation as experts in jazz, social influence and activism gather on the Jazz-Espa stage to reflect on the societal power of jazz in 2020s Finland.</p><p><b>Participants:</b><br>Jari Perkiömäki (Sibelius Academy, lecturer)<br>Reiska Laine (musician)<br>Nina Öhman (Helsinki Collegium for Advanced Studies, Postdoc)<br>Mikko Innanen (musician)<br>Selma Savolainen (musician)</p><p><b>5:15 pm Maja Mannila Trio</b><br>Maja Mannila is a singer, pianist, and composer who has quickly risen to the forefront of the Finnish jazz scene. She performs her own English-language songs, which are a mix of R&B, soul and jazz. Growing up in a musical family, she has a confident approach to music while emphasizing that freedom and fun are important in creating and playing music. In addition to Mannila, the Maja Mannila Trio features drummer Severi Sorjonen and bassist Johannes Granroth as a skilled rhythm section.</p><p>In recent years, Mannila has attracted international attention and has performed both as a soloist and with her trio not only in Finland but also in countries such as Germany, Sweden, the United Kingdom, Slovenia, Lithuania, Estonia and Japan.<br>Maja Mannila Trio released their debut album Up & Down in 2022, and the second album Seasons was released in the fall of 2023.</p><p>Maja Mannila – vocals, keyboards<br>Johannes Granroth – bass<br>Severi Sorjonen – drums</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jazz on paljon enemmän kuin musiikkia – se on ollut kautta historian väline muutokselle, aktivismille ja vuoropuhelulle.",
                "sv": "Jazz är mycket mer än musik – det har genom historien fungerat som ett verktyg för förändring, aktivism och dialog.",
                "en": "Jazz is much more than music – throughout history, it has served as a vehicle for change, activism and dialogue."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66485/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66179",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178694,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T09:13:57.420870Z",
                    "last_modified_time": "2025-07-04T09:13:57.420886Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772438.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178694/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-04T09:13:57.314936Z",
            "last_modified_time": "2025-07-04T09:13:57.576109Z",
            "date_published": null,
            "start_time": "2025-10-11T10:00:00Z",
            "end_time": "2025-10-11T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Rusinat pullasta - Älyvapaat: Taidepajojen riemua jo 10 vuotta! – Huom! Poikkeava kellonaika.",
                "sv": "Russinen ur bullen – De intelligensbefriade: Konstworkshopparna fyller 10 år! – Obs! Annat klockslag än normalt.",
                "en": "Picking the best bits – Älyvapaat: Joy of art workshops for a decade! – Please note the different time."
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D56BBBC212B789696FA06FBA81E987A2/Rusinat_pullasta_-_Alyvapaat_Taidepajojen_riemua_jo_10_vuotta_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D56BBBC212B789696FA06FBA81E987A2/Russinen_ur_bullen_De_intelligensbefriade_Konstworkshopparna_fyller_10_ar_",
                "en": "http://www.annantalo.fi/en/events/event/D56BBBC212B789696FA06FBA81E987A2/Picking_the_best_bits_Alyvapaat_Joy_of_art_workshops_for_a_decade_"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Rusinat pullasta</b></p><p>Nyt poimitaan parhaat päältä! Pajoissa pääset tekemään unelmista asumuksia, osallistumaan Annantalon ajoihin ja kenties käymään myös kuussa! Juhlan kunniaksi tehdään myös omia juhlatamineita, joita voi esitellä muotinäytöksessä.</p><p>Tapahtuman järjestävät yhdessä Annantalo ja vapaaehtoisten Älyvapaa-yhteisö jo kymmenettä kertaa – <br>luvassa siis taidepajojen riemua täyden kympin verran!</p><p>Tapahtuma on maksuton, ei ennakkoilmoittautumista.</p><p>Työpajat käynnissä klo 13–15<br>Huom! Viimeiset osallistujat pajoihin klo 15.</p><p>Ikäsuositus: kaikenikäisille, alle 8-v lapset aikuisen kanssa.<br>Työskentelykieli: suomi</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66179/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65964",
            "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:31/?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/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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "35,90 € / 33,90 €",
                        "sv": "35,90 € / 33,90 €",
                        "en": "35,90 € / 33,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-malmitalo-20139384/",
                        "sv": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-malmitalo-20139384/",
                        "en": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-malmitalo-20139384/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178358,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:36.250009Z",
                    "last_modified_time": "2025-07-04T08:12:36.250023Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769558.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178358/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:36.184025Z",
            "last_modified_time": "2025-07-04T09:13:55.776330Z",
            "date_published": null,
            "start_time": "2025-10-01T16: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,
            "name": {
                "fi": "EASY 50 \"Peaceful Easy Feeling\"",
                "sv": "EASY 50 \"Peaceful Easy Feeling\"",
                "en": "EASY 50 \"Peaceful Easy Feeling\""
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/47A774D2D164D2BDF332B49CEB5D818A/EASY_50_Peaceful_Easy_Feeling_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/47A774D2D164D2BDF332B49CEB5D818A/EASY_50_Peaceful_Easy_Feeling_",
                "en": "http://www.malmitalo.fi/en/events/event/47A774D2D164D2BDF332B49CEB5D818A/EASY_50_Peaceful_Easy_Feeling_"
            },
            "description": {
                "fi": "<p>Suomen vanhimman ja tunnetuimman EAGLES-tribuuttibändin juhlahumu jatkuu!</p><p>Juhlahumuun onkin syytä, sillä viime vuonna EASYn perustamisesta tuli kuluneeksi 50 vuotta ja comebackista 10 vuotta. <br> <br><b>EASY</b><br>Bändi nimeltä Musakatit perustettiin vuonna 1974.  Pian bändin jäsenet huomasivat, että nimi edusti huonosti yhtyeen tyyliä ja musiikkia.  Suosikki-lehden nimiehdotuskilpailun tuloksena bändi sai nyt uuden nimen, EASY. Yhtye keikkaili ahkerasti seitsemän vuoden ajan tehden yli 400 keikkaa. <br> <br>Pitkän tauon jälkeen yhtye teki yllättävän comebackin esiintymällä kesällä 2014 <br>Tribute Band Festivaaleilla Helsingissä, esittäen Eagles-yhtyeen musiikkia. Menestyksekkään comebackin innostamana EASY päätti jatkaa jälleen keikkailua.  Nykyään konserteissa EASY esittää palvomaansa Eagles- yhtyeen musiikkia, siksi nimeen on lisätty tarkennus \"The Eagle Tribute Band\". <br> <br>EASYn kokoonpanoon kuuluu nykyään kolme alkuperäisjäsentä: Petteri Kokljuschkin, Sami Javne ja Roni Kamras, sekä kaksi nuoremman polven huippu laulajakitaristia: Lappe Holopainen ja Tomi Juustila (29 v). Yhtyeeseen kuuluu myös Linda Ronstadtia tulkitseva upeaääninen pianisti Katri Silolahti. <br> <br><b>EASY THE EAGLES TRIBUTE BAND</b><br>EASY tarjoaaa tänään mahdollisuuden päästä nauttimaan ja fiilistelemään livenä Eaglesin suurimpia hittejä, jotka ovat suurimmaksi osaksi Yhdysvaltojen eniten myydyn (yli 100 miljoonaa levyä) The Greatest Hits 1971–1975 -albumin poimintoja.</p><p>The Eagles Tribute Band EASY täyttää konserttisalit ja hullaannuttaa yleisönsä kerta toisensa jälkeen ihastuttavalla lavaesiintymisellään ja hätkähdyttävän tarkalla Eagles tulkinnoillaan.  <br> <br>Kesto 2 t, sis. 15 min väliajan</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suomen vanhimman ja tunnetuimman EAGLES-tribuuttibändin juhlahumu jatkuu!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65964/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66170",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1169714,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T06:13:53.190737Z",
                    "last_modified_time": "2025-07-03T06:13:53.190753Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772416.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1169714/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-03T06:13:53.071281Z",
            "last_modified_time": "2025-07-04T08:12:37.965111Z",
            "date_published": null,
            "start_time": "2025-10-18T08:00:00Z",
            "end_time": "2025-10-18T11: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,
            "name": {
                "fi": "Annantalon taidelauantai: Yökukkujat",
                "sv": "Annegårdens konstlördag: Nattugglor",
                "en": "Annantalo Art Saturday: Yökukkujat – Night Owls"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9817273C1DB6A9EB2771F705D8728858/Annantalon_taidelauantai_Yokukkujat",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9817273C1DB6A9EB2771F705D8728858/Annegardens_konstlordag_Nattugglor",
                "en": "http://www.annantalo.fi/en/events/event/9817273C1DB6A9EB2771F705D8728858/Annantalo_Art_Saturday_Yokukkujat_Night_Owls"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Yökukkujat</b></p><p>Mitä öisessä metsässä lymyää? Tuntuuko sinusta joskus pimeässä siltä, että jokin kurkistaa kannon takaa tai piilottelee puussa? Voisiko se olla eläin tai mielikuvitusolento? Tässä Annantalon taidelauantain (t)yöpajassa tehdään paperista ja kartongista yllättävästi esiin ponnahtava otus. Kukkuu!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaikenkielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat. <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Nattugglor</b></p><p>Vad döljer sig i den nattliga skogen? Känns det ibland som att någon kikar fram bakom en stubbe eller gömmer sig i ett träd i mörkret? Kan det vara ett djur eller en fantasifigur? I den här workshoppen under Annegårdens konstlördag får du göra en varelse av papper och kartong som överraskande hoppar fram. Tittut!</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. <br>Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Yökukkujat – Night Owls</b></p><p>What is hiding in a forest at night? Do you sometimes feel like someone is peeking behind a tree stump in the dark, or hiding up in a tree? Could it be an animal or some imaginary creature? In this Annantalo Art Saturday workshop, you will get to create a fun pop-up creature from paper and cardstock. Peekaboo!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66170/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66400",
            "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:33/?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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/breloque-theatre-group-bright-spots-eye-catchers-malmitalo-20312633/",
                        "sv": "https://www.lippu.fi/event/breloque-theatre-group-bright-spots-eye-catchers-malmitalo-20312633/",
                        "en": "https://www.lippu.fi/event/breloque-theatre-group-bright-spots-eye-catchers-malmitalo-20312633/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178024,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T07:14:02.821240Z",
                    "last_modified_time": "2025-07-04T07:14:02.821258Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774067.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178024/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T07:14:02.700381Z",
            "last_modified_time": "2025-07-04T08:12:37.825340Z",
            "date_published": null,
            "start_time": "2025-10-16T15: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,
            "name": {
                "fi": "Breloque Theatre Group: BRIGHT SPOTS & EYE-CATCHERS – Värikkäitä seikkailuja ajassa",
                "sv": "Teatergruppen Breloque: Bright spots & Eye catchers – Färgglada äventyr i tiden",
                "en": "Breloque Theatre Group: BRIGHT SPOTS & EYE-CATCHERS"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/67E93C69C5351F33F7ABEE3149581B05/Breloque_Theatre_Group_BRIGHT_SPOTS_EYE-CATCHERS_Varikkaita_seikkailuja_ajassa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/67E93C69C5351F33F7ABEE3149581B05/Teatergruppen_Breloque_Bright_spots_Eye_catchers_Fargglada_aventyr_i_tiden",
                "en": "http://www.malmitalo.fi/en/events/event/67E93C69C5351F33F7ABEE3149581B05/Breloque_Theatre_Group_BRIGHT_SPOTS_EYE-CATCHERS"
            },
            "description": {
                "fi": "<p>Värikäs musiikkia, kuvataidetta ja teatteria yhdistelevä esitys kaikille yli kolmevuotiaille</p><p>Taidemaalari Daniela Kasperer, näyttelijä Andreas Simma ja muusikko Yorgos Pervolarakis tulkitsevat tarinan ihmiselämästä käänteisessä järjestyksessä: esitys alkaa vanhuudesta ja sen aikajana kelautuu hitaasti takaisin taaperoikään ja vauva-aikaan. Kuvat, äänet, leikki ja ihmissuhteet muodostavat narratiivin siitä, mitä on tapahtunut ja mitä on kuviteltu. Esitys tarjoaa inhimillisyyttä ja ihmisyyttä paljaimmillaan, niin hauskuutta ja väriä kuin syvällistä ja kepeääkin, ja tähtää nautinnon ja ilon tuottamiseen.</p><p>Päällekkäiset tekstin ja kuvan tasot muuttuvat taas näkyviksi kun niiden pintaa raaputtaa, kuin palimpsestissa. BRIGHT SPOTS & EYE CATCHERS avaa uusia näkökulmia elämään, jossa olisi voinut käydä aivan toisinkin. Se on täynnä toisiinsa liittyviä kuvia ja muuttuvia musiikin ja oikukkaan leikin tasoja, jotka on suunnattu niin vanhoille kuin nuorillekin. <br> <br>Ja vielä yksi kysymys: Oletko koskaan yrittänyt maalata elämää?</p><p>Luova ryhmä<br>Tuotannon kehitys: luova ryhmä<br>Ohjaaja, outside eye: Myrto Dimitriadou<br>Lavastus, outside eye: Ragna Heiny<br>Musiikki (sävellys ja tulkinta): Yorgos Pervolarakis <br>Esiintyjä: Andreas Simma <br>Maalaus: Daniela Kasperer</p><p>Sanaton<br>Kesto 35 min<br>Ikäsuositus 3–90-vuotiaille</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20329430/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>En färgsprakande föreställning full av musik, måleri och teaterkonst för alla över 3 år</p><p>Konstnären Daniela Kasperer, skådespelaren Andreas Simma och musikern Yorgos Pervolarakis tolkar historien om ett människoliv berättat i omvänd ordning: med början i ålderdomen och långsamt rullande tillbaka till småbarn och baby. Bilder och ljud, lek och relationer blir till en berättelse om vad som har hänt och vad som har fantiserats. Föreställningen bjuder på det mänskliga och det alltför mänskliga, det roliga och det färgstarka, det djupsinniga och det tokiga, och har inget mindre syfte än att skapa glädje och nöje.</p><p>Lager av text och bild som har lagts omlott görs synliga igen genom skrapning, som i en palimpsest. BRIGHT SPOTS & EYE-CATCHERS öppnar upp nya perspektiv på ett liv som kunde ha blivit helt annorlunda. Föreställningen är full av associerade bilder, skiftande musiklager och nyckfull lek, riktad till både unga och gamla. <br> <br>Och en sak till: Har du någonsin försökt måla ett liv?</p><p>Det konstnärliga teamet<br>Produktionsutveckling: det konstnärliga teamet<br>Regissör, det externa ögat: Myrto Dimitriadou<br>Scenografi, det externa ögat: Ragna Heiny<br>Musik (komposition och tolkning): Yorgos Pervolarakis <br>Skådespelare: Andreas Simma <br>Konstnär: Daniela Kasperer</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=”https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20329430/?affiliate=FSF#tab=”>HÄR</a></u></p>",
                "en": "<p>A colorful performance full of music, painting and theatre art for everyone over 3 years old!</p><p>The painter Daniela Kasperer, the actor Andreas Simma and the musician Yorgos Pervolarakis interpret the story of a human life, told in reverse order: starting at old age and slowly scrolling back to toddler and baby. Images and sounds, play and relationships become a narrative of what has happened and what has been imagined. The performance offers the human and the all-too-human, the funny and the colorfully, the profound and the silly, and has no less the intention than to create joy and pleasure.</p><p>Layers of text and image that have been superimposed are made visible again by scraping, as in a palimpsest. “BRIGHT SPOTS & EYE-CATCHERS” opens new perspectives on a life that could have turned out quite differently. It is full of associated images, changing layers of music and wayward play, aimed at young and old.</p><p>And one more thing: have you ever tried to paint a life?</p><p><b>The artistic team</b> <br>Production development: the artistic team <br>Director, outside eye: Myrto Dimitriadou <br>Set design, outside eye: Ragna Heiny <br>Music (composition & interpretation): Yorgos Pervolarakis  <br>Acting: Andreas Simma  <br>Painting: Daniela Kasperer</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20329430/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Värikäs musiikkia, kuvataidetta ja teatteria yhdistelevä esitys kaikille yli kolmevuotiaille",
                "sv": "En färgsprakande föreställning full av musik, måleri och teaterkonst för alla över 3 år",
                "en": "A colorful performance full of music, painting and theatre art for everyone over 3 years old!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66400/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66169",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1163762,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-02T12:12:33.953979Z",
                    "last_modified_time": "2025-07-02T12:12:33.953992Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772415.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1163762/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-02T12:12:33.907377Z",
            "last_modified_time": "2025-07-04T08:12:36.518526Z",
            "date_published": null,
            "start_time": "2025-10-04T08:00:00Z",
            "end_time": "2025-10-04T11: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,
            "name": {
                "fi": "Annantalon taidelauantai: Salarasia",
                "sv": "Annegårdens konstlördag: Den hemliga lådan",
                "en": "Annantalo Art Saturday: Secret box"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EA5FEC201D41CDC6BA74A6EDED72B44F/Annantalon_taidelauantai_Salarasia",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/EA5FEC201D41CDC6BA74A6EDED72B44F/Annegardens_konstlordag_Den_hemliga_ladan",
                "en": "http://www.annantalo.fi/en/events/event/EA5FEC201D41CDC6BA74A6EDED72B44F/Annantalo_Art_Saturday_Secret_box"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Salarasia</b><br>Minne kätkisit pienet aarteesi tai säilöisit kauneimmat muistosi? Tällä kertaa Annantalon taidelauantain työpajassa koristellaan salarasia ja rakennetaan sen sisälle aarre.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaikenkielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Den hemliga lådan</b><br>Var skulle du gömma små skatter eller dina bästa minnen? Den här gången får vi under Annegårdens konstlördag dekorera en hemlig låda och bygga en skatt i den.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Secret box</b><br>Where would you hide your small treasures or store your most beautiful memories? This time, the Annantalo Art Saturday’s workshop is for decorating a secret box and building a treasure inside it.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66169/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66492",
            "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:31/?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/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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "44,90 € / 34,90 €",
                        "sv": "44,90 € / 34,90 €",
                        "en": "44,90 € / 34,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/rick-estrin-the-nightcats-malmitalo-20313083/",
                        "sv": "https://www.lippu.fi/event/rick-estrin-the-nightcats-malmitalo-20313083/",
                        "en": "https://www.lippu.fi/event/rick-estrin-the-nightcats-malmitalo-20313083/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178357,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:35.995438Z",
                    "last_modified_time": "2025-07-04T08:12:35.995450Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774647.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178357/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:35.941879Z",
            "last_modified_time": "2025-07-04T08:12:36.069366Z",
            "date_published": null,
            "start_time": "2025-09-30T16: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,
            "name": {
                "fi": "Rick Estrin and the Nightcats",
                "sv": "Rick Estrin and the Nightcats",
                "en": "Rick Estrin and the Nightcats"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/798E758EF4E8BDBF9CC5969AB20E1342/Rick_Estrin_and_the_Nightcats",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/798E758EF4E8BDBF9CC5969AB20E1342/Rick_Estrin_and_the_Nightcats",
                "en": "http://www.malmitalo.fi/en/events/event/798E758EF4E8BDBF9CC5969AB20E1342/Rick_Estrin_and_the_Nightcats"
            },
            "description": {
                "fi": "<p>Yhdysvaltalaiset blueshuiput Rick Estrin & The Nightcats esiintyvät Malmitalossa!</p><p>Palkittu huuliharpisti ja laulaja-lauluntekijä Rick Estrin ja bändinsä The Nightcats hämmästyttävät musisoinnillaan ympäri maailmaa. Koko bändi koostuu maailmanluokan huippubluesmuusikoista.</p><p>Yleisö yltyy tanssimaan ja hurraamaan missä ikinä huuliharppuvirtuoosi Rick Estrin esiintyykään The Nightcats -yhtyeensä kanssa. Tarjolla on tuoretta ja modernia, mutta originaalia bluesia, roadhouse rock’n’rollilla höystettynä. Musiikillinen polku on omaperäinen, innovatiivinen ja monipuolinen, mutta aina bluesille uskollinen.</p><p>Kesto: 1 t 15min</p><p>Kokoonpano:<br>Rick Estrin: laulu, huuliharppu<br>Kid Andersen: kitara<br>Lorenzo Farrell: basso<br>Derrick D´Mar Martin: rummut</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Yhdysvaltalaiset blueshuiput Rick Estrin & The Nightcats esiintyvät Malmitalossa!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66492/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66394",
            "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:33/?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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/",
                        "sv": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/",
                        "en": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178356,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:35.339766Z",
                    "last_modified_time": "2025-07-04T08:12:35.339780Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774026.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178356/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:35.276842Z",
            "last_modified_time": "2025-07-04T08:12:35.442626Z",
            "date_published": null,
            "start_time": "2025-09-20T07: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,
            "name": {
                "fi": "AEIOU: Elämän kukka",
                "sv": "AEIOU: Elämän kukka",
                "en": "AEIOU: Elämän kukka"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka",
                "en": "http://www.malmitalo.fi/en/events/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka"
            },
            "description": {
                "fi": "<p>Elämän kukka on musiikin rytmittämä, sirkusta ja nukketeatteria yhdistävä sanaton vannetaide- ja esineteatteriesitys elämän kiertokulusta.</p><p>Vakavaa aihetta käsitellään elämänmyönteisesti. ”Ensin on siemen. Se itää, kasvaa, kukkii, pölyttyy, siementää ja kuihtuu. ”</p><p>Ikäsuositus: 6 kk + <br>Kieli: Sanaton<br>Kesto: 30 min</p><p>Elämän kukalle myönnettiin Slovenian Teatteri-instituutin Laatumerkki 2020.<br> <br>Käsikirjoitus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Ohjaus: Katja Kähkönen, Katja Povše, Mateja Ocepek<br>Vannekoreografia: Henna Matanuska<br>Lavastus ja puvustus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Kukkahame: Iztok Hrga<br>Musiikki: Gregor Zemljič</p><p>Esiintyjät: Henna Matanuska, Katja Kähkönen<br>Kuvat ja video: Heikki Järvinen<br>Tuottaja: Vauva- ja taaperoteatteri AEIOU<br>Yhteistyökumppanit: Lasten ja taiteiden talo, Ljubljana, Lastenkulttuurikeskus Rulla, Tampereen kulttuuripalvelut<br>Suomen ensi-ilta: marraskuu 2020, Monitoimitalo 13, Tampere<br>Slovenian ensi-ilta: lokakuu 2021, Bobri-festivaali, Lasten ja taiteiden talo, Ljubljana<br>Esitystä ovat tukeneet Taiteen edistämiskeskus, Samuel Huberin taidesäätiö, Alli Paasikiven Säätiö, Suomen Kulttuurirahasto, Pirkanmaan Kulttuurirahasto, Alfred Kordelinin säätiö ja Ljubljanan kulttuuritoimi.</p><p>Esitys päiväkotiryhmille pe 19.9. klo 10 varattavissa kultus.hel.fi kautta.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Elämän kukka on musiikin rytmittämä, sirkusta ja nukketeatteria yhdistävä sanaton vannetaide- ja esineteatteriesitys elämän kiertokulusta."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66394/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65947",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1050988,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-18T10:13:48.726278Z",
                    "last_modified_time": "2025-06-18T10:13:48.726294Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769540.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1050988/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-06-18T10:13:48.630580Z",
            "last_modified_time": "2025-07-04T08:12:33.233382Z",
            "date_published": null,
            "start_time": "2025-08-23T08:00:00Z",
            "end_time": "2025-08-23T11: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,
            "name": {
                "fi": "Annantalon taidelauantai: Omakuvakollaasi",
                "sv": "Annegårdens konstlördagar: Kollage med självporträtt",
                "en": "Annantalo Art Saturdays: Self-portrait collage"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0509E5312D49EB3AFB96C85EBC2AE3BA/Annantalon_taidelauantai_Omakuvakollaasi",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0509E5312D49EB3AFB96C85EBC2AE3BA/Annegardens_konstlordagar_Kollage_med_sjalvportratt_",
                "en": "http://www.annantalo.fi/en/events/event/0509E5312D49EB3AFB96C85EBC2AE3BA/Annantalo_Art_Saturdays_Self-portrait_collage_"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Omakuvakollaasi</b></p><p>Tervetuloa tutkimaan taidehistoriaa ja löytämään innostusta eri aikakausilta! Onko sinussa vivahdus rokokooromantiikkaa tai kubistista kulmikkuutta? Innostutko poptaiteen värikylläisyydestä? Viehättääkö sinua barokin mahtipontisuus vai minimalismi? Annantalon taidelauantaissa teemme omakuvakollaaseja hyödyntäen eri taidesuuntauksia edustavia kuvia. Leikkaamme, liimaamme ja yhdistelemme elementtejä esimerkiksi kubismista, poptaiteesta, surrealismista sekä impressionismista - kukin oman tyylinsä ja tunnelmansa mukaan.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaikenkielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Kollage med självporträtt</b></p><p>Välkommen att utforska konsthistorien och få inspiration från olika tider! Finns det en ton av rokokoromantik eller kubistisk kantighet i dig? Blir du inspirerad av popkonstens färgmättnad? Gillar du barockens svulstighet eller minimalism? Under Annegårdens konstlördagar gör vi kollage av självporträtt med bilder som representerar olika konstriktningar. Vi klipper, klistrar och kombinerar element från till exempel kubism, popkonst, surrealism och impressionism – var och en enligt sin egen stil och känsla.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Self-portrait collage</b></p><p>Come by to explore art history and draw inspiration from the different eras! Maybe there’s a hint of Rococo romance in you, or a touch of cubistic edginess? Do the bright colours of pop art inspire you? Are you drawn to the bombastic baroque or to sleek minimalism? This Annantalo Art Saturday will be spent making self-portrait collages using images representing the different art trends. We will cut, mix and glue together elements from trends such as cubism, pop art, surrealism and impressionism – whichever suits your style and feeling.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65947/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22otsy",
            "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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ozva/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-07-04T07:15:34.121069Z",
            "last_modified_time": "2025-07-04T07:15:34.121084Z",
            "date_published": null,
            "start_time": "2025-12-03T08:00:00Z",
            "end_time": "2025-12-03T10: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,
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta &nbsp;17.9.–3.12.2025 keskiviikkoisin klo 10:00–12:00.</p><p>Ajanvaraus Tapiolan kirjastosta tai puhelimitse p. 050 428 9392</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p>Tapiolan kirjasto</p><p>Kulttuuriaukio 2</p><p>02100 ESPOO</p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22otsy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22oudi",
            "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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ozva/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-07-04T07:15:33.964725Z",
            "last_modified_time": "2025-07-04T07:15:33.964742Z",
            "date_published": null,
            "start_time": "2025-11-26T08:00:00Z",
            "end_time": "2025-11-26T10: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,
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta &nbsp;17.9.–3.12.2025 keskiviikkoisin klo 10:00–12:00.</p><p>Ajanvaraus Tapiolan kirjastosta tai puhelimitse p. 050 428 9392</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p>Tapiolan kirjasto</p><p>Kulttuuriaukio 2</p><p>02100 ESPOO</p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oudi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22ouuq",
            "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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ozva/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-07-04T07:15:33.822024Z",
            "last_modified_time": "2025-07-04T07:15:33.822039Z",
            "date_published": null,
            "start_time": "2025-11-19T08:00:00Z",
            "end_time": "2025-11-19T10: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,
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta &nbsp;17.9.–3.12.2025 keskiviikkoisin klo 10:00–12:00.</p><p>Ajanvaraus Tapiolan kirjastosta tai puhelimitse p. 050 428 9392</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p>Tapiolan kirjasto</p><p>Kulttuuriaukio 2</p><p>02100 ESPOO</p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ouuq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22ovf4",
            "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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ozva/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-07-04T07:15:33.684494Z",
            "last_modified_time": "2025-07-04T07:15:33.684513Z",
            "date_published": null,
            "start_time": "2025-11-12T08:00:00Z",
            "end_time": "2025-11-12T10: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,
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta &nbsp;17.9.–3.12.2025 keskiviikkoisin klo 10:00–12:00.</p><p>Ajanvaraus Tapiolan kirjastosta tai puhelimitse p. 050 428 9392</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p>Tapiolan kirjasto</p><p>Kulttuuriaukio 2</p><p>02100 ESPOO</p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ovf4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22ovxq",
            "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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ozva/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-07-04T07:15:33.537931Z",
            "last_modified_time": "2025-07-04T07:15:33.537969Z",
            "date_published": null,
            "start_time": "2025-11-05T08:00:00Z",
            "end_time": "2025-11-05T10: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,
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta &nbsp;17.9.–3.12.2025 keskiviikkoisin klo 10:00–12:00.</p><p>Ajanvaraus Tapiolan kirjastosta tai puhelimitse p. 050 428 9392</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p>Tapiolan kirjasto</p><p>Kulttuuriaukio 2</p><p>02100 ESPOO</p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ovxq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22owhy",
            "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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ozva/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-07-04T07:15:33.160992Z",
            "last_modified_time": "2025-07-04T07:15:33.161010Z",
            "date_published": null,
            "start_time": "2025-10-29T08:00:00Z",
            "end_time": "2025-10-29T10: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,
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta &nbsp;17.9.–3.12.2025 keskiviikkoisin klo 10:00–12:00.</p><p>Ajanvaraus Tapiolan kirjastosta tai puhelimitse p. 050 428 9392</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p>Tapiolan kirjasto</p><p>Kulttuuriaukio 2</p><p>02100 ESPOO</p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22owhy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22owxi",
            "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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ozva/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-07-04T07:15:32.839151Z",
            "last_modified_time": "2025-07-04T07:15:32.839169Z",
            "date_published": null,
            "start_time": "2025-10-22T07:00:00Z",
            "end_time": "2025-10-22T09: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,
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta &nbsp;17.9.–3.12.2025 keskiviikkoisin klo 10:00–12:00.</p><p>Ajanvaraus Tapiolan kirjastosta tai puhelimitse p. 050 428 9392</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p>Tapiolan kirjasto</p><p>Kulttuuriaukio 2</p><p>02100 ESPOO</p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22owxi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}