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=11&weekday=6%2C7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 4966,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=12&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=10&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:66656",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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": 1469242,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-12T11:13:55.636349Z",
                    "last_modified_time": "2025-08-12T11:13:55.636366Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775481.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1469242/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-12T11:13:55.511276Z",
            "last_modified_time": "2025-09-10T13:14:28.570871Z",
            "date_published": null,
            "start_time": "2025-09-17",
            "end_time": "2025-10-19",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Mad Corridors: Contemporary comics and zines on madness from India and Finland – Helsingin sarjakuvafestivaalit 2025",
                "sv": "Mad Corridors: Contemporary comics and zines on madness from India and Finland – Helsinki Comics Festival 2025",
                "en": "Mad Corridors: Contemporary comics and zines on madness from India and Finland – Helsinki Comics Festival 2025"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/051C306F8A989CB477257A7E1AAEE386/Mad_Corridors_Contemporary_comics_and_zines_on_madness_from_India_and_Finland",
                "sv": "http://www.stoa.fi/sv/evenemang/event/051C306F8A989CB477257A7E1AAEE386/Mad_Corridors_Contemporary_comics_and_zines_on_madness_from_India_and_Finland",
                "en": "http://www.stoa.fi/en/events/event/051C306F8A989CB477257A7E1AAEE386/Mad_Corridors_Contemporary_comics_and_zines_on_madness_from_India_and_Finland"
            },
            "description": {
                "fi": "<p>Näyttely tutkii ajatuksia hulluudesta, mielen ongelmista ja toipumisesta sarjakuvien ja pienlehtien kautta.</p><p>Näyttelyn eteläaasialaistaustaiset taitelijat Intiasta ja Suomesta kertovat tarinoita, jotka ovat sekä henkilökohtaisia että poliittisia. Teoksissa paljastetaan, miten epäoikeudenmukaisuus ja sorto muokkaavat mieltämme, sekä tutkitaan hoivan ja vastarinnan tekoja ja ilon hetkiä vaikeuksien keskellä.</p><p>Taiteilijat:<br>Siddesh Gautam, Amanda Tikkanen, Anpu Varkey, Manjula Padmanabhan Kadak Collective: (Featuring Aarthi Parthasarathy & Shreyas R Krishnan, Aleesha Nandhra, Aravani Art Project, Upasana Agarwal & Nandini Moitra, Aziza, Baljinder Kaur, Divya Kandukuri & Shrujana Shridhar, Sabba Khan, Gopika Bashi & Kaveri Gopalakrishnan, Mrigaja Bajracharya, Xinaneo). Kutti Terävä, Zina Marpe, Punit Hiremath, Taneli Kemppi, The Circle Poetry Collective (Jamie Lee, Aino Rahkonen, Sofia Sylvia), Rikki Project (Apila Pepita, Siiri Viljakka, H-P Ontto-Panula and Paju Ruotsalainen), Renuka Rajiv.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Den här utställningen utforskar uppfattningar om galenskap, psykiskt lidande och läkande genom serier och zines.</p><p>I utställningen presenterar konstnärer med sydasiatisk härkomst från Indien och Finland berättelser som är både personliga och politiska. Verken avslöjar hur orättvisa och förtryck formar våra sinnen och utforskar handlingar av omsorg, motstånd och stunder av glädje under jobbiga tider.</p><p>Konstnärer:<br>Siddesh Gautam, Amanda Tikkanen, Anpu Varkey, Manjula Padmanabhan Kadak Collective: (Featuring Aarthi Parthasarathy & Shreyas R Krishnan, Aleesha Nandhra, Aravani Art Project, Upasana Agarwal & Nandini Moitra, Aziza, Baljinder Kaur, Divya Kandukuri & Shrujana Shridhar, Sabba Khan, Gopika Bashi & Kaveri Gopalakrishnan, Mrigaja Bajracharya, Xinaneo). Kutti Terävä, Zina Marpe, Punit Hiremath, Taneli Kemppi, The Circle Poetry Collective (Jamie Lee, Aino Rahkonen, Sofia Sylvia), Rikki Project (Apila Pepita, Siiri Viljakka, H-P Ontto-Panula and Paju Ruotsalainen), Renuka Rajiv.</p>",
                "en": "<p>This exhibition explores notions of madness, mental distress and healing through comics and zines.</p><p>In the exhibition artists of South Asian descent from India and Finland present narratives that are both personal and political. These works reveal how injustice and oppression shape our minds and explore acts of care, resistance, and moments of joy in times of struggle.</p><p>Artists:<br>Siddesh Gautam, Amanda Tikkanen, Anpu Varkey, Manjula Padmanabhan Kadak Collective: (Featuring Aarthi Parthasarathy & Shreyas R Krishnan, Aleesha Nandhra, Aravani Art Project, Upasana Agarwal & Nandini Moitra, Aziza, Baljinder Kaur, Divya Kandukuri & Shrujana Shridhar, Sabba Khan, Gopika Bashi & Kaveri Gopalakrishnan, Mrigaja Bajracharya, Xinaneo). Kutti Terävä, Zina Marpe, Punit Hiremath, Taneli Kemppi, The Circle Poetry Collective (Jamie Lee, Aino Rahkonen, Sofia Sylvia), Rikki Project (Apila Pepita, Siiri Viljakka, H-P Ontto-Panula and Paju Ruotsalainen), Renuka Rajiv.</p>"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Näyttely tutkii ajatuksia hulluudesta, mielen ongelmista ja toipumisesta sarjakuvien ja pienlehtien kautta.",
                "sv": "Den här utställningen utforskar uppfattningar om galenskap, psykiskt lidande och läkande genom serier och zines.",
                "en": "This exhibition explores notions of madness, mental distress and healing through comics and zines."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66656/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66753",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:758/?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": "20 € / 17,80 / 0 €",
                        "sv": "20 € / 17,80 / 0 €",
                        "en": "20 € / 17,80 / 0 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347620/",
                        "sv": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347620/",
                        "en": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347620/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1255730,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T09:14:08.649845Z",
                    "last_modified_time": "2025-07-14T09:14:08.649865Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774906.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255730/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T09:14:08.508444Z",
            "last_modified_time": "2025-09-10T13:14:26.819072Z",
            "date_published": null,
            "start_time": "2025-09-12T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Klubi-ilta: Atomirotta",
                "sv": "Klubi-ilta: Atomirotta",
                "en": "Klubi-ilta: Atomirotta"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D5CE02B8404B6EFCA1830B3657061B7D/Klubi-ilta_Atomirotta",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D5CE02B8404B6EFCA1830B3657061B7D/Klubi-ilta_Atomirotta",
                "en": "http://www.vuotalo.fi/en/events/event/D5CE02B8404B6EFCA1830B3657061B7D/Klubi-ilta_Atomirotta"
            },
            "description": {
                "fi": "<p>Atomirotta aloittaa jälleen Vuotalosta perinteisen Lähiö-kiertueensa!</p><p>”On suuri ilo ja kunnia jälleen startata Vuotalolta meidän perinteinen Lähiö-rundimme ja tietysti myös toimia legendaarisen venuen syyskauden itseoikeutettuna käyntiinpolkaisijana! Ja nämähän ovat aina todella upeita ja uniikkeja vetoja, koska perheen pienimmätkin pääsevät mukaan joraamaan! Hyvän mielen paikka numero yksi!”, yhtye iloitsee.</p><p>Ystävänpäivänä 2014 perustettu Atomirotta on alusta asti seurannut vanhaa hienoa viisautta: tekemällä oppii! Yhtye on pitänyt aina langat täysin omissa käsissään ja vaalinut tiukasti hienoa DIY-perinnettä.<br> <br>Vuonna 2025 on kulunut yksitoista vuotta: viisi albumia, lukuisia kulta- ja platinasinkkuja, oma levy-yhtiö, ohjelmatoimisto ja verkkokauppa sekä satoja räjäyttäviä keikkoja ennakkoluulottomasti kuumilta lähiöklubeilta aina suurimmille festarilavoille, joilla Atomirotalle on sementoitu maine yhtenä maamme kovimmista ja tinkimättömimmistä live-bändeistä!<br> <br>Kesto: 75 min (ei väliaikaa)<br>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa.<br>Sali avautuu klo 17.30.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Hanki Jässäri ja lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/klubi-ilta-helsingin-kaupunki-nuorisolippu-vuotalo-20470579/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Atomirotta startar igen sin traditionella förortsturné från Nordhuset!</p><p>\"Det är ett stort nöje och en ära att återigen få starta vår traditionella förortsturné på Nordhuset och naturligtvis också att få vara den berättigade inledaren av den legendariska evenemangsplatsens höstsäsong! Och det här är alltid riktigt bra och unika evenemang, eftersom även de yngsta familjemedlemmarna kan vara med! Den främsta platsen för gott humör!\", säger bandet glatt.<br> <br>Atomirotta grundades på alla hjärtans dag 2014 och har alltid följt ett gammalt ordspråk: övning ger färdighet! Bandet har alltid hållit tyglarna helt i sina egna händer och har alltid strikt upprätthållit en fin DIY-tradition.<br> <br>År 2025 har elva år gått: fem album, många guld- och platinasinglar, eget skivbolag, artistförmedling och webbutik, och hundratals explosiva spelningar från heta förortsklubbar till de största festivalscenerna, vilket har cementerat Atomirottas rykte som ett av de tuffaste och mest kompromisslösa livebanden i landet!</p><p>Längd: 75 minuter (utan paus)<br>Klubbkväll: Café Pokkari står för serveringen, A-rättigheter. Under 18 år i sällskap med en vuxen.<br>Dörrarna till salen öppnas kl. 17.30.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. 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/klubi-ilta-helsingin-kaupunki-nuorisolippu-vuotalo-20470579/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Once again, Atomirotta will start their traditional Lähiö (‘Suburb’) tour at Vuotalo!</p><p>“It is a great pleasure and honour to once again start our traditional Lähiö tour at Vuotalo and, of course, to also be the self-appointed kickstarter of the autumn season of this legendary venue! And these are always really great and unique gigs, because even the youngest members of the family can join the fun! The number one feelgood place!” the band enthuses.<br> <br>Founded on Valentine’s Day 2014, Atomirotta has always followed a great old adage: you learn by doing! The band has always kept the reins completely in their own hands and has always strictly maintained a fine DIY tradition.<br> <br>In 2025, eleven years have passed: five albums, numerous gold and platinum singles, the band’s own record label, promotion agency and online store, and hundreds of explosive gigs with no prejudice from hot suburban clubs to the biggest festival stages, cementing Atomirotta’s reputation as one of the best and most uncompromising live bands in the country!</p><p>Duration: 75 min (no intermission)<br>Club night: catering by Café Pokkari, licensed to serve alcohol. People under the age of 18 must be accompanied by an adult.<br>The doors of the hall will open at 17.30.</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. 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/klubi-ilta-helsingin-kaupunki-nuorisolippu-vuotalo-20470579/?affiliate=FSF\">HERE</a></u></p>"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Atomirotta aloittaa jälleen Vuotalosta perinteisen Lähiö-kiertueensa!",
                "sv": "Atomirotta startar igen sin traditionella förortsturné från Nordhuset!",
                "en": "Once again, Atomirotta will start their traditional Lähiö (‘Suburb’) tour at Vuotalo!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66753/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:72639948-6848-413a-8db1-d32d61c5b53a",
            "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/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=199_luotu_nyttely_UAT3817503121"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1490744,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-10T12:29:08.608086Z",
                    "last_modified_time": "2025-09-10T12:29:08.608100Z",
                    "name": "linked events sivulla kuvateksti",
                    "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/aa9d7115-06d3-ef11-8eea-000d3adf4af4",
                    "cropping": "",
                    "photographer_name": "linkedevents sivulla kuvaajan nimi",
                    "alt_text": "linked events sivulla alt-teksti",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490744/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                }
            ],
            "created_time": "2025-09-10T12:07:51.368927Z",
            "last_modified_time": "2025-09-10T12:29:09.112007Z",
            "date_published": "2025-09-10T10:49:23Z",
            "start_time": "2025-09-15T05:00:00Z",
            "end_time": "2025-10-01T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 7,
            "audience_max_age": 100,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 10000,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-09-15T08:00:00+03:00",
            "enrolment_end_time": "2025-09-15T16:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "19.9. luotu näyttely UAT"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Tapahtuman kuvaus suomeksi.</p><p>&nbsp;</p><p>Mokattu myöhemmin.</p></div>"
            },
            "provider": {
                "fi": "Annantalo"
            },
            "location_extra_info": {
                "fi": "Aula"
            },
            "short_description": {
                "fi": "Tapahtuman lyhyt kuvaus suomeksi."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:72639948-6848-413a-8db1-d32d61c5b53a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:bbefe8e8-9edc-48ad-8360-fc4766d7476c",
            "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/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=UAT_nyttely_Milka_10920251803753836"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1490743,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-10T12:28:37.867119Z",
                    "last_modified_time": "2025-09-10T12:28:37.867133Z",
                    "name": "Vihreä testikuva",
                    "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/a99d7115-06d3-ef11-8eea-000d3adf4af4",
                    "cropping": "",
                    "photographer_name": "Milka Salonen",
                    "alt_text": "Vihreä kuva, jossa lukee Testikuva 222 x 222 px",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490743/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "created_time": "2025-09-10T12:07:51.305598Z",
            "last_modified_time": "2025-09-10T12:28:38.202510Z",
            "date_published": "2025-09-10T10:49:12Z",
            "start_time": "2025-10-01T05:00:00Z",
            "end_time": "2025-10-31T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 8,
            "audience_max_age": 99,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 1000,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-09-10T08:00:00+03:00",
            "enrolment_end_time": "2025-10-01T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "UAT näyttely Milka 10.9.2025",
                "zh_hans": "中文:我喜欢"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Näyttely lapsenmielisille<br>Näyttely kaikesta mukavasta</p></div>",
                "zh_hans": "<div><p>学习新的语言。<br>Lisätietoja</p><p>&nbsp;</p></div>"
            },
            "provider": {
                "fi": "ABC Yritys OY",
                "zh_hans": "学习新的"
            },
            "location_extra_info": {
                "fi": "Annansali",
                "zh_hans": "的语言。"
            },
            "short_description": {
                "fi": "Näyttely kaikesta mukavasta",
                "zh_hans": "学习新的语言。"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:bbefe8e8-9edc-48ad-8360-fc4766d7476c/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:2521b85d-4b86-4e49-8806-4b5cd362cd62",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:77550/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Tm_on_testi_-nyttely982971620"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1490742,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-10T12:28:08.490394Z",
                    "last_modified_time": "2025-09-10T12:28:08.490412Z",
                    "name": "Hieno leipä",
                    "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/332b6bba-3a8e-f011-b4cc-7ced8d7420c5",
                    "cropping": "",
                    "photographer_name": "Kuvapankki",
                    "alt_text": "Kuvassa on leipä",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490742/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "created_time": "2025-09-10T12:07:51.246665Z",
            "last_modified_time": "2025-09-10T12:28:08.879847Z",
            "date_published": "2025-09-10T10:53:34Z",
            "start_time": "2025-11-01T08:00:00Z",
            "end_time": "2025-12-01T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 15,
            "audience_max_age": 100,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 5000,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-11-01T08:00:00+02:00",
            "enrolment_end_time": "2025-12-01T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Tämä on testi! -näyttely",
                "zh_hans": "项目成果的展览"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Näyttely erään hankkeen tuotoksista</p></div>",
                "zh_hans": "<div><p>项目成果的展览</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p></div>"
            },
            "provider": {
                "fi": "Helsingin kaupunki",
                "zh_hans": "赫尔辛基市"
            },
            "location_extra_info": {
                "fi": "Huvilan piha-alue"
            },
            "short_description": {
                "fi": "Kuvaus tekstistä",
                "zh_hans": "项目成果的展览"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:2521b85d-4b86-4e49-8806-4b5cd362cd62/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmthud4vy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/lyckokattervocal/?locale=fi_FI",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/lyckokattervocal/",
                    "language": "fi"
                }
            ],
            "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": 1490745,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-10T12:22:07.063399Z",
                    "last_modified_time": "2025-09-10T12:22:07.063414Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/98631bac-598b-4daa-a28c-7a7cbd77a123.jpg",
                    "cropping": "420,0,1505,1084",
                    "photographer_name": "Ana Belcic",
                    "alt_text": "Perhosia beigellä pohjalla, sekä teksti \"Wings of light, wings of life - International repertoire for hig voices\"",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490745/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-10T12:25:49.133278Z",
            "last_modified_time": "2025-09-10T12:25:49.133296Z",
            "date_published": "2025-09-10T12:10:00Z",
            "start_time": "2025-10-04T11:00:00Z",
            "end_time": "2025-10-04T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Wings of Light, Wings of Life - International repertoire for high voices",
                "sv": "Wings of Light, Wings of Life - International repertoire for high voices",
                "en": "Wings of Light, Wings of Life - International repertoire for high voices"
            },
            "info_url": null,
            "description": {
                "fi": "<p><strong>Lyckokatter Vocal Ensemble est. 2017</strong></p><p>Taiteellinen johtaja Kristina Bogataj esittää</p><p>Syksyn kirjastosarja:</p><p>WINGS OF LIGHT, WINGS OF LIFE - International repertoire for high voices.</p><p>Lyckokatter Vocal Ensemble (2017–) on Tapiolassa toimiva kansainvälinen a cappella -yhtye, jossa lauletaan sopraano- ja alttoäänillä. Yhtyeen taiteellinen johtaja on Kristina Bogataj, slovenialainen kuoronjohtaja ja mezzosopraano.</p><p>Seuraa LKK:</p><p>Instagram: @lyckokattervocal</p><p>Facebook: Lyckokatter Vocal Ensemble</p><p>Info:&nbsp;lyckokattervocal@gmail.com</p><p><br></p><p>Design: Ana Belcic</p>",
                "sv": "<p><strong>Lyckokatter Vocal Ensemble est. 2017</strong></p><p>Konstnärlig ledare Kristina Bogataj presenterar</p><p>Höstens biblioteksserie: WINGS OF LIGHT, WINGS OF LIFE</p><p>Lyckokatter Vocal Ensemble (2017–) är en internationell a cappella-grupp med sopran- och altstämmor, baserad i Hagalund. Deras konstnärliga ledare är Kristina Bogataj, slovensk körledare och mezzosopran.</p><p><br></p><p>Följ LKK:</p><p>Instagram: @lyckokattervocal</p><p>Facebook: Lyckokatter Vocal Ensemble</p><p>Info:&nbsp;lyckokattervocal@gmail.com</p><p>Design: Ana Belcic</p>",
                "en": "<p><strong>Lyckokatter Vocal Ensemble est. 2017</strong></p><p>Artistic leader Kristina Bogataj presents</p><p>Autumn Library Series:</p><p>WINGS OF LIGHT, WINGS OF LIFE - International repertoire for high voices.</p><p>Lyckokatter Vocal Ensemble (2017–) is a Tapiola-based international a capella group of soprano and alto voices. Their artistic leader is Kristina Bogataj, a Slovenian choral conductor and mezzosoprano.</p><p><br></p><p>Follow LKK:</p><p>Instagram: @lyckokattervocal</p><p>Facebook:&nbsp;Lyckokatter Vocal Ensemble</p><p>Info:&nbsp;lyckokattervocal@gmail.com</p><p><br></p><p>Design: Ana Belcic</p>"
            },
            "provider": {
                "fi": "Lyckokatter Vocal Ensemble",
                "sv": "Lyckokatter Vocal Ensemble",
                "en": "Lyckokatter Vocal Ensemble"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Lyckokatter Vocal Ensemble (2017–) on Tapiolassa toimiva kansainvälinen a cappella -yhtye, jossa lauletaan sopraano- ja alttoäänillä.",
                "sv": "Lyckokatter Vocal Ensemble (2017–) är en internationell a cappella-grupp med sopran- och altstämmor, baserad i Hagalund.",
                "en": "Lyckokatter Vocal Ensemble (2017–) is a Tapiola-based international a capella group of soprano and alto voices."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmthud4vy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:abf4648b-e4e6-4ccd-b4ef-c9b041db6029",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:22971/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0",
                        "ru": "0"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Karpaloinen_kastrulli3276654418"
                    },
                    "description": {
                        "fi": "Ei!",
                        "ru": "Njet!"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1490739,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-10T12:25:06.628164Z",
                    "last_modified_time": "2025-09-10T12:25:06.628179Z",
                    "name": "AI-rämmäle, joka ei liity tapahtumaan",
                    "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9",
                    "cropping": "",
                    "photographer_name": "Belsebuubi",
                    "alt_text": "Joku AI rämmäle kehissä",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "created_time": "2025-09-10T12:07:51.343063Z",
            "last_modified_time": "2025-09-10T12:25:07.040284Z",
            "date_published": "2025-09-10T10:53:32Z",
            "start_time": "2025-09-27T05:00:00Z",
            "end_time": "2025-10-25T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 8,
            "audience_max_age": 100,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 10000,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-09-27T08:00:00+03:00",
            "enrolment_end_time": "2025-09-27T17:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Karpaloinen kastrulli",
                "ru": "Da daa"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Lorem ipsum karpalom parpalom jarpalom</p></div>",
                "ru": "<div><p>Студент работает с близкой и вокруг клюквенной темы.</p><p>&nbsp;</p></div>"
            },
            "provider": {
                "fi": "Annantalo",
                "ru": "Аннантало"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Oppilastöitä karpaloaiheen läheltä ja ympäriltä.",
                "ru": "Njet!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:abf4648b-e4e6-4ccd-b4ef-c9b041db6029/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:81f84a2a-9e9f-40dc-9219-53fe353ac8ac",
            "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/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Annin_oma_nyttely1230047382"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1490731,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-10T12:18:51.731764Z",
                    "last_modified_time": "2025-09-10T12:18:51.731778Z",
                    "name": "näyttelykuva",
                    "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/b64288a3-3a8e-f011-b4cc-000d3ab33a80",
                    "cropping": "",
                    "photographer_name": "Noomi Ljungdell",
                    "alt_text": "kuvaaja kuvaa pimiössä",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490731/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "created_time": "2025-09-10T12:07:51.186863Z",
            "last_modified_time": "2025-09-10T12:18:52.250871Z",
            "date_published": "2025-09-10T10:52:35Z",
            "start_time": "2025-10-13T05:00:00Z",
            "end_time": "2025-10-31T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 100,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 300,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-09-10T08:00:00+03:00",
            "enrolment_end_time": "2025-09-26T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Annin oma näyttely"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>pitempi kuvaus näyttelystä</p></div>"
            },
            "provider": {
                "fi": "Annantalo"
            },
            "location_extra_info": {
                "fi": "alagalleria"
            },
            "short_description": {
                "fi": "lyhyt kuvaus näyttelystä jee"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:81f84a2a-9e9f-40dc-9219-53fe353ac8ac/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67003",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490726,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-10T12:14:55.067752Z",
                    "last_modified_time": "2025-09-10T12:14:55.067775Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773705.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490726/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-10T12:14:54.940327Z",
            "last_modified_time": "2025-09-10T12:14:55.229122Z",
            "date_published": null,
            "start_time": "2025-11-30T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Poropudas & Savolainen: Object trouvé",
                "sv": "Poropudas & Savolainen: Object trouvé",
                "en": "Poropudas & Savolainen: Object trouvé"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/7370DCE36CDF75653106985EE84784E2/Poropudas_Savolainen_Object_trouv_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/7370DCE36CDF75653106985EE84784E2/Poropudas_Savolainen_Object_trouv_",
                "en": "http://www.stoa.fi/en/events/event/7370DCE36CDF75653106985EE84784E2/Poropudas_Savolainen_Object_trouv_"
            },
            "description": {
                "fi": "<p>Object trouvé ilakoi sattumanvaraisuudessa, jossa tuntematon maasto luo jatkuvaa neuvottelua loputtomien mahdollisuuksien tiellä.</p><p>Object trouvé mielikuvailee, draamailee ja tavoittelee mahdottomuutta. Abstrakti teos kytkeytyy tanssiin, jossa Merce Cunningham on kummitus ja teoksen kohtalo määrittyy osaksi chance-metodin eli sattumanvaraisuuden keinoin.</p><p>Teos kutsuu esiin olevaisuutta, joka ilmentyy ja purkautuu moninaisilla tavoilla tulvahtaen tähän hetkeen. Esiintyjät tanssivat ihmeellisyyttä, joka elää rinnan ääni- ja valomaiseman kanssa. Merce Cunninghamista inspiroitunut geometrisuus, tarkkuus, ajallisuus ja energia rakentavat kompositiota Object trouvélle, jonka avulla työryhmä tarkastelee näiden elementtien kiinnittymistä tähän hetkeen.</p><p>Teos on samanaikaisesti liikkeen ja musiikin duetto, joka täyttyy vastakkaisista suunnista ja voimista antaen myös tilaa harmonialle ja yhteneväisyydelle. Musiikki ja liike avaavat yhdessä näkymän kummalliseen todellisuuteen, jossa yllätyksellisyys sekä tarkkuus (linjakkuus) vuorottelevat. Tanssi muodostaa kaavoja ja sääntöjä, jotka sattumanvaraisesti hajoavat uudenlaisiin suuntiin.</p><p><b>Työryhmän esittely</b><br>Object trouvé -työryhmään kuuluvat tanssitaiteilija-esiintyjät Pinja Poropudas ja Marjukka Savolainen sekä äänisuunnittelija Antti Mäki. Kollektiivinen työskentely pohjaa Merce Cunninghamin ja John Cagen yhteistyötavoista inspiroituneeseen metodiin sekä sattumanvaraisuuteen. Työryhmän jäsenet ovat kokeneita sarallaan, mutta yhdistävät voimansa tällä kokoonpanolla ensimmäistä kertaa, tarkoituksenaan luoda kestävää jatkumoa yhteiselle taiteen tekemiselle.</p><p><b>Teoksen tukijat</b><br>Teosta on ollut tukemassa Jenny ja Antti Wihurin rahasto, Kansan Sivistysrahasto, Taiteen edistämiskeskus sekä Liisa Pentti + Co:n kesäresidenssi 2024. Teoksen aihioista nähtiin myös hetkessä syntynyt katkelma Liisa Pentti + Co:n Improsyksy 2024 -tapahtumassa.</p>",
                "sv": "<p>Object trouvé är en duett om rörelse och musik, som fylls från motsatta sidor och krafter genom att ge utrymme även harmoni och kongruens.</p><p>Verket öppnar vyn till en underlig verklighet, där oförutsägbarheten, geometriska former och stilfullheten växlar genom att skapa och söndra såväl överenskomna regler som planer.</p><p><b>Presentation av arbetsgruppen</b><br>Object trouvé-arbetsgruppen omfattar danskonstnärerna Pinja Poropudas och Marjukka Savolainen samt ljudplaneraren Antti Mäki. Det kollektiva arbetssättet grundar sig på en metod som inspirerats av Merce Cunninghams och John Cages samarbetssätt samt slumpmässighet. Medlemmarna i arbetsgruppen är erfarna i sin sektor, men slår ihop sina styrkor med denna sammansättning för första gången, med avsikt att skapa en hållbar fortsättning för gemensamt skapande av konst.</p>",
                "en": "<p>Object trouvé is a duet of movement and music, filled with opposing directions and forces, while also giving space to harmony and congruence.</p><p>The work offers a view into a strange reality where the unexpected alternates with geometric shapes and linearity, forming and breaking both established rules and patterns.</p><p><b>Presentation of the working group</b><br>The Object trouvé team includes dance artists Pinja Poropudas and Marjukka Savolainen and sound designer Antti Mäki. Their collective work is based on a method inspired by the collaborative methods of Merce Cunningham and John Cage, as well as on randomness. The members of the working group are all experienced in their fields, but are now joining forces for the first time with this composition, with the aim of creating a sustainable continuum of collective creation of art.</p>"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Object trouvé ilakoi sattumanvaraisuudessa, jossa tuntematon maasto luo jatkuvaa neuvottelua loputtomien mahdollisuuksien tiellä.",
                "sv": "Object trouvé är en duett om rörelse och musik, som fylls från motsatta sidor och krafter genom att ge utrymme även harmoni och kongruens.",
                "en": "Object trouvé is a duet of movement and music, filled with opposing directions and forces, while also giving space to harmony and congruence."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67003/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66789",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1359526,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-28T09:14:03.140913Z",
                    "last_modified_time": "2025-07-28T09:14:03.140929Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773704.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1359526/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-28T09:14:02.991040Z",
            "last_modified_time": "2025-09-10T12:14:54.570854Z",
            "date_published": null,
            "start_time": "2025-11-29T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Poropudas & Savolainen: Object trouvé – ENSI-ILTA",
                "sv": "Poropudas & Savolainen: Object trouvé – PREMIÄR",
                "en": "Poropudas & Savolainen: Object trouvé – PREMIERE"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/107D2ECF4432E874C93362177EC7CD69/Poropudas_Savolainen_Object_trouv_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/107D2ECF4432E874C93362177EC7CD69/Poropudas_Savolainen_Object_trouv_",
                "en": "http://www.stoa.fi/en/events/event/107D2ECF4432E874C93362177EC7CD69/Poropudas_Savolainen_Object_trouv_"
            },
            "description": {
                "fi": "<p>Object trouvé ilakoi sattumanvaraisuudessa, jossa tuntematon maasto luo jatkuvaa neuvottelua loputtomien mahdollisuuksien tiellä.</p><p>Object trouvé mielikuvailee, draamailee ja tavoittelee mahdottomuutta. Abstrakti teos kytkeytyy tanssiin, jossa Merce Cunningham on kummitus ja teoksen kohtalo määrittyy osaksi chance-metodin eli sattumanvaraisuuden keinoin.</p><p>Teos kutsuu esiin olevaisuutta, joka ilmentyy ja purkautuu moninaisilla tavoilla tulvahtaen tähän hetkeen. Esiintyjät tanssivat ihmeellisyyttä, joka elää rinnan ääni- ja valomaiseman kanssa. Merce Cunninghamista inspiroitunut geometrisuus, tarkkuus, ajallisuus ja energia rakentavat kompositiota Object trouvélle, jonka avulla työryhmä tarkastelee näiden elementtien kiinnittymistä tähän hetkeen.</p><p>Teos on samanaikaisesti liikkeen ja musiikin duetto, joka täyttyy vastakkaisista suunnista ja voimista antaen myös tilaa harmonialle ja yhteneväisyydelle. Musiikki ja liike avaavat yhdessä näkymän kummalliseen todellisuuteen, jossa yllätyksellisyys sekä tarkkuus (linjakkuus) vuorottelevat. Tanssi muodostaa kaavoja ja sääntöjä, jotka sattumanvaraisesti hajoavat uudenlaisiin suuntiin.</p><p><b>Työryhmän esittely</b><br>Object trouvé -työryhmään kuuluvat tanssitaiteilija-esiintyjät Pinja Poropudas ja Marjukka Savolainen sekä äänisuunnittelija Antti Mäki. Kollektiivinen työskentely pohjaa Merce Cunninghamin ja John Cagen yhteistyötavoista inspiroituneeseen metodiin sekä sattumanvaraisuuteen. Työryhmän jäsenet ovat kokeneita sarallaan, mutta yhdistävät voimansa tällä kokoonpanolla ensimmäistä kertaa, tarkoituksenaan luoda kestävää jatkumoa yhteiselle taiteen tekemiselle.</p><p><b>Teoksen tukijat</b><br>Teosta on ollut tukemassa Jenny ja Antti Wihurin rahasto, Kansan Sivistysrahasto, Taiteen edistämiskeskus sekä Liisa Pentti + Co:n kesäresidenssi 2024. Teoksen aihioista nähtiin myös hetkessä syntynyt katkelma Liisa Pentti + Co:n Improsyksy 2024 -tapahtumassa.</p>",
                "sv": "<p>Object trouvé är en duett om rörelse och musik, som fylls från motsatta sidor och krafter genom att ge utrymme även harmoni och kongruens.</p><p>Verket öppnar vyn till en underlig verklighet, där oförutsägbarheten, geometriska former och stilfullheten växlar genom att skapa och söndra såväl överenskomna regler som planer.</p><p><b>Presentation av arbetsgruppen</b><br>Object trouvé-arbetsgruppen omfattar danskonstnärerna Pinja Poropudas och Marjukka Savolainen samt ljudplaneraren Antti Mäki. Det kollektiva arbetssättet grundar sig på en metod som inspirerats av Merce Cunninghams och John Cages samarbetssätt samt slumpmässighet. Medlemmarna i arbetsgruppen är erfarna i sin sektor, men slår ihop sina styrkor med denna sammansättning för första gången, med avsikt att skapa en hållbar fortsättning för gemensamt skapande av konst.</p>",
                "en": "<p>Object trouvé is a duet of movement and music, filled with opposing directions and forces, while also giving space to harmony and congruence.</p><p>The work offers a view into a strange reality where the unexpected alternates with geometric shapes and linearity, forming and breaking both established rules and patterns.</p><p><b>Presentation of the working group</b><br>The Object trouvé team includes dance artists Pinja Poropudas and Marjukka Savolainen and sound designer Antti Mäki. Their collective work is based on a method inspired by the collaborative methods of Merce Cunningham and John Cage, as well as on randomness. The members of the working group are all experienced in their fields, but are now joining forces for the first time with this composition, with the aim of creating a sustainable continuum of collective creation of art.</p>"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Object trouvé ilakoi sattumanvaraisuudessa, jossa tuntematon maasto luo jatkuvaa neuvottelua loputtomien mahdollisuuksien tiellä.",
                "sv": "Object trouvé är en duett om rörelse och musik, som fylls från motsatta sidor och krafter genom att ge utrymme även harmoni och kongruens.",
                "en": "Object trouvé is a duet of movement and music, filled with opposing directions and forces, while also giving space to harmony and congruence."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66789/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67002",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:646/?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: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": 1490717,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-10T11:14:53.527700Z",
                    "last_modified_time": "2025-09-10T11:14:53.527719Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777074.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490717/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-10T11:14:53.379562Z",
            "last_modified_time": "2025-09-10T12:14:54.094308Z",
            "date_published": null,
            "start_time": "2025-11-29T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Kumppanieläin-työpaja & Death Cafe – Kun aika on -näyttelyn oheisohjelmaa",
                "sv": "Kumppanieläin-työpaja & Death Cafe",
                "en": "Kumppanieläin-työpaja & Death Cafe"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9BA0CB8166065D1D280F65B7679EE77C/Kumppanielain-tyopaja_Death_Cafe",
                "sv": "http://www.stoa.fi/sv/evenemang/event/9BA0CB8166065D1D280F65B7679EE77C/Kumppanielain-tyopaja_Death_Cafe",
                "en": "http://www.stoa.fi/en/events/event/9BA0CB8166065D1D280F65B7679EE77C/Kumppanielain-tyopaja_Death_Cafe"
            },
            "description": {
                "fi": "<p>Kun on aika päästää irti rakkaasta lemmikistä, muistojen vaaliminen auttaa surussa.</p><p>Tervetuloa työpajaan, jossa voit jakaa ajatuksia ja tunteita muiden samassa tilanteessa olevien kanssa ja luoda samalla kauniin, käsintehdyn muistoesineen sydänystävällesi - pussin, rasian tai pesän.</p><p><b>Mitä työpajassa tapahtuu?</b></p><p>Tapahtuma alkaa keskustelulla, jossa jaetaan kokemuksia ja ideoita. Näiden ideoiden pohjalta pääset suunnittelemaan ja valmistamaan pussin, rasian tai pesän, joka on tarkoitettu lemmikin tuhkan säilyttämiseen tai maahan hautaamiseen. Tässä työpajassa emme tavoittele teknisesti vaativia ratkaisuja, vaan luovuutta ja yhteisöllisyyttä.<br> <br>Työpajaa ohjaavat kokeneet muotoilun, taiteen ja käsityön ammattilaiset: keramiikkataiteilija Leena Mäki-Patola, tekstiilitaiteilija Mervi Vuolas ja muotoilija Hanna van Ingen. He kaikki ovat mukana myös KUN AIKA ON -näyttelyssä, joten tämä on ainutlaatuinen tilaisuus tavata heidät ja kuulla heidän ajatuksiaan.</p><p><b> Aikataulut</b></p><p>klo 11–12 Death Café - Kuolemankahvila<br>klo 12–15 Kumppanieläin-työpaja</p><p><b>Osallistuminen ja materiaalit</b></p><p>Työpaja on maksuton ja toimii nyyttikesti-periaatteella. Materiaaleja on käytössä rajoitetusti, joten tuo mukanasi maatuvia materiaaleja esim. kangasta, narua, puunpalasia, pahvisia rasioita sekä pieniä työvälineitä kuten sakset, neula, viivoitin, liima, jaettavaksi muiden osallistujien kanssa. <br> <br>Paikkoja on rajoitetusti, joten ilmoittaudu nopeasti! Mukaan mahtuu 10 henkilöä ilmoittautumisjärjestyksessä.<br> <br><b>Death Café - Kuolemankahvila ennen työpajaa</b><br>Ennen työpajaa on mahdollista osallistua Death Caféen, jota uskontotieteilijä Pauli Jyrkinewsky isännöi. Kuolemankahvila on avoin keskustelutilaisuus, jossa ihmiset kokoontuvat keskustelemaan kumppanieläinten menettämisestä ja surun käsittelystä. Tavoitteena on lisätä kuoleman kohtaamisen luonnollisuutta.<br> <br>Voit osallistua kumppanieläin-työpajaan ilman kahvilaa tai tulla vain kahvilaan ilman työpajaa. Valitse itsellesi sopivin vaihtoehto ja saavu paikalle kokemaan ja keskustelemaan.<br> <br><b>Ilmoittautumiset työpajaan:</b></p><p>23.11.2025 mennessä osoitteeseen nayttelyt@taiteilijato.fi</p><p>Tapahtuman tuottaa  <br>Taiteilijat O ry https://taiteilijato.fi/<br> <br>Yhteistyössä <br>Kulttuurikeskus Stoa https://www.stoa.fi/ <br>Death Café https://deathcafe.com/what/</p>"
            },
            "provider": {
                "fi": "Taiteilijat O ry https://taiteilijato.fi/"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Kun on aika päästää irti rakkaasta lemmikistä, muistojen vaaliminen auttaa surussa."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67002/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:c3312ca8-3acd-448e-812c-d2ab93b8682f",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Uusi_nyttelyprojekti_1093192332245"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1490720,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-10T12:07:49.032588Z",
                    "last_modified_time": "2025-09-10T12:07:49.032604Z",
                    "name": "Näyttämö",
                    "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/5309159a-3a8e-f011-b4cc-000d3ab0762c",
                    "cropping": "",
                    "photographer_name": "Valo Kuvaaja",
                    "alt_text": "Piirretty Näyttämö kuva",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490720/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "created_time": "2025-09-10T12:07:51.404250Z",
            "last_modified_time": "2025-09-10T12:07:51.404270Z",
            "date_published": "2025-09-10T10:52:35Z",
            "start_time": "2025-09-22T05:00:00Z",
            "end_time": "2025-10-12T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 10,
            "audience_max_age": 99,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 200,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-09-10T08:00:00+03:00",
            "enrolment_end_time": "2025-09-11T23:30:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Uusi näyttelyprojekti 10.9.",
                "en": "New exhibition"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Kaikkea kivaa paljon.</p></div>",
                "en": "<div><p>Loads on nice things</p></div>"
            },
            "provider": {
                "fi": "ABC yritys"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Kaikkea kivaa.",
                "en": "Everything nice"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:c3312ca8-3acd-448e-812c-d2ab93b8682f/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z7nli",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490114,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T10:25:06.430379Z",
                    "last_modified_time": "2025-08-13T10:25:06.430393Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2d081ebb-7a3c-493c-9385-ce2d3df7354b.jpg",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Laura H / Silent Book Club",
                    "alt_text": "Taustalla rauhallinen huone, etualalla Silent Book Clubin logo ja teksti Tapiolan kirjasto",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490114/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-13T10:48:19.846760Z",
            "last_modified_time": "2025-09-10T12:01:13.814072Z",
            "date_published": "2025-08-13T10:23:00Z",
            "start_time": "2025-09-13T10:00:00Z",
            "end_time": "2025-09-13T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Hiljainen lukupiiri Tapiolan kirjasto",
                "sv": "Tyst bokcirkel Hagalunds bibliotek",
                "en": "Silent Book Club Tapiola Library"
            },
            "info_url": {
                "fi": "https://silentbook.club/",
                "sv": "https://silentbook.club/",
                "en": "https://silentbook.club/"
            },
            "description": {
                "fi": "<p>Ohjelma</p><p>13:00-13:30 - Saapuminen, kerro muille, mitä olet lukemassa</p><p>13:30-14:30 - Hiljainen lukutunti</p><p>14:30-15:00 - Jatka lukemista, tai keskustele kirjoista yhdessä</p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Program:</p><p>13:00-13:30 - Ankomst, berätta för övriga deltagare vad du läser</p><p>13:30-14:30 - En timme tyst läsning</p><p>14:30-15:00 - Fortsätt läsa eller diskutera böckerna tillsammans med andra</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Program</p><p>1:00-1:30pm - Arrival, share what you are reading</p><p>1:30-2:30pm - Quiet reading hour</p><p>2:30-3:00pm - Optional socializing, or just keep reading</p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider": null,
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "short_description": {
                "fi": "1. Kerro muille, mitä olet lukemassa\n2. Hiljainen lukutunti\n3. Jatka lukemista, tai keskustele kirjoista yhdessä",
                "sv": "1. Berätta för övriga deltagare vad du läser\n2. En timme tyst läsning\n3. Fortsätt läsa eller diskutera böckerna tillsammans med andra",
                "en": "1. Share what you are reading\n2. Quiet reading hour\n3. Optional socializing, or just keep reading"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7nli/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z5scq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "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:agmk2z5py4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5qly/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5q5u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5rqy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490101,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-05T07:23:52.622754Z",
                    "last_modified_time": "2024-01-05T07:23:52.622775Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Tyyne.png",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Tummanruskea kiharakarvainen koira laiturilla.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490101/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-08-15T05:57:16.220490Z",
            "last_modified_time": "2025-09-10T12:00:24.185000Z",
            "date_published": null,
            "start_time": "2025-09-18T15:00:00Z",
            "end_time": "2025-12-11T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Lukukoira Tyyne",
                "sv": "Läshund Tyyne",
                "en": "Reading Dog Tyyne "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Lukukoira Tyyne odottaa innolla lukijoita Tapiolan kirjastoon.</p><p>to 18.9.</p><p>to 16.10.</p><p>to 13.11.</p><p>to 11.12.</p><p>Klo 18-19:00.</p><p>Tervetuloa!</p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Läshund Tyyne ser fram emot läsare på Tapiola biblioteket kl. 18-19.</p><ul><li>to 18.9.</li><li>to 16.10.</li><li>to 13.11.</li><li>to 11.12.</li></ul><p>Välkommen!</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Reading DogTyyne is eagerly awaiting readers at Tapiola Library from 6pm to 7pm.</p><ul><li>to 18.9.</li><li>to 16.10.</li><li>to 13.11.</li><li>to 11.12.</li></ul><p>Welcome!</p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider": null,
            "location_extra_info": {
                "fi": "Lastenosasto",
                "sv": "Barnavdelningen",
                "en": "Children’s Department"
            },
            "short_description": {
                "fi": "Lukukoira Tyyne odottaa innolla lukijoita Tapiolan kirjastoon klo 18-19.",
                "sv": "Läshund Tyyne ser fram emot läsare på Tapiola biblioteket kl. 18-19.",
                "en": "Reading DogTyyne is eagerly awaiting readers at Tapiola Library from 18:00 to 19:00."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5scq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmlz4r3qa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "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:agmlz4ruqe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4ru6a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rvj4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rvwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rwci/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rwoa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rw2a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rxga/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rxsm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rx6m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4ryly/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4ryxq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rzdu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rzpu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rz5e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4r2ki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4r2xi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4r3du/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150422,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-27T12:30:08.869964Z",
                    "last_modified_time": "2023-11-27T12:30:19.230971Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/151122Kielikahvila_mainos_680_x_382_px.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Piirrettyjä ihmisiä keltaisella taustalla. Puhekuplissa Tervetuloa, Solmu kielikahvila, moi. Yläkulmassa eläkeliiton logo.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150422/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-18T10:45:28.017856Z",
            "last_modified_time": "2025-09-10T11:59:30.905778Z",
            "date_published": null,
            "start_time": "2025-08-20T13:00:00Z",
            "end_time": "2025-12-17T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Solmu - suomen kielen kielikahvila",
                "sv": "Solmu - det finska språkkaféet",
                "en": "Solmu - the Finnish language cafe"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea. Myös aloittelijat ovat tervetulleita.</p><p>Kielikahvilaan ei tarvitse ilmoittautua etukäteen. Mukaan voi tulla koska tahansa.</p><p>Kielikahvilassa opit puhumaan arkielämän suomen kieltä. Kielikahvilassa pääset puhumaan suomea suomalaisten kanssa.</p><p>Tervetuloa mukaan!</p><p>#HelloEspoo</p>",
                "sv": "<p>Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. Nybörjare är också välkomna.</p><p>Du behöver inte anmäla dig till språkcaféet i förväg. Du kan komma när som helst.</p><p>I språkcaféet får du lära dig att tala det finska vardagsspråket. I språkcaféet kan du prata finska med finländare.</p><p>Välkommen ombord!</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>A language cafe for speaking Finnish, free and open to everyone. You can participate in the language cafe if you want to learn to speak Finnish. Beginners are also welcome.</p><p>You do not need to register for the language cafe in advance. You can come anytime.</p><p>In the language cafe, you will learn to speak the Finnish language of everyday life. In the language cafe you can speak Finnish with Finns.</p><p>Welcome aboard!</p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider": {
                "fi": "Eläkeliiton Espoon yhdistyksen vapaaehtoiset",
                "sv": "Frivilliga från Eläkeliitto Espoo-föreningen",
                "en": "Volunteers from the Eläkeliitto Espoo Association"
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "short_description": {
                "fi": "Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea.",
                "sv": "Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska.",
                "en": "A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4r3qa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmssfgjne",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "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:agmssfgg5u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfghli/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfghyi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfgiei/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfgiqa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfgi6u/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490656,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T13:25:37.472364Z",
                    "last_modified_time": "2024-12-18T13:25:37.472429Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/d8fe99ce-d70d-4b1b-8f3c-eebcbc92b7f3.jpg",
                    "cropping": "136,0,954,818",
                    "photographer_name": "",
                    "alt_text": "Kaksi 3D-tulostettua hahmoa 3D-tulostetun kyltin päällä, jossa lukee PAJA.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490656/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-08T10:38:53.625820Z",
            "last_modified_time": "2025-09-10T11:55:42.693284Z",
            "date_published": null,
            "start_time": "2025-10-09T13:00:00Z",
            "end_time": "2025-12-18T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Paja tutuksi kaikille",
                "sv": "Verkstad för alla",
                "en": "Makerspace for all"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule tutustumaan pajan laitteisiin ja mahdollisuuksiin.&nbsp;</p><p>Annamme opastusta 3D-tulostimien, vinyylileikkurin, saumurin ja ompelukoneen käyttöön. Ota oma puuvillainen vaate tms. mukaan, jos haluat painaa siihen kuvan tai tekstin. Vaihtoehtoisesti voit tehdä tarran.</p><p>Tulostus- ja vinyylimateriaalin tarjoaa kirjasto.</p><p>Ohjausta tarjotaan suomeksi ja englanniksi.&nbsp;</p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Kom och bekanta dig med verkstadens utrustning och möjligheter.</p><p>Vi ger handledning i användning av 3D-skrivare, vinylskärare, overlockmaskin och symaskin. Ta med ett eget bomullsplagg eller liknande om du vill trycka en bild eller text på det. Alternativt kan du göra en klistermärke.</p><p>Biblioteket tillhandahåller utskrifts- och vinylmaterial.</p><p>Vägledning ges på finska och engelska.</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Come and explore the equipment and possibilities of the workshop.</p><p>We provide guidance on using 3D printers, a vinyl cutter, an overlock machine, and a sewing machine. Bring your own cotton garment or similar item if you want to print an image or text on it. Alternatively, you can make a sticker.</p><p>The library provides the printing and vinyl materials.</p><p>Guidance is available in Finnish and English.</p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Verkstad",
                "en": "Maker Space"
            },
            "short_description": {
                "fi": "Tervetuloa tutustumaan Tapiolan kirjaston Pajaan.",
                "sv": "Välkommen att lära dig hur du använder 3D-skrivare, vinylskärare, overlockmaskin och symaskin.",
                "en": "Welcome to learn how to use a 3D printers, a vinyl cutter, an overlock machine, and a sewing machine."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfgjne/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmtgy66my",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "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:agmtgy6waq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6wxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6xgu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6xuy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6yea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6yua/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6zpe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6z6a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy62pe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy624u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy63ki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy63yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy64gi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy64uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy653i/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490718,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-10T10:51:14.952642Z",
                    "last_modified_time": "2025-09-10T10:51:14.952662Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/031d391e-8af2-4858-a51e-1371b4523900.png",
                    "cropping": "162,0,437,275",
                    "photographer_name": "",
                    "alt_text": "Huone, jossa leluja.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490718/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-10T11:07:48.776228Z",
            "last_modified_time": "2025-09-10T11:07:48.776244Z",
            "date_published": null,
            "start_time": "2025-09-15T07:00:00Z",
            "end_time": "2025-12-22T09:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Naapuriäidit perhekahvila",
                "en": "Neighbourhood Mother´s family cafe"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tämä kahvila on tarkoitettu vanhemmille ja pienille lapsille rentouttavaan ajanviettoon. Sen ohjaavat naapuriäidit Kreeta ja Azin. Kahvila on maksuton.&nbsp;</p><p>Syksyn ajat: 1.9.-22.12. joka maanantai klo 10.00-11.30. </p><p>Pääasiallinen puhuttu kieli on englanti. </p><p>#helloespoo</p>",
                "en": "<p>This cage is for parents and small children to have a relaxing time. It is run by volunteers and it´s free of charge.</p><p>Autumn timings: 1.9-22.12. every monday, 10.00-11.30. </p><p>The main spoken language is english. </p><p>#helloespoo</p>"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tämä kahvila on tarkoitettu vanhemmille ja pienille lapsille rentouttavaan ajanviettoon. Sen ohjaavat naapuriäidit Kreeta ja Azin. Kahvila on maksuton. ",
                "en": "This cage is for parents and small children to have a relaxing time. It is run by volunteers and it´s free of charge."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy66my/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z7a4i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z65vu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z66ju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z67ba/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z67wu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7aja/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-08-13T12:17:56.618234Z",
            "last_modified_time": "2025-09-10T10:54:16.049420Z",
            "date_published": null,
            "start_time": "2025-09-19T10:15:00Z",
            "end_time": "2025-12-12T12:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Välkky Karakallion asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13:15 - 14:15</p><ul><li>19.9.</li><li>31.10.</li><li>28.11. </li><li>12.12.</li></ul>",
                "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.15 - 14.15</p><ul><li>19.9.</li><li>31.10.</li><li>28.11. </li><li>12.12.</li></ul>",
                "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:15 - 14:15.</p><ul><li>19.9.</li><li>31.10.</li><li>28.11. </li><li>12.12.</li></ul>"
            },
            "provider": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7a4i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmtgy763u",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": null,
            "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:agmtgy665e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy67sm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7ami/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7bau/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7bve/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7cna/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7dh4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7ebq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7eyu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7fqm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7gf4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7hqy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7ify/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7jqi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7kfq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7k6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7lrq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7me4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7mya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7nma/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7oa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7oyu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7pry/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7qje/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7u2q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy725i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy73te/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy74ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy745u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy75ry/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy76gm/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-10T10:21:27.676043Z",
            "last_modified_time": "2025-09-10T10:21:27.676063Z",
            "date_published": null,
            "start_time": "2025-09-19T12:00:00Z",
            "end_time": "2026-05-15T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. -luokkalaisille",
                "sv": "Spelhobbygruppen Minecraft-äventyrare för åk 3-6",
                "en": "Gaming hobby group for Minecraft adventurers for 3rd-6th graders"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan harrastajaryhmä tukenasi sekä otat vastaan kaikki pelin tuomat haasteet yhdessä muiden kanssa!</p><p>Ilmoittautuminen harrastusryhmiin käynnistyy torstaina 21.8. alkaen. Harrastusryhmät alkavat viikolla 37 maanantaista 8.9.2025 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Osallistumiseen on mahdollista saada tukea. Ilmoittautumisen yhteydessä kerrothan lapsen mahdollisista tuen tarpeista tai muista huomioitavista asioista, jotta harrastuksen järjestäjä voi ottaa ne huomioon toiminnassaan ja sujuvoittaa osallistumista.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta. Harrastusryhmissä on myös mahdollista käydä tutustumassa ennen ilmoittautumista.&nbsp;&nbsp;</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita.&nbsp;</p>",
                "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra!</p><p>Anmälan till hobbygrupperna öppnas torsdagen den 21&nbsp;augusti. Hobbygrupperna börjar vecka 37, måndagen den 8&nbsp;september 2025. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Det är möjligt att få stöd för deltagandet. Berätta i samband med anmälan om barnets eventuella stödbehov eller annat som ska tas i beaktande så att hobbyanordnaren kan planera sin verksamhet och göra deltagandet smidigare.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn. Det är också möjligt att bekanta sig med hobbygrupperna före anmälan.&nbsp;&nbsp;</p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum.&nbsp;</p>",
                "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with the support of a group of fellow gamers and face all the challenges posed by the game together with others!</p><p>Registration for hobby groups will open on Thursday 21 August. Hobby groups will start&nbsp;in week 37, on Monday, 8 September 2025 onwards. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. Support for participation is available. When registering, please notify any support needs your child might have or if there is anything else of note, so that the hobby organiser can take it into account in their activities and make participating easier.</p><p>The organiser of the hobby group contacts the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your child’s participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up.&nbsp;&nbsp;</p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils in grades 3–9 and take place after school days at school premises, near the school or via remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo. The principles of a safer space are applied in the hobby groups.&nbsp;</p>"
            },
            "provider": {
                "fi": "Espoon harrastuspolku | XRoc",
                "sv": "Hobbystigen i Esbo | XRoc",
                "en": "Espoo Hobby Path | XRoc"
            },
            "location_extra_info": {
                "fi": "Yhteystiedot: harrastuskoordinaattori@xroc.gg",
                "sv": "Kontaktinformation: harrastuskoordinaattori@xroc.gg",
                "en": "Contact details: harrastuskoordinaattori@xroc.gg"
            },
            "short_description": {
                "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.",
                "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.",
                "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy763u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmtglelpu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": null,
            "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:agmtgldxly/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgldyhu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgldy3y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgldzra/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld2ee/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld2ym/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld3nm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld4bq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld4ve/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld5i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld54e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld6pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld7cm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld7wy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgleaom/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglebbq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglebuu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglech4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglec3e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgledoq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgleede/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgleev4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglefjq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglef6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglegsq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglehha/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgleh24/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgleiom/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglejce/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglejvu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgleki4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglek5i/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-10T10:17:08.793565Z",
            "last_modified_time": "2025-09-10T10:17:08.793584Z",
            "date_published": null,
            "start_time": "2025-09-12T13:00:00Z",
            "end_time": "2026-05-15T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. -luokkalaisille",
                "sv": "Spelhobbygruppen Minecraft-äventyrare för åk 3-6",
                "en": "Gaming hobby group for Minecraft adventurers for 3rd-6th graders"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan harrastajaryhmä tukenasi sekä otat vastaan kaikki pelin tuomat haasteet yhdessä muiden kanssa!</p><p>Ilmoittautuminen harrastusryhmiin käynnistyy torstaina 21.8. alkaen. Harrastusryhmät alkavat viikolla 37 maanantaista 8.9.2025 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Osallistumiseen on mahdollista saada tukea. Ilmoittautumisen yhteydessä kerrothan lapsen mahdollisista tuen tarpeista tai muista huomioitavista asioista, jotta harrastuksen järjestäjä voi ottaa ne huomioon toiminnassaan ja sujuvoittaa osallistumista.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta. Harrastusryhmissä on myös mahdollista käydä tutustumassa ennen ilmoittautumista.&nbsp;&nbsp;</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita.&nbsp;</p>",
                "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra!</p><p>Anmälan till hobbygrupperna öppnas torsdagen den 21&nbsp;augusti. Hobbygrupperna börjar vecka 37, måndagen den 8&nbsp;september 2025. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Det är möjligt att få stöd för deltagandet. Berätta i samband med anmälan om barnets eventuella stödbehov eller annat som ska tas i beaktande så att hobbyanordnaren kan planera sin verksamhet och göra deltagandet smidigare.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn. Det är också möjligt att bekanta sig med hobbygrupperna före anmälan.&nbsp;&nbsp;</p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum.&nbsp;</p>",
                "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with the support of a group of fellow gamers and face all the challenges posed by the game together with others!</p><p>Registration for hobby groups will open on Thursday 21 August. Hobby groups will start&nbsp;in week 37, on Monday, 8 September 2025 onwards. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. Support for participation is available. When registering, please notify any support needs your child might have or if there is anything else of note, so that the hobby organiser can take it into account in their activities and make participating easier.</p><p>The organiser of the hobby group contacts the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your child’s participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up.&nbsp;&nbsp;</p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils in grades 3–9 and take place after school days at school premises, near the school or via remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo. The principles of a safer space are applied in the hobby groups.&nbsp;</p>"
            },
            "provider": {
                "fi": "Espoon harrastuspolku | XRoc",
                "sv": "Hobbystigen i Esbo | XRoc",
                "en": "Espoo Hobby Path | XRoc"
            },
            "location_extra_info": {
                "fi": "Yhteystiedot: harrastuskoordinaattori@xroc.gg",
                "sv": "Kontaktinformation: harrastuskoordinaattori@xroc.gg",
                "en": "Contact details: harrastuskoordinaattori@xroc.gg"
            },
            "short_description": {
                "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.",
                "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.",
                "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglelpu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}