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 normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 25057,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=8",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=6"
    },
    "data": [
        {
            "id": "kulke:67155",
            "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:31/?format=api"
                },
                {
                    "@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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1491082,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-13T11:13:26.707824Z",
                    "last_modified_time": "2025-10-13T11:13:26.707836Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778246.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491082/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-13T11:13:26.440456Z",
            "last_modified_time": "2025-11-11T07:12:03.978045Z",
            "date_published": null,
            "start_time": "2025-11-19T16: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/6C61E57A121568A280EEEA8BEE2F9B08/Kertomuksia_Gazasta_-lukutilaisuus"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tilaisuudessa luetaan gazalaisten lasten ja nuorten sodan aikana kirjoittamia tekstejä suomeksi ja arabiaksi.</p><p>Kertomuksia Gazasta on inhimillinen kannanotto, jotta mahdollisimman moni kuulisi Gazan lasten ja nuorten kirjoittamat tekstit. Tarinat ovat todellisia ja tekstit on poimittu kahdesta kokoelmakirjasta, Här var vårt hus (2025) ja A Million Kites (2024).</p><p>“Palauttakaamme ihmisyys niille, joilta se on riistetty.”<br>- Amer Sarsour</p><p>Lukutilaisuudessa kuullaan sellomusiikkia ja nähdään pienimuotoinen tanssiesitys.</p><p>Sello: Lea Pekkala<br>Tanssiesitys: KATVE [blind spot] Company<br>Mukana järjestämässä: Lapinlahden Lähteen MIITTI -hanke</p><p>Tilaisuus järjestetään Stoan aulassa, vapaa pääsy.</p><p><b>Oi kuolema, odota hetki</b><br>Runon kirjoittanut Mariam Al-Khatib<br>ikä: tuntematon, Gaza</p><p>Haluan että minulta kysytään, kuinka hänet valitsen.<br>Yksin, kokonaisena, onnellisena.<br>Haluan, että minua varoitetaan<br>jotta ehdin laittaa hiukseni hienoksi ja laskea tähdet viimeisen kerran vielä.<br>Haluan kuolemani odottavan, ihan pienen hetken verran -<br>tuolla hiekan alla pääni<br>ja käteni taivaalla.<br>Haluan kuolla kummankin käteni<br>ainoan pääni<br>ja lukuisten unelmieni kanssa</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tilaisuudessa luetaan gazalaisten lasten ja nuorten sodan aikana kirjoittamia tekstejä suomeksi ja arabiaksi."
            },
            "provider": null,
            "name": {
                "fi": "Kertomuksia Gazasta -lukutilaisuus – KATVE [blind spot] Company"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67155/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67211",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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:p6529/?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": 1491202,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T13:13:27.348502Z",
                    "last_modified_time": "2025-10-27T13:13:27.348517Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778243.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491202/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T13:13:27.257553Z",
            "last_modified_time": "2025-11-10T16:13:07.337215Z",
            "date_published": null,
            "start_time": "2025-12-10T08:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/08EF8699C1C7E2F7453904DD8A2F309B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/08EF8699C1C7E2F7453904DD8A2F309B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "en": "http://www.annantalo.fi/en/events/event/08EF8699C1C7E2F7453904DD8A2F309B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. ESITYS ON TÄYTEEN VARATTU!</p><p>Esitys perustuu Charles Perrault'n tunnettuun satuun, jossa neuvokas kissa auttaa myllärinpoikaa seikkailuissaan. Tämä kiehtova esitys tempaa mukaansa niin pienet kuin suuretkin katsojat! <br>Esitys on viehättävän lämmin ja kotoisa. Esityksen lavastus ja puvut ovat virkkaustaiteen taidonnäyte.</p><p>Esiintyjät: Ritva Sorvali ja Helena Ryti <br>Lavasteiden ja pukujen suunnittelu ja virkkaus: Tarja Kopperi</p><p>Kesto: 25 min. Esityksen jälkeen yleisö voi tutustua näyttämöön.<br>Ikäsuositus: yli 3-vuotiaille <br>Kieli: Suomi</p><p>Maksuton, paikkavaraukset: kultus.fi 9.11 klo 8 alkaen</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. ESITYS ON TÄYTEEN VARATTU!"
            },
            "provider": null,
            "name": {
                "fi": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "sv": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "en": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67211/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67210",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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:p6529/?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": 1491201,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T13:13:26.972992Z",
                    "last_modified_time": "2025-10-27T13:13:26.973007Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778241.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491201/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T13:13:26.881053Z",
            "last_modified_time": "2025-11-10T16:13:07.149750Z",
            "date_published": null,
            "start_time": "2025-12-10T07: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4178EF31744C135B42063F77D839FDB7/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/4178EF31744C135B42063F77D839FDB7/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "en": "http://www.annantalo.fi/en/events/event/4178EF31744C135B42063F77D839FDB7/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. ESITYS ON TÄYTEEN VARATTU!</p><p>Esitys perustuu Charles Perrault'n tunnettuun satuun, jossa neuvokas kissa auttaa myllärinpoikaa seikkailuissaan. Tämä kiehtova esitys tempaa mukaansa niin pienet kuin suuretkin katsojat! <br>Esitys on viehättävän lämmin ja kotoisa. Esityksen lavastus ja puvut ovat virkkaustaiteen taidonnäyte.</p><p>Esiintyjät: Ritva Sorvali ja Helena Ryti <br>Lavasteiden ja pukujen suunnittelu ja virkkaus: Tarja Kopperi</p><p>Kesto: 25 min. Esityksen jälkeen yleisö voi tutustua näyttämöön.<br>Ikäsuositus: yli 3-vuotiaille <br>Kieli: Suomi</p><p>Maksuton, paikkavaraukset: kultus.fi 9.11 klo 8 alkaen</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. ESITYS ON TÄYTEEN VARATTU!"
            },
            "provider": null,
            "name": {
                "fi": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "sv": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "en": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67210/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67209",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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:p6529/?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": 1491200,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T13:13:26.600107Z",
                    "last_modified_time": "2025-10-27T13:13:26.600123Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778239.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491200/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T13:13:26.510967Z",
            "last_modified_time": "2025-11-10T16:13:06.964002Z",
            "date_published": null,
            "start_time": "2025-12-09T08:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9FFF9338D6F392ED3B79FC13B638998B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9FFF9338D6F392ED3B79FC13B638998B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "en": "http://www.annantalo.fi/en/events/event/9FFF9338D6F392ED3B79FC13B638998B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. Esitys on täyteen varattu!</p><p>Esitys perustuu Charles Perrault'n tunnettuun satuun, jossa neuvokas kissa auttaa myllärinpoikaa seikkailuissaan. Tämä kiehtova esitys tempaa mukaansa niin pienet kuin suuretkin katsojat!</p><p>Esitys on viehättävän lämmin ja kotoisa. Esityksen lavastus ja puvut ovat virkkaustaiteen taidonnäyte.</p><p>Esiintyjät: Ritva Sorvali ja Helena Ryti <br>Lavasteiden ja pukujen suunnittelu ja virkkaus: Tarja Kopperi</p><p>Kesto: 25 min. Esityksen jälkeen yleisö voi tutustua näyttämöön.<br>Ikäsuositus: yli 3-vuotiaille <br>Kieli: Suomi</p><p>Maksuton, paikkavaraukset: kultus.fi 9.11 klo 8 alkaen</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. Esitys on täyteen varattu!"
            },
            "provider": null,
            "name": {
                "fi": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "sv": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "en": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67209/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67208",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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:p6529/?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": 1491199,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T13:13:26.218472Z",
                    "last_modified_time": "2025-10-27T13:13:26.218487Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778238.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491199/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T13:13:26.107557Z",
            "last_modified_time": "2025-11-10T16:13:06.791725Z",
            "date_published": null,
            "start_time": "2025-12-09T07: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B01A6F613FE54CE51F9E7D407738551A/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/B01A6F613FE54CE51F9E7D407738551A/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "en": "http://www.annantalo.fi/en/events/event/B01A6F613FE54CE51F9E7D407738551A/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. Esitys on täyteen varattu!</p><p>Esitys perustuu Charles Perrault'n tunnettuun satuun, jossa neuvokas kissa auttaa myllärinpoikaa seikkailuissaan. Tämä kiehtova esitys tempaa mukaansa niin pienet kuin suuretkin katsojat!</p><p>Esitys on viehättävän lämmin ja kotoisa. Esityksen lavastus ja puvut ovat virkkaustaiteen taidonnäyte.</p><p>Esiintyjät: Ritva Sorvali ja Helena Ryti <br>Lavasteiden ja pukujen suunnittelu ja virkkaus: Tarja Kopperi</p><p>Kesto: 25 min. Esityksen jälkeen yleisö voi tutustua näyttämöön.<br>Ikäsuositus: yli 3-vuotiaille <br>Kieli: Suomi</p><p>Maksuton, paikkavaraukset: kultus.fi 9.11 klo 8 alkaen</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. Esitys on täyteen varattu!"
            },
            "provider": null,
            "name": {
                "fi": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "sv": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "en": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67208/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67249",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491307,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-05T13:12:05.056578Z",
                    "last_modified_time": "2025-11-05T13:12:05.056589Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780517.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491307/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-11-05T13:12:04.982074Z",
            "last_modified_time": "2025-11-10T15:13:12.445459Z",
            "date_published": null,
            "start_time": "2025-11-21T08:00:00Z",
            "end_time": "2025-11-21T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F3A58427D809A012B0E2B87448D2B0D5/Valon_juhla_Kohti_valoa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F3A58427D809A012B0E2B87448D2B0D5/Ljusets_fest_Mot_ljuset",
                "en": "http://www.malmitalo.fi/en/events/event/F3A58427D809A012B0E2B87448D2B0D5/Celebration_of_light_Towards_the_light"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Luvassa on taaperodiskoa, Ursan planetario -näytökset, lauantaihin valmistautumista, talon koristelua ja tanssimista somalinaisten voimauttavissa tansseissa.</p><p>Kerätään huolet ja murheet poltettavaksi Maria Baric Companyn tuliteatterinäytökseen. Mukana mahdollisesti myös muita työpajoja!</p><p><b>Aikataulu</b> <br>klo 10–11 Taaperodisko, kirjasto <br>klo 14–14.30, 14.45–15.15 ja 15.30–16 Ursan Planetaario-näytökset (30 ihmistä per näytös)<br>klo 14–18 Lauantain yhteisruokailun valmistelu Varustamolla (kulttuurikokki Jyrki Tsutsunen, Kohtaus Ry, Varustamo/Waste&Feast)  <br>klo 15–18 Parven koristelua yhdessä asukkaiden kanssa (yhteistyössä Malmitalo ja Kaupunkiolohuone Kohtaus Malmi)  <br>klo 17–17.45 Tulilinnun kyynel –  murheidenkeruutyöpaja (Maria Baric Company), Malmitalon edustalla <br>klo 17.15–17.45 Buraanbur - somalinaisten voimauttavat tanssit, aulassa <br>klo 18–18.30 Pegasos-tuliteatteriesitys, (Maria Baric Company)</p><p><b>Taaperodisko</b> <br>Musiikkia ja diskopallon loistetta taaperoille ja aikuisille! Hauskoja tanssileikkejä ja pillimehut halukkaille janojuomaksi. Tilaan mahtuu rajallinen määrä bilettäjiä kerrallaan.</p><p><b>Ursan Planetaario -näytökset</b> <br>Valojen sammuessa planetaarion sisällä paljastuu kosmos pienoiskoossa: silmien tottuessa pimeään taivaalta erottuu tuhansittain tähtiä ja avaruuden olioita. Lumoavia planetaarionäytöksiä nähdään kolme kappaletta, sisään mahtuu 30 ihmistä kerrallaan.</p><p><b>Tulilinnun kyynel –  murheidenkeruutyöpaja </b> <br>Ennen illan tuliteatteriesitystä yleisöllä on mahdollisuus vierailla työpajapisteellä kirjailemassa tulilinnun kyyneliin omavalintainen viesti. Kävijöiden viestit kirjoitetaan tai piirretään feeniksin kyyneleen muotoisille paperilappusille, joiden sisään voi kätkeä mitä vain pieniä tai suuria suruja, murheita, harmeja tai huolia, joista haluaisi päästää irti. Tulilinnun kannettavaksi jätettyjä viestejä ei lueta, vaan Feeniks vie ne mukanaan liekkimereen polttaen ne esityksen aikana tuhkaksi ja symbolisoiden mahdollisuuksia löytää uutta voimaa mennä elämässä eteenpäin.</p><p><b>Maria Baric Company – Pegasos</b> <br>Maria Baric Company on kansainvälisesti palkittu itähelsinkiläinen teatteri, joka toimii monipuolisesti esittävän taiteen kentällä. Valon juhlassa nähdään juhlaa varten valmisteltu valonukketeatteria ja tulinukketeatteria yhdistelevä Pegasos, joka on osallistavan ulkoilmakonsertin muotoon puettu valoseikkailu, joka kutsuu kaikenikäiset yhteisölliseen juhlaan liekeiksi leimahtavien toiveiden, elävien tulien ja musiikillisten tarinoiden äärelle.</p><p>Pegasos on vuodesta 2006 toimineen ryhmän 35. kantaesitys, jossa Maria Baric Companyn taiteilijoiden rinnalla esiintyvät myös vapaaehtoiset itähelsinkiläiset seniorit – valon kantajat, jotka tuovat näyttämölle elämänkokemuksensa, läsnäolonsa ja yhteisönsä voiman. Teos on syntynyt itähelsinkiläisiin päiväkoteihin, kouluihin ja aluetapahtumiin jalkautuneista kohtaamisista – ammattitaiteilijoiden ja eri sukupolvien yhteisestä valomatkasta.</p><p><b>Parven koristelua yhdessä asukkaiden kanssa</b> <br>Malmitalon ja Kaupunkiolohuone Kohtaus Malmin talkooväen yhdessä järjestämä parven koristelutuokio, jossa parvi saa juhlavan asun lauantain yhteisruokailua varten.</p><p><b>Buraanbur - somalinaisten voimauttavat tanssit </b> <br>Voimaannuttava tanssiesitys, johon sinut on kutsuttu osallistumaan matalalla kynnyksellä.</p><p><b>Yhtä valon juhlaa koko viikko!</b><br><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/32FACFF71092F07E8EFC76783F3D9684/Valon_viikko_ja_Valon_juhla\">Tutustu koko Valon viikon ohjelmaan</a></u>.</p>",
                "sv": "<p>Det kommer att ordnas Småbarnsdisco (Taaperodisko), Ursas planetarievisningar, vi gör oss i ordning inför lördagen, dekorerar huset och dansar med i somaliska kvinnors kraftgivande danser.</p><p>Låt oss samla ihop vår oro och våra bekymmer för att bränna dem i Maria Baric Companys eldteaterföreställning. Andra verkstäder kan eventuellt också ingå!</p><p><b>Tidtabell</b><br>10.00–11.00 Småbarnsdiscot (Taaperodisko), biblioteket<br>14.00–14.30, 14.45–15.15 och 15.30–16.00 Ursas Planetarievisningar (30 personer per visning)<br>14.00–18.00 Förberedelser inför lördagens gemensamma måltid på Varustamo (kulturkocken Jyrki Tsutsunen, Kohtaus Ry, Varustamo/Waste&Feast)<br>15.00–18.00 Dekorering av balkongen tillsammans med invånarna (i samarbete med Malms kulturhus och Kaupunkiolohuone Kohtaus Malmi)<br>17-17.45 Eldfågelns tårar – en verkstad för insamling av bekymmer (Maria Baric Company), framför Malms kulturhus<br>17.15–17.45 Buraanbur – somaliska kvinnors stärkande danser, i vestibulen<br>18.00–18.30 Pegasos-eldteaterföreställning, (Maria Baric Company)</p><p><b>Småbarnsdisco (Taaperodisko)</b><br>Musik och discobollens glamour för småbarn och vuxna! Roliga danslekar och sugrörssaft som törstsläckare för dem som vill ha. I lokalen ryms ett begränsat antal firare i taget.</p><p><b>Ursas Planetarievisningar</b><br>När ljuset släcks avslöjas kosmos i miniatyr i planetariet: när ögonen vänjer sig vid mörkret urskiljs tusentals stjärnor och rymdvarelser på himlen. Det ordnas tre förtrollande planetarievisningar: in ryms 30 personer i taget.</p><p><b>Eldfågelns tårar – en verkstad för insamling av bekymmer</b><br>Före kvällens eldteaterföreställning får publiken möjlighet att besöka verkstadspunkten för att skriva ett valfritt meddelande i eldfågelns tårar. Besökarnas meddelanden skrivs eller ritas på tårformade papperslappar, likt fenixens tårar, i vilka man kan gömma små eller stora sorger, bekymmer eller oro som man skulle vilja släppa taget om. De meddelanden som lämnas till eldfågeln som den sedan bär med sig läses inte, utan förs av Fenix till eldhavet, där de bränns till aska under föreställningen och symboliserar möjligheterna att hitta ny styrka för att gå vidare i livet.</p><p><b>Maria Baric Company – Pegasos</b><br>Maria Baric Company är en internationellt prisbelönt teater i Östra Helsingfors, som verkar mångsidigt på scenkonstfältet. Under Ljusets fest ses Pegasos som beretts för festen och som förenar ljus- och elddockteater. Pegasos är ett ljusäventyr i form av en inkluderande utomhuskonsert som bjuder in alla ålderskategorier på en gemensam fest med önskningar som flammar upp, levande eld och musikaliska berättelser.</p><p>Pegasos är den 35:e premiären för gruppen, som har varit verksam sedan 2006, och förutom artisterna i Maria Baric Company medverkar även frivilliga seniorer från östra Helsingfors – ljusbärare som tar med sig sin livserfarenhet, sin närvaro och kraften i sin gemenskap på scenen. Verket har skapats av möten som skett på daghem, i skolor och under regionala evenemang i östra Helsingfors – en gemensam ljusresa för professionella konstnärer och olika generationer.</p><p><b>Dekorera balkongen tillsammans med invånarna</b><br>I dekorationsstunden av balkongen som gemensamt ordnas av talkogänget vid Malms kulturhus och Kaupunkiolohuone Kohtaus Malmi kläs balkongen festligt inför lördagens gemensamma måltid.</p><p><b>Buraanbur – somaliska kvinnors stärkande danser</b><br>En stärkande dansföreställning där du bjuds in att delta med låg tröskel.</p><p><b>En hyllning av ljuset hela veckan!</b><br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/32FACFF71092F07E8EFC76783F3D9684/Ljusets_vecka_\">Se hela programmet under Ljusets vecka.</a></u>.</p>",
                "en": "<p>The week promises activities such as a toddler disco, Ursa Planetarium shows, preparations for Saturday, decorating the house and dancing the empowering dances of Somali women.</p><p>We will collect our grief and sorrows and set them aflame at Maria Baric Company’s fire theatre performance. Other workshops may also be included!</p><p><b>Schedule</b><br>10.00–11.00 Toddler disco, library<br>14.00–14.30, 14.45–15.15 and 15.30–16.00 Planetarium shows by Ursa (30 people per show)<br>14.00–18.00 Preparations for Saturday's communal meal (Culture Chef Jyrki Tsutsunen, Kohtaus Ry, Varustamo/Waste&Feast)<br>15.00–18.00 Decorating the gallery together with residents (in cooperation with Malmitalo and the urban living room Kohtaus Malmi)<br>17.00–17.45 Tulilinnun kyynel (Tear of a Firebird) – a workshop on collecting sorrows (Maria Baric Company)<br>17.15–17.45 Buraanbur – empowering dances by Somali women<br>18.00–18.30 Pegasos fire theatre performance (Maria Baric Company)</p><p><b>Toddler disco</b><br>Music and sparkling disco balls for toddlers and adults alike! Fun dance games – and juice cartons for the thirsty ones. The space can accommodate a limited number of partygoers at a time.</p><p><b>Ursa Planetarium shows</b><br>When the lights go out, the inside of the planetarium shows the whole cosmos in miniature: as your eyes adjust to the dark, you can start to see thousands of stars and space creatures in the sky. The day will offer three of these enchanting planetarium shows, seating 30 people at a time.</p><p><b>Tear of a Firebird – workshop for collecting sorrows</b><br>Before the evening's fire theatre performance, the audience members will have the chance to visit a workshop and write down a message of their choice to the tears of a firebird. The visitors' messages will be written or drawn on pieces of paper in the shape of a phoenix’s tears, inside which they can hide any small or big sorrows, grievances, worries or concerns they would like to let go of. These messages left for the firebird to carry away will not be read, instead the phoenix will carry them to a sea of flames and burn them to ashes during the performance, symbolising the possibility of finding new strength to move forward in life.</p><p><b>Maria Baric Company – Pegasos</b><br>Maria Baric Company is an internationally acknowledged theatre company based in East Helsinki, working across the field of performing arts. For the Festival of Light, the company has put together the show Pegasos, a combination of light puppet theatre and fire puppetry. It is an adventure of light in the form of an inclusive outdoor concert that invites people of all ages to a communal celebration of wishes flaming to life, living fires and stories accompanied by music.</p><p>Pegasos is the 35th premiere of the group founded in 2006. Alongside the artists of the Maria Baric Company, the show will feature volunteer seniors from East Helsinki – light bearers who bring their life experience, their presence and the power of their community to the stage. The work is based on encounters that have taken place in daycare centres, schools and regional events in East Helsinki – a shared journey of light by professional artists and different generations.</p><p><b>Decorating the gallery together with residents</b><br>A decorating session organised by Cultural Centre Malmitalo and the volunteers of the urban living room Kohtaus Malmi, where the gallery will be given a festive look for Saturday's communal meal.</p><p><b>Buraanbur – empowering dances of Somali women</b><br>An empowering dance performance that also invites the audience to dance.</p><p><b>Celebration of light, all week long!</b><br><u><a href=\"https://malmitalo.fi/en/events/event/32FACFF71092F07E8EFC76783F3D9684/Ljusets_vecka_\">See the full Week of Light programme.</a></u>.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Luvassa on taaperodiskoa, Ursan planetario -näytökset, lauantaihin valmistautumista, talon koristelua ja tanssimista somalinaisten voimauttavissa tansseissa.",
                "sv": "Det kommer att ordnas Småbarnsdisco (Taaperodisko), Ursas planetarievisningar, vi gör oss i ordning inför lördagen, dekorerar huset och dansar med i somaliska kvinnors kraftgivande danser.",
                "en": "The week promises activities such as a toddler disco, Ursa Planetarium shows, preparations for Saturday, decorating the house and dancing the empowering dances of Somali women."
            },
            "provider": null,
            "name": {
                "fi": "Valon juhla: Kohti valoa – Valon viikko",
                "sv": "Ljusets fest: Mot ljuset – Ljusets vecka",
                "en": "Celebration of light: Towards the light – Week of Light"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67249/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66547",
            "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:288/?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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?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": 1225635,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T09:12:51.786933Z",
                    "last_modified_time": "2025-07-10T09:12:51.786946Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775005.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1225635/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-10T09:12:51.736294Z",
            "last_modified_time": "2025-11-10T15:13:11.268488Z",
            "date_published": null,
            "start_time": "2025-11-19T15:00:00Z",
            "end_time": "2025-11-19T17: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/E730777083BFE983D4575A09CF5F8889/Taidetauko-tyopajat",
                "sv": "http://www.stoa.fi/sv/evenemang/event/E730777083BFE983D4575A09CF5F8889/Konstpaus-workshoppar",
                "en": "http://www.stoa.fi/en/events/event/E730777083BFE983D4575A09CF5F8889/Art_break_workshops"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Box Stoaan!</p><p>Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Ravintola Box Stoassa on osallistujille tarjolla iltateetä tai mehua.</p><p><b>19.11. klo 17–19 Värileikki musteella</b><br>Lapsen oikeuksien viikon Taidetauko-pajassa maalataan keittiöstä tutuilla aineksilla: paletissa on tänään muun muassa punakaalia, etikkaa, suolaa ja soodaa. Ihaillaan yllättäviä värimuutoksia kun eri ainekset kohtaavat! Sopii erityisen hyvin lapsille ja perheille.</p><p>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Ravintola Box Stoa<br>Kesto: 120 min per kerta<br>Pajojen ohjauskieli: suomi, ranska ja englanti <br>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p>",
                "sv": "<p>Ta en kreativ paus i vardagen och slå dig ner en stund på kvällste i Box Stoa!</p><p>I Konstpaus-workshopparna berikas din vardag med lugnt konsthantverk som är lätt att lära sig. Restaurang Box Stoa bjuder deltagarna på kvällste eller saft.</p><p><b> on 19.11 kl. 17–19 Färglek med bläck </b><br> I Taidetauko-verkstaden som ordnas under veckan för barnets rättigheter leker man med färger! Nu målar vi med välbekanta ingredienser från köket: dagens palett innehåller rödkål, vinäger, salt och bikarbonat. Beundra de överraskande färgskiftningarna när olika ingredienser möts!</p><p>Handledare: Chloé Mahy-Hulkko <br>Plats: Restaurang Box Stoa<br>Längd: 120 min per gång<br>Workshopparna handleds på finska, franska och engelska <br>Fritt inträde. Ingen förhandsanmälan. <br>Stoa bjuder deltagarna på kvällste.</p>",
                "en": "<p>Take a creative break from everyday life and sit down for evening tea at Box Stoa!</p><p>In art break workshops, you get to enrich your daily life with easy-to-acquire, unhurried craftsmanship. Restaurant Box Stoa provides participants evening tea or juice!</p><p><b>Wed 19 November at 17:00–19:00 Colourful play with ink</b><br>Play with colours! Today we're painting with familiar ingredients from the kitchen: today's palette includes red cabbage, vinegar, salt and baking soda. Admire the surprising color changes when different ingredients meet! Suitable for children of all ages.</p><p>Instructor: Chloé Mahy-Hulkko <br>Location: Restaurant Box Stoa<br>Duration: 120 min per session<br>Workshop instruction language: Finnish, French and English <br>Admission is free. No advance registration. Stoa provides evening tea for participants.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Box Stoaan!",
                "sv": "Ta en kreativ paus i vardagen och slå dig ner en stund på kvällste i Box Stoa!",
                "en": "Take a creative break from everyday life and sit down for evening tea at Box Stoa!"
            },
            "provider": null,
            "name": {
                "fi": "Taidetauko-työpajat – Yllättävät värit -maalauspaja",
                "sv": "Konstpaus-workshoppar – Överraskande färger målningsworkshop",
                "en": "Art break workshops – Colourful play"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66547/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66581",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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:p6529/?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": 1490980,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-02T07:13:38.065458Z",
                    "last_modified_time": "2025-10-02T07:13:38.065472Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775032.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490980/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-02T07:13:37.949393Z",
            "last_modified_time": "2025-11-10T14:12:29.209749Z",
            "date_published": null,
            "start_time": "2025-11-22T11:00:00Z",
            "end_time": "2025-11-22T14: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/E0A32708B8DFF3B97D6B59F403C76FF4/Koko_perheen_taidepaiva_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/E0A32708B8DFF3B97D6B59F403C76FF4/Hela_familjens_konstdag",
                "en": "http://www.stoa.fi/en/events/event/E0A32708B8DFF3B97D6B59F403C76FF4/A_day_of_art_for_the_whole_family"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Lapsen oikeuksien viikon perhepäivässä on luvassa valloittavaa nukketeatteria ja musiikin pyörteitä niin pienille kuin isommillekin!</p><p>Nyt juhlitaan lapsen oikeuksia! Tehdas teatteri tuo eläinmaailman ihmeet perheen pienimpien ulottuville, ja We Jazz kutsuu kaiken ikäiset jammailemaan hyvän musiikin tahdissa. Uulun sanattomassa muskarissa päästään itsekin musisoimaan, ja Stoan aulasta löytyy hauska miniperhe-työpaja. Taitavat kasvomaalaajamme loihtivat kävijöille eläimellistä ilmettä.</p><p><b>Päivän ohjelma:</b><br>klo 13 ja 15 Tehdas teatteri: Eläköön eläimet pienille (ennakkoilmoittautuminen, ks. tapahtuma)<br>klo 14 We Jazz: Mattsson / Herrala / Kallio <br>klo 13.15 Sanaton muskari<br>klo 13-16 Miniperhe -työpaja<br>Klo 13-16 Satumetsän varjoissa -työpaja<br>klo 13-15.45 Kasvomaalausta</p><p><b>We Jazz -lastenkonsertti</b><br>Nuoren polven saksofonistilahjakkuus Oona Mattsson kohtaa Suomen jazzkentän veteraanikompin, basisti Ville Herralan ja rumpali Mika Kallion.<br>Kesällä debytoineen Mattsson / Herrala / Kallio -trion ohjelmisto koostuu tarkoin valituista jazzhistorian helmistä, herkästi ja vapaasti tulkittuina.</p><p><b>Eläköön eläimet! pikkuisille</b><br>Oletko ihmetellyt, miten kastemato voi kuulla ilman korvia? Tai tiesitkö, että laiskiainen laskeutuu alas puusta vain kakatakseen?<br>ELÄKÖÖN ELÄIMET! vastaa kysymyksiisi vallattomilla faktoilla, sydämellisellä huumorilla ja taidokkailla nukkehahmoillaan. <br>Taaperoille sovitetussa versiossa ihastellaan ja ihmetellään eläimiä pehmeiltä nurmimatoilta, joilla voi loikoilla ihan muina matoina tai kainaloisena kanana. Jokainen pieni katsoja saa mukaansa myös turvamadon, jonka kanssa eläytyä esitykseen.<br>Kesto: 30 min<br>Näytös on akustisesti lempeä, eikä täyttä pimeyttä tule.<br>Suunnattu 1 - 3-vuotiaille<br>Kieli: suomi<br>Mukaan mahtuu noin 20 taaperoa ja saman verran aikuisia. HUOM! Ei vauvoille.<br>Maksuton. Ennakkoilmoittautuminen esityksen kohdalta 11.11. alkaen.</p><p><b>Sanaton muskari</b><br>Sanaton muskari on esitys, jossa lapset ja perheet voivat kokea monipuolisesti musiikkia. Pedagogiikka perustuu sanattomiin lauluihin ja loruihin, eli toiminta soveltuu kaikille äidinkielestä riippumatta.</p><p>Sanaton muskari sopii myös heille, joilla on kehitysvaikeuksia tai haasteita motoriikan kanssa. Tässä pedagogiikassa musiikkia opitaan kuin äidinkieltä - ensin kuunnellaan, sitten kokeillaan. Musiikkia ja rytmiä aistitaan yhdessä liikkumalla, toistamalla ja vertaamalla ryhmässä.</p><p>Ohjaaja: Paloma Català Parga, Uulu<br>Ikäsuositus 0–10 vuotta, pienimmät aikuisen seurassa.<br>Mukaan mahtuu max 25 lasta, lisäksi heidän aikuisensa.<br>Kesto 40 min.</p><p><b>Miniperhe-työpaja</b><br>Perheitä on erilaisia, ja jokainen perheenjäsen on aivan omanlaisensa.  Millaisia hassuja, värikkäitä tai ihania tyyppejä kuuluu sinun perheeseesi? Tule luomaan oma miniatyyriperhe! Nuket syntyvät puutikuista, liimasta, kierrätyslangoista ja mielikuvituksesta. <br>Ohjaaja: Chloé Mahy-Hulkko<br>Kielet: suomi, ranska, englanti</p><p><b>Satumetsän varjoissa -työpaja</b><br>Työpajassa tutkitaan varjoja ja piirretään niiden avulla mielikuvituksellisia otuksia ja metsän asukkaita. <br>Ohjaaja: Juho Hellsten</p><p><b>Eläin-kasvomaalauksia</b><br>Tule ja muutu eläimeksi taidokkaiden kasvomaalaajiemme käsissä.</p><p>Puotinkylän Valtti pitää Stoan aulassa herkkukioskia, josta löytyy herkkuja pientä korvausta vastaan.</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Familjedagen under Veckan för barnens rättigheter kommer att bjuda på fängslande dockteater och musikaliska virvelvindar för både stora och små!</p><p>Familjedagen under Veckan för barnens rättigheter kommer att bjuda på fängslande dockteater och musikaliska virvelvindar för både stora och små!</p><p>Låt oss fira barnens rättigheter! Tehdas teatteri har med sig djurvärldens underverk till de små i familjen och We Jazz bjuder in alla åldrar att jamma loss till bra musik. Du kan själv skapa musik i Uulus ordlösa musiklekskola, och det finns en rolig mini-familjeverkstad i Stoas aula. Våra duktiga ansiktsmålare målar djurliga bilder på besökarna.</p><p>Dagens program<br>kl. 13 och 15 Tehdas teatteri: Eläköön eläimet (föranmälan, se evenemang)<br>14:00 We Jazz: Mattsson / Herrala / Kallio <br>kl. 13.15 Ordlös musiklekskola<br>kl. 13–16 mini-familjeverkstad<br>kl. 13–15.45 Ansiktsmålning</p><p>Ordlös musiklekskola<br>Den ordlösa musiklekskolan är en föreställning där barn och familjer kan uppleva musik på olika sätt. Pedagogiken bygger på icke-verbala sånger och berättelser, vilket innebär att aktiviteterna passar alla, oavsett modersmål.</p><p>Men ordlösa musiklekskolan är också lämplig för personer med utvecklingsstörning eller motoriska utmaningar. Denna pedagogik lär ut musik som ett modersmål – först lyssnar du, sedan försöker du. Musik och rytm upplevs tillsammans genom att man rör sig, upprepar och jämför i en grupp.</p><p>Regi: Paloma Català Parga<br>Rekommenderad ålder 0–10 år, de yngsta tillsammans med en vuxen.<br>Det finns en maximal kapacitet på 25 barn, plus deras vuxna.<br>Längd 40 min.</p><p>Mini-familjeverkstad<br>Familjer är olika och alla familjemedlemmar är olika. Vad finns det för roliga, färgstarka eller underbara människor i din familj? Kom och skapa din egen minifamilj! Dockorna är tillverkade av träfibrer, lim, återvunnet garn och fantasi.</p><p>Regi: Chloé Mahy-Hulkko<br>Språk: finska, franska, engelska</p><p>Puotinkylän Valtti har ett delikatesstånd i lobbyn på Stoa, där du kan köpa godsaker för en liten slant.</p><p>Fritt inträde.</p>",
                "en": "<p>This day of art for the whole family in Children's Rights Week features captivating puppetry and captivating music for young and old alike!</p><p>Let's celebrate the rights of the child! Independent theatre Tehdas Teatteri introduces the littlest audience members to the wonders of the animal world, while We Jazz invites people of all ages to jam out to good music. Culture Cooperative Uulu’s wordless music playschool lets children make music themselves, and there will also be a fun mini-family workshop in the Stoa lobby. Participants looking for a more animalistic look can turn to our skilled face painters.</p><p>The day’s programme:<br>13.00 and 15.00 Tehdas Teatteri: Eläköön eläimet (Hooray for animals) (advance registration, see event)<br>14.00 We Jazz: Mattsson / Herrala / Kallio<br>13.15 Wordless music playschool<br>13.00–16.00 Mini-family workshop<br>13.00–15.45 Face painting</p><p>Wordless music playschool<br>The wordless music playschool is a performance that allows children and families to experience music in a variety of ways. The pedagogy is based on wordless songs and rhymes, which means that the activities are suitable for everyone, regardless of their mother tongue.</p><p>The wordless music playschool is also suitable for those with developmental disabilities or motor challenges. This pedagogy teaches music like a mother tongue – first you listen, then you try it yourself. Music and rhythm are sensed together by moving, repeating and comparing in a group.</p><p>Instructor: Paloma Català Parga<br>Age recommendation: 0–10 years; the youngest participants should be accompanied by an adult.<br>Maximum capacity: 25 children, plus their adults.<br>Duration: 40 min</p><p>Mini-family workshop<br>There are different kinds of families, and each family member is also different. What kind of funny, colourful or lovely people are in your family? Come and create your own miniature family! The miniatures are made with wooden sticks, glue, recycled yarn and imagination.</p><p>Instructor: Chloé Mahy-Hulkko<br>Languages: Finnish, French, English</p><p>Puotinkylän Valtti will be running a kiosk in the Stoa lobby, where you can purchase treats for a small fee.</p><p>Free entry.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Lapsen oikeuksien viikon perhepäivässä on luvassa valloittavaa nukketeatteria ja musiikin pyörteitä niin pienille kuin isommillekin!",
                "sv": "Familjedagen under Veckan för barnens rättigheter kommer att bjuda på fängslande dockteater och musikaliska virvelvindar för både stora och små!",
                "en": "This day of art for the whole family in Children's Rights Week features captivating puppetry and captivating music for young and old alike!"
            },
            "provider": null,
            "name": {
                "fi": "Koko perheen taidepäivä – Lapsen oikeuksien viikko",
                "sv": "Hela familjens konstdag – Veckan för barnets rättigheter",
                "en": "A day of art for the whole family – Children’s Rights Week"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66581/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67257",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491324,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-07T09:13:45.145784Z",
                    "last_modified_time": "2025-11-07T09:13:45.145799Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772167.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491324/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-07T09:13:44.946637Z",
            "last_modified_time": "2025-11-10T08:13:28.906021Z",
            "date_published": null,
            "start_time": "2025-12-04",
            "end_time": "2026-01-05",
            "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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION",
                "en": "http://www.vuotalo.fi/en/events/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Artists: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya and Aero Vineyard, the Gallery of Light and Shadow.</p><p>REFRACTION is a group exhibition curated by Yasmin Ibrahim on light and memory. During the darkest month of the year, we remember memories engulfed in light, how they shift, change and become stagnant. Moving between the personal and the public, light is used in a metaphoric and literal sense to reflect what we experience and how it is portrayed to the outside world.</p><p>Inspired by Yasmin Ibrahim’s own relationship to light as an immigrant from the Global South living in the Northern Hemisphere, each selected artwork shows the fragility of light, how it changes memory, what disrupts and settles it.</p><p>The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and The Gallery of Light and Shadow. Each piece looks at the use of light, our relationship to it, and what should be shed light on. As a curator, Ibrahim is interested in the depictions and usage of light by underrepresented artists in Finland, and how memory can move, freeze, exclude or include us.</p><p>Welcome to the opening at Vuotalo on 4.12 between 18:30-20:00!</p><p>Supported by Catalysti ry and TAIKE.</p><p>Photo credit: Still from “Stepping into the Light\"</p><p>Legendary Overall Mother Lola Gorgeous Gucci<br> <br>Xclusive Lanvin House Ball 2023.</p>",
                "sv": "<p>Artists: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya and Aero Vineyard, the Gallery of Light and Shadow.</p><p>REFRACTION is a group exhibition curated by Yasmin Ibrahim on light and memory. During the darkest month of the year, we remember memories engulfed in light, how they shift, change and become stagnant. Moving between the personal and the public, light is used in a metaphoric and literal sense to reflect what we experience and how it is portrayed to the outside world.</p><p>Inspired by Yasmin Ibrahim’s own relationship to light as an immigrant from the Global South living in the Northern Hemisphere, each selected artwork shows the fragility of light, how it changes memory, what disrupts and settles it.</p><p>The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and The Gallery of Light and Shadow. Each piece looks at the use of light, our relationship to it, and what should be shed light on. As a curator, Ibrahim is interested in the depictions and usage of light by underrepresented artists in Finland, and how memory can move, freeze, exclude or include us.</p><p>Welcome to the opening at Vuotalo on 4.12 between 18:30-20:00!<br>Supported by Catalysti ry and TAIKE.</p><p>Photo credit: Still from “Stepping into the Light\"</p><p>Legendary Overall Mother Lola Gorgeous Gucci<br> <br>Xclusive Lanvin House Ball 2023.</p>",
                "en": "<p>Artists: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya and Aero Vineyard, the Gallery of Light and Shadow.</p><p>REFRACTION is a group exhibition curated by Yasmin Ibrahim on light and memory. During the darkest month of the year, we remember memories engulfed in light, how they shift, change and become stagnant. Moving between the personal and the public, light is used in a metaphoric and literal sense to reflect what we experience and how it is portrayed to the outside world.</p><p>Inspired by Yasmin Ibrahim’s own relationship to light as an immigrant from the Global South living in the Northern Hemisphere, each selected artwork shows the fragility of light, how it changes memory, what disrupts and settles it.</p><p>The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and The Gallery of Light and Shadow. Each piece looks at the use of light, our relationship to it, and what should be shed light on. As a curator, Ibrahim is interested in the depictions and usage of light by underrepresented artists in Finland, and how memory can move, freeze, exclude or include us.</p><p>Welcome to the opening at Vuotalo on 4.12 between 18:30-20:00!<br>Supported by Catalysti ry and TAIKE.</p><p>Photo credit: Still from “Stepping into the Light\"</p><p>Legendary Overall Mother Lola Gorgeous Gucci<br> <br>Xclusive Lanvin House Ball 2023.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Artists: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya and Aero Vineyard, the Gallery of Light and Shadow.",
                "sv": "Artists: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya and Aero Vineyard, the Gallery of Light and Shadow.",
                "en": "Artists: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya and Aero Vineyard, the Gallery of Light and Shadow."
            },
            "provider": null,
            "name": {
                "fi": "REFRACTION – Curated by Yasmin Ibrahim",
                "sv": "REFRACTION – Curated by Yasmin Ibrahim",
                "en": "REFRACTION – Curated by Yasmin Ibrahim"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67257/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk3nbkqa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventPostponed",
            "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:agmk3nbd44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbevy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbfca/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbfom/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbf2m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbggu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbgsy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbg64/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbhl4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbhy4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbife/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbirq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbi7e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbjk4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbjwy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbkdu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490394,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-15T11:55:31.337680Z",
                    "last_modified_time": "2025-08-15T11:55:31.337694Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ba214803-7cb0-4589-9e57-04cfd4b51722.png",
                    "cropping": "260,0,1660,1400",
                    "photographer_name": "Espoon aineistopankki",
                    "alt_text": "Piirroskuva ihmisiä pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490394/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-15T11:55:57.992275Z",
            "last_modified_time": "2025-11-08T12:23:27.615820Z",
            "date_published": null,
            "start_time": null,
            "end_time": null,
            "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,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Harjoitellaan suomen kieltä käytännönläheisesti työelämän näkökulmasta.</p><p><br></p><ul><li>työelämään liittyvät sanastot ja fraasit</li><li>työnhaun tilanteet: esittäytyminen, puhelinsoitot, haastattelut</li><li>työpaikalla toimiminen: ohjeiden ymmärtäminen, toimiminen työyhteisössä</li><li>Keskusteluja ja roolipelejä</li><li>Työelämän ja yhteiskunnan pelisääntöjen oppiminen</li></ul>",
                "sv": "<p>Vi övar finska på ett praktiskt sätt utifrån ett arbetslivsperspektiv.</p><p><br></p><ul><li>Ordförråd och fraser relaterade till arbetslivet.</li><li>Situationsbeskrivningar vid jobbsökande: presentera sig själv, telefonsamtal, intervjuer.</li><li>Arbeta på arbetsplatsen: förstå instruktioner, arbeta i en arbetsgemenskap.</li><li>Diskussioner och rollspel.</li><li>Lära sig reglerna för arbetslivet och samhället.</li></ul>",
                "en": "<p>We practice Finnish in a practical way from a working life perspective.</p><p><br></p><ul><li>Vocabulary and phrases related to working life</li><li>Job hunting situations: introducing yourself,&nbsp;phone calls, interviews</li><li>Working at the workplace: understanding instructions, working in a work community</li><li>Discussions and role-playing</li><li>Learning the rules of working life and society</li></ul>"
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "short_description": {
                "fi": "Harjoitellaan suomen kieltä käytännönläheisesti työelämän näkökulmasta.",
                "sv": "Öva finska på ett praktiskt sätt utifrån ett arbetslivsperspektiv.",
                "en": "Practice Finnish in a practical way from a working life perspective."
            },
            "provider": {
                "fi": "Roda ry",
                "sv": "Roda ry",
                "en": "Roda ry"
            },
            "name": {
                "fi": "Roda ry: Suomen kieli työelämässä",
                "sv": "Finska språket i arbetslivet",
                "en": "Finnish language in working life"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbkqa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnf53qycq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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": [],
            "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": 1493767,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-07T14:19:28.054725Z",
                    "last_modified_time": "2025-11-07T14:19:28.054747Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/345ff41a-1eb5-41e7-83e3-779581189f92.jpg",
                    "cropping": "195,0,409,214",
                    "photographer_name": "",
                    "alt_text": "........",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493767/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-07T14:17:35.548048Z",
            "last_modified_time": "2025-11-07T14:20:23.737067Z",
            "date_published": null,
            "start_time": "2025-11-14T11:00:00Z",
            "end_time": "2025-11-14T12: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,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Maailman diabetespäivän kunniaksi Omegayksi järjestää maksuttoman diabetes tietoisuus- ja verensokeriseulontaohjelman.</p><p>Tapahtumassa voit mitata verensokerisi, saat faktoja koskien diabetesta sekä jaamme opetusmateriaaleja.</p><p>Tervetuloa!</p>"
            },
            "location_extra_info": {
                "fi": "Kajuutta"
            },
            "short_description": {
                "fi": "Tule mittauttamaan verensokerisi ja hakemaan tietoa diabetekseen liittyen 14.11. klo 13 Kajuuttaan."
            },
            "provider": {
                "fi": "Omegayksi"
            },
            "name": {
                "fi": "Maailman diabetespäivä: Omegayhden maksuton diabetes tietoisuus- ja verensokeriseulontaohjelma"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf53qycq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agne666cxy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p556/?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: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": [],
            "images": [
                {
                    "id": 1491285,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-04T14:28:06.756671Z",
                    "last_modified_time": "2025-11-04T14:28:06.756692Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/579d6806-9106-4eb3-af71-d489ca6c1d43.jpg",
                    "cropping": "560,0,2038,1478",
                    "photographer_name": "",
                    "alt_text": "SEllon perhepäivä piirroskuva",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491285/?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-11-04T14:40:29.288604Z",
            "last_modified_time": "2025-11-07T13:43:33.323998Z",
            "date_published": null,
            "start_time": "2025-11-22T10:00:00Z",
            "end_time": "2025-11-22T14: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,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p><strong>Tervetuloa Sellon kirjaston perhepäivään, joka järjestetään yhteistyössä Espoolaisten toimijoiden kanssa Lasten viikonlopun lauantaina! Luvassa on erilaisia työpajoja, musiikkia, klovni ja hauskaa yhdessä tekemistä. Tule mukaan koko perheen voimin.</strong></p><p><br></p><p><strong>Ohjelma:</strong></p><p><strong>Lastenorkesteri Rypsi ja Rapsi klo 14</strong></p><p><strong>Klovni MokaBella klo 15</strong></p><p><br></p><p><strong>Kasvomaalausta klo 12-14</strong></p><p><strong>Peliturnaus klo 12-14.30</strong></p><p><strong>Satumaalaustuokiot klo 13, klo 14 ja klo 15</strong></p><p><br></p><p><strong>klo 13-16</strong></p><ul><li><strong>Espoon kuvataidekoulun pinssipaja</strong></li></ul><p><br></p><ul><li><strong>Espoon Tapioiden temppurata</strong></li></ul><p><br></p><ul><li><strong>Lasten kulttuurikeskus Aurora/ Onnenmetsä -työpaja&nbsp;</strong></li></ul><p><strong>&nbsp;</strong></p>",
                "sv": "<p>Välkommen till Sello-bibliotekets familjedag, som anordnas i samarbete med Espoo-baserade organisationer under barnhelgen på lördag! Det kommer att finnas olika workshops, musik, en clown och roliga aktiviteter att göra tillsammans. Ta med hela familjen.</p><p><br></p><p><strong>Program</strong></p><p><br></p><p><strong>Barnorkestern Rypsi ja Rapsi kl. 14.00</strong></p><p><br></p><p><strong>Clownen MokaBella kl. 15.00</strong></p><p><br></p><p><strong>Ansiktsmålning kl. 12.00–14.00</strong></p><p><br></p><p><strong>Spelturnering kl. 12–14.30</strong></p><p><br></p><p><strong> Sagomålningssessioner kl. 13, kl. 14 och kl. 15</strong></p><p><br></p><p><br></p><p><br></p><p><strong>Kl. 13–16</strong></p><p><br></p><p><strong>Espoo konstskolas badge-workshop</strong></p><p><br></p><p><strong>Espoo Tapios hinderbana</strong></p><p><br></p><p><strong>Aurora barnkulturcenter/Onnenmetsä-workshop&nbsp;</strong></p><p><br></p>",
                "en": "<p>Welcome to Sello Library's Family Day, organized in collaboration with Espoo-based organizations on Children's Weekend Saturday! There will be various workshops, music, a clown, and fun activities to do together. Bring the whole family along.</p><p><br></p><p><strong>Program</strong></p><p><br></p><p><strong>Children's orchestra Rypsi ja Rapsi at 2 p.m.</strong></p><p><br></p><p><strong>Clown MokaBella at 3 p.m.</strong></p><p><br></p><p><br></p><p><strong>Face painting from 12 noon to 2 p.m.</strong></p><p><br></p><p><strong>Game tournament at 12-2:30 p.m.</strong></p><p><br></p><p><strong>Fairy tale painting sessions at 1 pm, 2pm and 3pm</strong></p><p><br></p><p><br></p><p><br></p><p><strong>1-4 p.m</strong></p><p><br></p><p><strong>Espoo Art School pin workshop</strong></p><p><br></p><p><strong>Espoo Tapio obstacle course</strong></p><p><br></p><p><strong>Children's Cultural Center Aurora/ Onnenmetsä workshop&nbsp;</strong></p><p><br></p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa koko perheen tapahtumaan!",
                "sv": "Hela familjen är välkommen att delta i vår familjedag!",
                "en": "The whole family is welcome to enjoy our family day."
            },
            "provider": null,
            "name": {
                "fi": "Perhepäivä Sellon kirjastossa",
                "sv": "Familjedag i Sello bibliotek",
                "en": "Family day in Sello Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne666cxy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnf5nzuoi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1493766,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-07T13:24:03.594327Z",
                    "last_modified_time": "2025-11-07T13:24:03.594344Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/64085ed9-4f04-4ab9-8d31-12bff489a9fb.jpg",
                    "cropping": "0,0,610,610",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on MI-NÄ LU-EN kirjoja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493766/?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-11-07T13:25:33.962469Z",
            "last_modified_time": "2025-11-07T13:25:33.962521Z",
            "date_published": null,
            "start_time": "2025-11-23T12:00:00Z",
            "end_time": "2025-11-23T12:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tule kuuntelemaan hiiren seikkailusta ja tapaamaan uuden MI-NÄ LU-EN -lastenkirjasarjan tekijät! Satunäytelmän lisäksi tiedossa musiikkia ja mukavaa puuhaa lapsille! Tervetuloa!</p>"
            },
            "location_extra_info": {
                "fi": "Salonki"
            },
            "short_description": {
                "fi": "Tule kuuntelemaan hiiren seikkailusta ja tapaamaan uuden MI-NÄ LU-EN -lastenkirjasarjan tekijät sunnuntaina 23.11. klo 14 alkaen."
            },
            "provider": null,
            "name": {
                "fi": "MI-NÄ LU-EN! Satunäytelmä Lippulaivan kirjastossa!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf5nzuoi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnf5aa4sa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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": 1493765,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-07T12:52:17.978190Z",
                    "last_modified_time": "2025-11-07T12:52:17.978205Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/4823b110-9123-4ee4-b1c3-6be0aa86b896.jpg",
                    "cropping": "124,0,665,541",
                    "photographer_name": "",
                    "alt_text": "Kuvan oikealla on Liisa Lauerman lapsuus kohtauspaikkana kirja ja kuvan oikealla on kirjailija Liisa Lauerma",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493765/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-07T12:37:58.228639Z",
            "last_modified_time": "2025-11-07T13:14:29.543215Z",
            "date_published": null,
            "start_time": "2026-01-12T16:00:00Z",
            "end_time": "2026-01-12T16:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Neljätoista tarinaa, neljätoista lapsuutta: Argentiinassa, Iranissa, Japanissa, Kolumbiassa, Neuvostoliitossa, Somaliassa, Syyriassa, Thaimaassa, Turkissa, Virossa ja Suomessa. Lapsuus kohtauspaikkana - muistoja nykysuomalaisilta on kirja kaikille monikulttuurisuudesta, muistoista ja lapsuudesta kiinnostuneille. Se haastaa pohtimaan omia kulttuurisia stereotypioita ja sitä, voisimmeko lapsuusmuistoja jakamalla tulla toisillemme uudella tavalla näkyväksi.</p><p>Tietokirjailija Liisa Lauermaa haastattelee kirjastopedagogi Pirkko Ilmanen.</p><p>Kirjaa voi ostaa paikan päältä!&nbsp;</p><p>&nbsp;&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Salonki"
            },
            "short_description": {
                "fi": "Tervetuloa kuuntelemaan Liisa Lauerman kirjailijavierailua Salonkiin maanantaina 12.1. klo 18.00 alkaen."
            },
            "provider": null,
            "name": {
                "fi": "Neljätoista tarinaa, neljätoista lapsuutta - Kirjailijavieraana Liisa Lauerma"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf5aa4sa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22x6si",
            "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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api"
            },
            "event_status": "EventCancelled",
            "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": 1490286,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-28T06:52:31.443870Z",
                    "last_modified_time": "2025-05-28T06:52:31.443885Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg",
                    "cropping": "280,0,1000,720",
                    "photographer_name": "",
                    "alt_text": "satumainen puutarha",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-28T06:57:29.704880Z",
            "last_modified_time": "2025-11-07T12:23:12.305981Z",
            "date_published": null,
            "start_time": "2025-11-14T15:00:00Z",
            "end_time": "2025-11-14T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>",
                "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>",
                "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "short_description": {
                "fi": "Täällä voit kokeilla, kuvitella ja näyttää.",
                "sv": "Här kan du prova, fantisera, visa och experimentera.",
                "en": " Here you can try, fantasize, show, experiment. "
            },
            "provider": null,
            "name": {
                "fi": "PERUTTU: Ukrainalainen lasten teatterikerho Naamiot",
                "sv": "AVBRUTEN: Ukrainska barnteaterklubben Masker",
                "en": "CANCELLED: Ukrainian Children's Theater Masks"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x6si/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnc7bagqi",
            "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/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: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:p8630/?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": [],
            "images": [
                {
                    "id": 1491218,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-10-29T09:33:08.959245Z",
                    "last_modified_time": "2025-10-29T09:33:08.959261Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/8ddb8251-e963-4336-a69e-2e182d086f6d.jpg",
                    "cropping": "285,0,915,630",
                    "photographer_name": "",
                    "alt_text": "Lasten viikonlopun juliste, jossa silmä ja yksittäisiä kuvioita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491218/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-29T09:34:14.088232Z",
            "last_modified_time": "2025-11-07T12:13:57.271393Z",
            "date_published": null,
            "start_time": "2025-11-22T11:30:00Z",
            "end_time": "2025-11-22T15: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,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Romupajassa askarrellaan ja rakennetaan erilaisesta kierrätysmateriaaleista vain oma mielikuvitus rajana. Käytössä rakenteluun on kuumaliima eli voi tehdä isojakin teoksia. Teokset voi myös maalata. Pajassa on kaksi romukattausta; ensimmäinen paja on klo 13.30-15 ja toinen paja klo 15.30-17.</p><p>Jo viidettä kertaa järjestettävä Lasten viikonloppu ilahduttaa vuoden pimeimpään aikaan, marraskuun lopulla 21.–23.11.2025. Luvassa on viime vuosien tapaan jälleen täyttä lastenkulttuurin juhlaa ympäri Espoota. Lasten viikonlopun ohjelma julkaistaan syksyn alkupuolella. Löydät kaikki Espoon Lasten viikonlopun tapahtumat osoitteesta espoo.fi/lastenviikonloppu(ulkoinen linkki, avautuu uuteen ikkunaan).</p><p>Lasten viikonlopussa ovat mukana Espoon kulttuurikeskus, Sellosali, Näyttelykeskus WeeGee, Kannusali, Lasten kulttuurikeskus Aurora, Vindängen, Espoon kaupunginkirjasto sekä Espoonlahden kulttuuri.</p><p>Espoon Lasten viikonloppu toteutetaan osana Lasten oikeuksien viikon ohjelmaa.</p>"
            },
            "location_extra_info": {
                "fi": "Lippulaivan paja"
            },
            "short_description": {
                "fi": "Kierrätysaskartelua  "
            },
            "provider": null,
            "name": {
                "fi": "Lasten viikonloppu: Romupaja"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnc7bagqi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66127",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1201885,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T08:17:43.363662Z",
                    "last_modified_time": "2025-07-07T08:17:43.363681Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772231.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1201885/?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:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T08:17:43.240598Z",
            "last_modified_time": "2025-11-07T12:13:46.143289Z",
            "date_published": null,
            "start_time": "2025-11-14",
            "end_time": "2026-04-11",
            "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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/84820D87546D143CC414AC64E798D957/Echoes_Through_Light-Years",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/84820D87546D143CC414AC64E798D957/Echoes_Through_Light-Years",
                "en": "http://www.annantalo.fi/en/events/event/84820D87546D143CC414AC64E798D957/Echoes_Through_Light-Years"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kaukana Maasta, kylmien tähtien katveessa, hiljainen kadonneiden esineiden tähdistö liikkuu hitaasti. Tutkiva katse huomaa sen. Onko se viesti vai vain jokin jälki?</p><p>Echoes Through Light-Years (Kaikuja valovuosien takaa) on leikkisä tutkimusmatka, jossa taiteilijat Alves Ludovico ja Mariana Núñez Sánchez kutsuvat nuoret tutkijat tulkitsemaan hiljaisen maailmojenvälisen lähetyksen. Veistokset leijuvat matalalla kuin eksyneet satelliitit. Robotti vaeltaa huoneessa yksinäisellä tehtävällään. Kaksi kaukaista olentoa yrittää ymmärtää toisiaan ilman yhteistä kieltä, tukeutuen vain eleisiin ja arvailuun.</p><p>Mitä haluaisit sanoa kummalliselle toiselle valovuosien päässä? Ja mitä meidän jäänteemme kertoisivat meistä, vaikka emme itse sanoisi yhtään mitään?</p><p>Näyttelyn ovat toteuttaneet taiteilijat <b>Alves Ludovico</b> ja <b>Mariana Núñez Sánchez</b>, kuraattori <b>Isabela Hueara Carneiro</b> ja äänitaiteilija <b>Haiyun Yu</b>.</p><p>Näyttelyn avajaiset 13.11. klo 17–19, tervetuloa!</p><p>_</p><p>Näyttely on valittu ohjelmistoon Annantalon avoimen haun kautta. Kesän 2024 aikana hakuun tuli 126 hakemusta, joiden joukosta Annantalon oppilasraati valitsi kolme näyttelyä toisen kerroksen galleriaan.</p>",
                "sv": "<p>Långt från jorden, bland de kalla stjärnorna, roterar en tyst konstellation av förlorade saker långsamt. En nyfiken blick faller på den. Är det här ett meddelande eller bara ett spår?</p><p>Echoes Through Light-Years (Ekar genom ljusår) är en lekfull utforskning där konstnärerna Alves Ludovico och Mariana Núñez Sánchez bjuder in unga utforskare att avkoda en tyst överföring mellan världar. Skulpturer driver lågt som förlorade satelliter. En robot vandrar runt i rummet på ett ensamt uppdrag. Två avlägsna varelser försöker förstå varandra utan ett gemensamt språk och förlitar sig endast på gester och gissningar.</p><p>Vad skulle du vilja säga till en nyfiken annan, ljusår bort? Och vad skulle våra efterlämningar säga om oss, även då vi inte säger någonting alls?</p><p>Utställningen skapades av konstnärerna <b>Alves Ludovico</b> och <b>Mariana Núñez Sánchez</b>, curatorn <b>Isabela Hueara Carneiro</b> och ljudkonstnären <b>Haiyun Yu</b>.</p><p>Vernissagen är den 13.11. kl. 17–19 – Välkommen!</p><p>_</p><p>Utställningen har valts till repertoaren genom Annegårdens öppna ansökan. Under sommaren 2024 lämnades 126 ansökningar av vilka Annegårdens elevråd valde tre utställningar till galleriet på andra våningen.</p>",
                "en": "<p>Far from Earth, among the cold stars, a quiet constellation of lost things turns slowly. A curious gaze meets it. Is this a message, or just a trace?</p><p>Echoes Through Light-Years is a playful exploration in which artists Alves Ludovico and Mariana Núñez Sánchez invite young explorers to decode a quiet transmission between worlds. Sculptures drift low like lost satellites. A robot roves the room on a lonely quest. Two distant beings attempt to understand each other without a common tongue, relying only on gestures and guesswork.</p><p>What would you want to say to a curious other, light-years away? And what might our leftovers say about us, even if we say nothing at all?</p><p>The exhibition was created by artists <b>Alves Ludovico</b> and <b>Mariana Núñez Sánchez</b>, curator <b>Isabela Hueara Carneiro</b>, and sound artist <b>Haiyun Yu</b>.</p><p>Exhibition opening on November 13th from 17 to 19– Welcome!</p><p>_</p><p>The exhibition was selected for the programme through Annantalo’s open call. During the summer of 2024, 126 applications were submitted, from which Annantalo’s student jury selected three exhibitions for the gallery on the second floor of the building.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Kaukana Maasta, kylmien tähtien katveessa, hiljainen kadonneiden esineiden tähdistö liikkuu hitaasti. Tutkiva katse huomaa sen. Onko se viesti vai vain jokin jälki?",
                "sv": "Långt från jorden, bland de kalla stjärnorna, roterar en tyst konstellation av förlorade saker långsamt. En nyfiken blick faller på den. Är det här ett meddelande eller bara ett spår?",
                "en": "Far from Earth, among the cold stars, a quiet constellation of lost things turns slowly. A curious gaze meets it. Is this a message, or just a trace?"
            },
            "provider": null,
            "name": {
                "fi": "Echoes Through Light-Years – Näyttely",
                "sv": "Echoes Through Light-Years – Utställning",
                "en": "Echoes Through Light-Years – Exhibition"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66127/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "hko:2-3880",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p360/?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": {
                        "fi": "route:&lt;nolink&gt;"
                    },
                    "description": null
                }
            ],
            "data_source": "hko",
            "publisher": "ahjo:u4804001030",
            "sub_events": [],
            "images": [
                {
                    "id": 1493762,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-07T12:05:30.846196Z",
                    "last_modified_time": "2025-11-07T12:05:30.846224Z",
                    "name": "tuomas_ylinen_c_marko_rantanen_1920x1080.jpg",
                    "url": "https://helsinginkaupunginorkesteri.fi/sites/default/files/2025-10/tuomas_ylinen_c_marko_rantanen_1920x1080.jpg",
                    "cropping": "",
                    "photographer_name": "Helsingin kaupunginorkesteri",
                    "alt_text": null,
                    "data_source": "hko",
                    "publisher": "ahjo:u4804001030",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493762/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-07T10:59:01.104326Z",
            "last_modified_time": "2025-11-07T12:05:31.225491Z",
            "date_published": null,
            "start_time": "2025-11-15T16:10:00Z",
            "end_time": "2025-11-15T16:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/3880",
                "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/3880",
                "en": "https://helsinginkaupunginorkesteri.fi/en/node/3880"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Musiikkitalon Päälämpiössä konsertoivat helsinkiläisten musiikkiopistojen oppilaat.</p>",
                "sv": "<p>Elever från musikinstituten i Helsingfors uppträder i Musikhusets huvudfoajé före HSOs konserter inleds.</p>",
                "en": "<p>HPO has invited music schools in Helsinki to perform in the main foyer of the Helsinki Music Centre before its concerts.</p>"
            },
            "location_extra_info": {
                "fi": "Päälämpiö",
                "sv": "Huvudfoajé",
                "en": "Main Foyer"
            },
            "short_description": {
                "fi": "Musiikkitalon Päälämpiössä konsertoivat helsinkiläisten musiikkiopistojen oppilaat.",
                "sv": "Elever från musikinstituten i Helsingfors uppträder i Musikhusets huvudfoajé före HSOs konserter inleds.",
                "en": "HPO has invited music schools in Helsinki to perform in the main foyer of the Helsinki Music Centre before its concerts."
            },
            "provider": null,
            "name": {
                "fi": "HKO: Pieni alkusoitto",
                "sv": "HSO – Liten ouvertyr ",
                "en": "HPO – Little Overture "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-3880/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnf4e2qiu",
            "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:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf4e2roe/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491328,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-07T10:43:55.157107Z",
                    "last_modified_time": "2025-11-07T10:43:55.157122Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e8b1b282-0c58-4b8f-b8df-58024fd4f64d.png",
                    "cropping": "52,0,1071,1019",
                    "photographer_name": "",
                    "alt_text": "Turkoosi tausta ja tekstiä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491328/?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-11-07T10:45:12.020932Z",
            "last_modified_time": "2025-11-07T10:45:12.020950Z",
            "date_published": null,
            "start_time": "2025-11-29T10:30:00Z",
            "end_time": "2025-11-29T12: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,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>La 15. &amp; 29.11. Itsellisten vanhempien perhetapaaminen klo 12.30–14.00&nbsp;Entressen kirjaston Sinisessä huoneessa.</p><p>Hengähdä hetki hyvässä seurassa&nbsp;❤</p><p>Tervetuloa itsellisille vanhemmille kokoontumaan yhdessä, jakamaan vertaistukea ja tutustumaan toisiinsa.</p><p>Tervetulleeksi toivottamassa Mirka, itsekin itsellinen vanhempi.&nbsp;</p><p>Tarjolla pientä purtavaa ja kahvia/teetä.</p>",
                "en": "<p>Sat 15. &amp; 29.11. Family meeting for independent parents from 12.30–14.00 in the Blue Room of the Entresse Library.</p><p>Take a moment to breathe in good company ❤</p><p>Welcome to independent parents to gather together, share peer support and get to know each other.</p><p>Welcome by Mirka, an independent parent herself. </p><p>Snacks and coffee/tea available.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Itsellisten vanhempien perhetapaaminen klo 12.30–14.00 \n\nHengähdä hetki hyvässä seurassa.",
                "en": "Family meeting for independent parents from 12:30 to 14:00 \n\nTake a break in good company "
            },
            "provider": null,
            "name": {
                "fi": "Itsellisten vanhempien perhetapaaminen",
                "en": "Family reunion for independent parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf4e2qiu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnf4e2rai",
            "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:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf4e2roe/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491328,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-07T10:43:55.157107Z",
                    "last_modified_time": "2025-11-07T10:43:55.157122Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e8b1b282-0c58-4b8f-b8df-58024fd4f64d.png",
                    "cropping": "52,0,1071,1019",
                    "photographer_name": "",
                    "alt_text": "Turkoosi tausta ja tekstiä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491328/?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-11-07T10:45:11.911929Z",
            "last_modified_time": "2025-11-07T10:45:11.911948Z",
            "date_published": null,
            "start_time": "2025-11-15T10:30:00Z",
            "end_time": "2025-11-15T12: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,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>La 15. &amp; 29.11. Itsellisten vanhempien perhetapaaminen klo 12.30–14.00&nbsp;Entressen kirjaston Sinisessä huoneessa.</p><p>Hengähdä hetki hyvässä seurassa&nbsp;❤</p><p>Tervetuloa itsellisille vanhemmille kokoontumaan yhdessä, jakamaan vertaistukea ja tutustumaan toisiinsa.</p><p>Tervetulleeksi toivottamassa Mirka, itsekin itsellinen vanhempi.&nbsp;</p><p>Tarjolla pientä purtavaa ja kahvia/teetä.</p>",
                "en": "<p>Sat 15. &amp; 29.11. Family meeting for independent parents from 12.30–14.00 in the Blue Room of the Entresse Library.</p><p>Take a moment to breathe in good company ❤</p><p>Welcome to independent parents to gather together, share peer support and get to know each other.</p><p>Welcome by Mirka, an independent parent herself. </p><p>Snacks and coffee/tea available.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Itsellisten vanhempien perhetapaaminen klo 12.30–14.00 \n\nHengähdä hetki hyvässä seurassa.",
                "en": "Family meeting for independent parents from 12:30 to 14:00 \n\nTake a break in good company "
            },
            "provider": null,
            "name": {
                "fi": "Itsellisten vanhempien perhetapaaminen",
                "en": "Family reunion for independent parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf4e2rai/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}