Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 19236,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=34",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=32"
    },
    "data": [
        {
            "id": "kulke:66690",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "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": 1202218,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T09:13:55.734600Z",
                    "last_modified_time": "2025-07-07T09:13:55.734618Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771514.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1202218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T09:13:55.538926Z",
            "last_modified_time": "2025-07-07T09:13:55.959909Z",
            "date_published": null,
            "start_time": "2025-09-15T06:15:00Z",
            "end_time": "2025-12-15T08: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.caisa.fi/fi/tapahtumat/event/268587E6716A691563450AC7F4ED752C/Tanssi_ja_leikki_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/268587E6716A691563450AC7F4ED752C/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/268587E6716A691563450AC7F4ED752C/The_dance_and_play"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä aikuisensa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. <br>  <br>Työpaja perustuu amerikkalaisen tanssitaiteilija Alito Alessin kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta. <br> <br>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja. <br>  <br><b>Osallistuminen </b><br>Tanssi ja leikki- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p><b>Aikataulut</b><br>Tanssi ja leikki -työpajat Caisassa maanantaisin 15.9.–15.12. klo 9.15–10 ja 10.15–11.</p><p>HUOM! Työpajaa EI järjestetä 13.10. eikä 3.11.2025.<br> <br>Työpajaohjaaja: Vera Lapitskaya<br>Ikäryhmä: 1–3-vuotiaille lapsille yhdessä aikuisen kanssa</p><p>Kielet: Suomi (English, Russian and Spanish if needed) <br>Vapaa pääsy</p>",
                "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande:</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p><b>Tidschema</b><br>Workshops på Caisa på måndagar 15.9–15.12 kl. 9.15–10.00 och 10.15–11.00.</p><p>OBS! Ingen workshop hålls 13.10 och 3.11.2025.</p><p>Språk: finska (engelska, ryska och spanska vid behov)</p>",
                "en": "<p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way.</p><p>The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p><b>Participation:</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together. You can participate either one workshop or all of them on consecutive weeks. Arrive on time.</p><p>No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p><b>Schedule</b><br>Workshops at Caisa on Mondays from 15 September to 15 December, at 9:15–10:00 and 10:15–11:00.</p><p>NOTE! No workshop on 13 October and 3 November 2025.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki – Työpaja 1–3-vuotiaille taaperoille ja heidän aikuisilleen",
                "sv": "Dans och lek – Verkstaden för småbarn",
                "en": "The dance and play – Workshop for toddlers and their parents"
            },
            "short_description": {
                "fi": "Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66690/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66301",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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: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": 1201889,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T08:17:45.550061Z",
                    "last_modified_time": "2025-07-07T08:17:45.550079Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773287.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1201889/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T08:17:45.448146Z",
            "last_modified_time": "2025-07-07T08:17:45.711083Z",
            "date_published": null,
            "start_time": "2025-11-22T09:00:00Z",
            "end_time": "2025-11-22T12: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.annantalo.fi/fi/tapahtumat/event/7CB8564E5F8D3F9F282C09674DDAD0B5/Lasten_oma_paiva",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/7CB8564E5F8D3F9F282C09674DDAD0B5/Barnens_egen_dag_",
                "en": "http://www.annantalo.fi/en/events/event/7CB8564E5F8D3F9F282C09674DDAD0B5/Children_s_Day"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tässä tapahtumassa toteutetaan lasten toiveet! Tule mukaan juhlimaan Lapsen oikeuksien viikkoa Annantalolle.</p><p>Lasten oma päivä rakentuu erilaisista työpajoista ja ohjelmanumeroista, joita lapset ovat itse toivoneet edellisen vuoden Lasten päivä -tapahtumassa. Lapset toivoivat mm. legopajaa, ruusujen askartelua, tiikeritanssia ja karkkiämpäriä. <br> <br>Työpajapisteitä saa kierrellä omassa tahdissaan. Voit saapua ja lähteä silloin kun haluat.   <br>Ohjelma on pääosin suomeksi ja englanniksi, mutta kaikki kielet ja kielitaidot ovat lämpimästi tervetulleita mukaan. <br> <br>Tapahtuma on maksuton ja on suunniteltu koko perheelle.   <br> <br>Tarkempi ohjelma julkaistaan lähempänä tapahtumaa. <br> <br>Tervetuloa mukaan Lasten ikiomaan päivään!</p>",
                "sv": "<p>Under det här evenemanget uppfyller vi barnens drömmar! Kom med och fira barnrättsveckan på Annegården.</p><p>Barnens egen dag byggs upp av olika workshoppar och programnummer, som barnen själva önskade under Barnens dag förra året. Barnen önskade sig bland annat legoworkshop, rospyssel, tigerdans och godishinkar. <br> <br>Du kan gå runt bland workshopparna i din egen takt. Du kan komma och gå som det passar dig.   <br>Programmet är främst på finska och engelska, men alla språk och språkkunskaper är varmt välkomna med. <br> <br>Evenemanget är avgiftsfritt och avsett för hela familjen.   <br> <br>Mer information om programmet kommer närmare evenemanget. <br> <br>Välkommen med på barnens egen dag!</p>",
                "en": "<p>This event makes children’s wishes come true! Come and celebrate the Children’s Rights Week at Annantalo.</p><p>Children’s Day comprises a variety of workshops and programmes that children themselves wished for at the previous year’s Children’s Day event. The children wished for activities such as a Lego workshop, crafting roses, tiger dancing and a bucket of sweets. <br> <br>Visitors are welcome to tour these workshops at their own pace. You can come and go as you please.   <br>The programme is mostly in Finnish and English, but people from all language backgrounds and language skill levels are warmly welcomed!</p><p>The event is free of charge and has been designed with the whole family in mind.   <br> <br>A more detailed programme will be published closer to the event. <br> <br>Come along to celebrate Children’s Day!</p>"
            },
            "name": {
                "fi": "Lasten oma päivä – Unelmien tapahtumapäivä Annantalolla",
                "sv": "Barnens egen dag – Drömmarnas evenemangsdag på Annegården",
                "en": "Children’s Day – An event day of your dreams at Annantalo"
            },
            "short_description": {
                "fi": "Tässä tapahtumassa toteutetaan lasten toiveet! Tule mukaan juhlimaan Lapsen oikeuksien viikkoa Annantalolle.",
                "sv": "Under det här evenemanget uppfyller vi barnens drömmar! Kom med och fira barnrättsveckan på Annegården.",
                "en": "This event makes children’s wishes come true! Come and celebrate the Children’s Rights Week at Annantalo."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66301/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66342",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 1201888,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T08:17:45.184717Z",
                    "last_modified_time": "2025-07-07T08:17:45.184734Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773471.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1201888/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-07T08:17:45.062375Z",
            "last_modified_time": "2025-07-07T08:17:45.326967Z",
            "date_published": null,
            "start_time": "2025-11-22T09: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.kanneltalo.fi/fi/tapahtumat/event/84DCA7137FC08175DF8A4D5090C6D6F6/Kannelmaen_Elakkeensaajien_Kannelmaen_Marttojen_joulumyyjaiset",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/84DCA7137FC08175DF8A4D5090C6D6F6/Kannelmaen_Elakkeensaajien_Kannelmaen_Marttojen_joulumyyjaiset",
                "en": "http://www.kanneltalo.fi/en/events/event/84DCA7137FC08175DF8A4D5090C6D6F6/Kannelmaen_Elakkeensaajien_Kannelmaen_Marttojen_joulumyyjaiset"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kannelmäen Eläkkeensaajat ja Kannelmäen Martat järjestävät yhteiset joulumyyjäiset Kanneltalossa. Perinteisten leivonnaisten lisäksi myynnissä on mm. käsitöitä. Luvassa on myös arpajaiset.</p><p>Kannelmäen Eläkkeensaajat ry täytti kunniakkaat 45 vuotta tammikuussa 2025. Kokoonnumme maanantaisin Kaarelantie 86 C-rapun viereisessä kerhohuoneessa klo 11–13 mukavan yhdessäolon merkeissä. Joka toinen maanantai kutsumme ulkopuolisia asiantuntijoita ja joka toinen viikko tapaamme vapaamuotoisemmin, seurustelun, visailun, bingon ja kevyen venyttelyjumpan merkeissä. Käymme vuoden aikana myös teatterissa, konsertissa, risteilyllä ja retkillä. Lisätiedot: <br>Iloa yhdessä toimimisesta! - Kannelmäen Eläkkeensaajat ry.</p><p>Marttaliitto on 1899 perustettu, kotitalousneuvontaa antava kansalaisjärjestö, jonka tehtävänä on edistää kotien ja perheiden toimivaa ja kestävää arkea. Järjestö on puoluepoliittisesti sekä uskonnollisesti sitoutumaton.</p><p>Marttailu on arjentaitojen edistämistä, verkostoitumista ja yhteisöllisyyttä. Hyvä arki kuuluu kaikille. Kannelmäen Martat ry on toiminut jo yli viidenkymmenen vuoden ajan. Jäsenet tulevat lähinnä Kannelmäen ja Kaarelan alueelta. Martta-iltoihin kokoonnutaan erilaisten luentojen, kotitalouskurssien ja kädentaitojen merkeissä. Martat järjestävät myös teatteriretkiä ja vierailuja näyttelyissä ja museoissa.</p><p>Yhdistyksen ohjelmat suunnitellaan jäsenten toiveiden mukaan. Tavoitat meidät lähettämällä sähköpostia osoitteeseen: kannelmaenmartat.ry@gmail.com</p>"
            },
            "name": {
                "fi": "Kannelmäen Eläkkeensaajien & Kannelmäen Marttojen joulumyyjäiset",
                "sv": "Kannelmäen Eläkkeensaajien & Kannelmäen Marttojen joulumyyjäiset",
                "en": "Kannelmäen Eläkkeensaajien & Kannelmäen Marttojen joulumyyjäiset"
            },
            "short_description": {
                "fi": "Kannelmäen Eläkkeensaajat ja Kannelmäen Martat järjestävät yhteiset joulumyyjäiset Kanneltalossa. Perinteisten leivonnaisten lisäksi myynnissä on mm. käsitöitä. Luvassa on myös arpajaiset."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66342/?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-07-07T08:17:43.535662Z",
            "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/Alves_Ludovico_ja_Mariana_N_ez_S_nchez_Echoes_Through_Light-Years",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/84820D87546D143CC414AC64E798D957/Alves_Ludovico_och_Mariana_N_ez_S_nchez_Echoes_Through_Light-Years",
                "en": "http://www.annantalo.fi/en/events/event/84820D87546D143CC414AC64E798D957/Alves_Ludovico_Mariana_N_ez_S_nchez_Echoes_Through_Light-Years"
            },
            "provider_contact_info": null,
            "provider": 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 avajaiset 13.11. klo 17–19, tervetuloa!</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 ä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>Vernissagen är den 13.11. kl. 17–19 – Välkommen!</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>Exhibition opening on November 13th from 17 to 19– Welcome!</p>"
            },
            "name": {
                "fi": "Alves Ludovico ja Mariana Núñez Sánchez: Echoes Through Light-Years – Näyttely",
                "sv": "Alves Ludovico och Mariana Núñez Sánchez: Echoes Through Light-Years – Utställning",
                "en": "Alves Ludovico & Mariana Núñez Sánchez: Echoes Through Light-Years – Exhibition"
            },
            "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?"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66127/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66689",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "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": 1201884,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T08:17:36.191298Z",
                    "last_modified_time": "2025-07-07T08:17:36.191315Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771552.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1201884/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T08:17:36.012842Z",
            "last_modified_time": "2025-07-07T08:17:36.415102Z",
            "date_published": null,
            "start_time": "2025-09-11T07:00:00Z",
            "end_time": "2025-12-18T10: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.caisa.fi/fi/tapahtumat/event/8532A241BC37608102D448ED07A73380/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8532A241BC37608102D448ED07A73380/Taidetta_taaperoille",
                "en": "http://www.caisa.fi/en/events/event/8532A241BC37608102D448ED07A73380/Taidetta_taaperoille"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.<br> <br><b>Osallistuminen </b><br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br><b>Aikataulut</b><br>Työpaja järjestetään torstaisin 11.9.–18.12.2025 klo 10–12.</p><p>Huom! Työpajaa EI järjestetä: 14.10., 16.10 eikä 2.12.2025.</p><p>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä aikuisen kanssa</p><p>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p><b>Tidschema</b><br>Workshopen hålls på torsdagar 11.9–18.12 2025 kl. 10–12.</p><p>Obs! Workshopen hålls INTE: 14.10, 16.10 och 2.12.2025.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen</p><p>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p><b>Schedule</b><br>The workshop takes place on Thursdays from 11 September to 18 December 2025, at 10–12.</p><p>Note! The workshop will NOT take place on: 14 October, 16 October, and 2 December 2025.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult</p><p>Language: English and Finnish<br>Free entry</p>"
            },
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Taidetta taaperoille – Öppen konst studio för småbarn",
                "en": "Taidetta taaperoille – Open Art studio for Toddlers and their Parents"
            },
            "short_description": {
                "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66689/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66688",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "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": 1201883,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T08:17:35.336646Z",
                    "last_modified_time": "2025-07-07T08:17:35.336663Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771538.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1201883/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T08:17:35.123489Z",
            "last_modified_time": "2025-07-07T08:17:35.589553Z",
            "date_published": null,
            "start_time": "2025-09-09T10:30:00Z",
            "end_time": "2025-12-16T13: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.caisa.fi/fi/tapahtumat/event/191D00C77796501DF022CF8B82C3DD3C/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/191D00C77796501DF022CF8B82C3DD3C/Taidetta_taaperoille_",
                "en": "http://www.caisa.fi/en/events/event/191D00C77796501DF022CF8B82C3DD3C/Taidetta_taaperoille"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.<br> <br><b>Osallistuminen </b><br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain.</p><p>Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br><b>Aikataulut</b><br>Työpaja järjestetään tiistaisin 9.9.–16.12.2025 klo 13.30–15.30.</p><p>Huom! Työpajaa EI järjestetä: 14.10., 16.10 eikä 2.12.2025.</p><p>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä aikuisen kanssa</p><p>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p><b>Tidschema</b><br>Workshopen hålls på tisdagar 9.9–16.12.2025 kl. 13.30–15.30.</p><p>Obs! Workshopen hålls INTE: 14.10, 16.10 och 2.12.2025.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen</p><p>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p><b>Schedule</b><br>The workshop takes place on Tuesdays from 9 September to 16 December 2025, at 1:30–3:30 PM.</p><p>Note! The workshop will NOT take place on: 14 October, 16 October, and 2 December 2025.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult</p><p>Language: English and Finnish<br>Free entry</p>"
            },
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Taidetta taaperoille – Öppen konst studio för småbarn",
                "en": "Taidetta taaperoille – Open Art studio for Toddlers and their Parents"
            },
            "short_description": {
                "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66688/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22ogki",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22odzu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oeoy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ofde/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ofxa/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490168,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-12-31T12:30:27.281840Z",
                    "last_modified_time": "2024-12-31T12:30:27.282263Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/4d633a11-3d95-4210-a079-e479f4d362c0.jpg",
                    "cropping": "100,0,700,600",
                    "photographer_name": "Taru Mäkelä",
                    "alt_text": "Kuvassa Sonja Peschkow kaksi kirjaa kädessään",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490168/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-07T06:48:28.407033Z",
            "last_modified_time": "2025-07-07T07:02:29.231010Z",
            "date_published": null,
            "start_time": "2025-09-17T14:00:00Z",
            "end_time": "2025-12-17T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.facebook.com/events/589437670886172/589437677552838/?acontext=%7B%22event_action_history%22%3A[%7B%22extra_data%22%3A%22%22%2C%22mechanism%22%3A%22unknown%22%2C%22surface%22%3A%22user_timeline%22%7D%2C%7B%22extra_data%22%3A%22%22%2C%22mechanism%22%3A%22events_section_for_community_additional_profile%22%2C%22surface%22%3A%22community_additional_profile%22%7D%2C%7B%22extra_data%22%3A%22%22%2C%22mechanism%22%3A%22surface%22%2C%22surface%22%3A%22create_dialog%22%7D]%2C%22ref_notif_type%22%3Anull%7D&onload_action=open_invite_flow&show_created_event_toast=true"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Espoon kauounginkirjasto",
                "sv": "Esbo stadsbibliotek",
                "en": "Espoo city library"
            },
            "description": {
                "fi": "<strong>Tervetuloa selkolukupiiriin!</strong>\n<br><p><strong>Ke 17.9. Hanna Männikkölahti (alkuperäisteos: Eve Hietamies): Yösyöttö </strong></p><p><strong>Ke 15.10. Johanna Veistinen: Kesätuuli kuivaa kyyneleet</strong></p><p><strong>Ke 12.11. Sanna-Leena Knuuttila (alkuperäisteos: Marko Hautala): Pimeän arkkitehti</strong></p><p><strong>Ke 17.12. Anniina Salin (alkuperäisteos: Minna Lindgren): Kuolema Ehtoolehdossa</strong></p><p><br></p><p>Tule selkolukupiiriin, jos olet aikuinen ja haluat kehittää lukutaitoasi tai innostua lukemisesta.</p><p>&nbsp;</p><p>Selkolukupiiri sopii esimerkiksi hyvin suomea puhuville maahanmuuttajille, lukuhaasteisille tai heille, jotka ovat kadottaneet lukemisen innon.</p><p>&nbsp;</p><p>Selkokirjat ovat kirjoja, jotka on kirjoitettu helpolla suomen kielellä. Selkokirjoista on helppo aloittaa lukuharrastus.</p><p>&nbsp;</p><p>Lukupiiriä vetää kirjastopedagogi Sonja Peschkow. Lisätietoja: sonja.peschkow@espoo.fi</p><p><br></p><p><br></p><p><br></p>\n<strong>Miten osallistut selkolukupiiriin:</strong><p><br></p><p>1.Tarvitset kirjastokortin. Lainaa lukupiirissä seuraavaksi luettava kirja. Lainaa kirja lähikirjastostasi, tai Sellon kirjastosta infotiskiltä. Jos sinulla ei vielä ole kirjastokorttia, saat kirjastokortin maksutta kirjastolta henkilötodistusta vastaan.</p><p>2.Tutustu kirjaan ennen lukupiiriä. Ei haittaa, vaikka et kerkeäisi lukea koko kirjaa.</p><p>3.Tule lukupiiriin keskustelemaan kirjasta.</p>",
                "sv": "<strong>Välkommen till lättläst bokcirkeln!</strong><p><br></p><p><strong>Ke 17.9. Hanna Männikkölahti (original av: Eve Hietamies): Yösyöttö </strong></p><p><strong>Ke 15.10. Johanna Veistinen: Kesätuuli kuivaa kyyneleet</strong></p><p><strong>Ke 12.11. Sanna-Leena Knuuttila (original av: Marko Hautala): Pimeän arkkitehti</strong></p><p><strong>Ke 17.12. Anniina Salin (original av: Minna Lindgren): Kuolema Ehtoolehdossa</strong></p><p>&nbsp;</p><p>Om du är vuxen och vill utveckla din läsförmåga eller få lust att läsa, är denna bokcirkel för dig.</p><p>&nbsp;</p><p>Bokcirkeln lämpar sig för invandrare som talar bra finska, för personer med läsnedsättning eller för personer som har tappat läslusten.</p><p>&nbsp;</p><p>Lättlästa böcker är böcker som är skrivna på lättläst språk. De är ett enkelt sätt att komma i gång med en läshobby. Språket i bokcirkeln är finska.</p><p>&nbsp;</p><p>Bokcirkeln leds av bibliotekspedagog Sonja Peschkow. För mer information: sonja.peschkow@espoo.fi</p><p>&nbsp;</p><p><br></p><p><br></p><p><br></p>\n<strong>Så här kommer du med i bokcirkeln:</strong><p>&nbsp;</p><p>1.Du behöver ett bibliotekskort. Låna den bok som läsas härnäst i bokcirkeln. Låna en bok på ditt lokala bibliotek eller i informationsdisken på Sello biblioteket. Om du inte redan har ett bibliotekskort kan du få det kostnadsfritt på biblioteket mot uppvisande av legitimation.</p><p>2.Bekanta dig med boken innan bokcirkeln. Det spelar ingen roll om du inte har tid att läsa hela boken.</p><p>3.Kom till läsecirkeln för att diskutera boken.</p>",
                "en": "<strong>Welcome to the easy-to-read book circle!</strong><p>&nbsp;</p><p><strong>Ke 17.9. Hanna Männikkölahti (original author: Eve Hietamies): Yösyöttö </strong></p><p><strong>Ke 15.10. Johanna Veistinen: Kesätuuli kuivaa kyyneleet</strong></p><p><strong>Ke 12.11. Sanna-Leena Knuuttila (original author: Marko Hautala): Pimeän arkkitehti</strong></p><p><strong>Ke 17.12. Anniina Salin (original author: Minna Lindgren): Kuolema Ehtoolehdossa</strong></p><p><strong>&nbsp;</strong></p><p>If you are an adult and want to develop your reading skills or get excited about reading, come to the reading circle.</p><p>&nbsp;</p><p>The reading circle is suitable for immigrants who speak Finnish well, for people with a reading challenge or for those who have lost the enthusiasm for reading.</p><p>&nbsp;</p><p>Easy-to-read books are books that are written in easy-to-read Finnish. They are an easy way to start a reading hobby.</p><p>&nbsp;</p><p>The reading circle is hosted by library pedagogue Sonja Peschkow. For more information: sonja.peschkow@espoo.fi</p><p>&nbsp;</p><p><br></p><p><br></p><p><br></p>\n<strong>How to join the reading circle:</strong><p><br></p><p>1.You need a library card. Borrow the next book to be read for the reading circle. Borrow a book from your local library, or from the information desk at Sello library. If you don't have a library card yet, you can acquire one from the library free of charge - please take your ID with you.</p><p>2.Acquaint yourself with the book before the reading circle.</p><p>3.Come to the reading circle to discuss the book.</p>"
            },
            "name": {
                "fi": "Selkolukupiiri / syksy 2025",
                "sv": "Lättläst bokcirkeln / höst 2025",
                "en": "Easy-to-read book circle / autumn 2025"
            },
            "short_description": {
                "fi": "Tule selkolukupiiriin, jos olet aikuinen ja haluat kehittää lukutaitoasi tai innostua lukemisesta.",
                "sv": "Om du är vuxen och vill utveckla din läsförmåga eller få lust att läsa, är denna bokcirkel för dig. ",
                "en": "If you are an adult and want to develop your reading skills or get excited about reading, come to the reading circle."
            },
            "location_extra_info": {
                "fi": "Akseli",
                "sv": "Akseli",
                "en": "Akseli"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ogki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66382",
            "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: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: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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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:p29865/?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": 771387,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-15T13:14:18.467884Z",
                    "last_modified_time": "2025-05-15T13:14:18.467907Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760355.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/771387/?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-05-15T13:14:18.163087Z",
            "last_modified_time": "2025-07-06T14:12:37.912414Z",
            "date_published": null,
            "start_time": "2025-08-14T12:00:00Z",
            "end_time": "2025-08-14T17: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.vuotalo.fi/fi/tapahtumat/event/012A00A9CA6E4F8F104FAC6C1532AEC3/Vuotalon_Taiteiden_yo_2025",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/012A00A9CA6E4F8F104FAC6C1532AEC3/Konstens_natt_pa_Nordhuset_2025",
                "en": "http://www.vuotalo.fi/en/events/event/012A00A9CA6E4F8F104FAC6C1532AEC3/Night_of_the_Arts_at_Vuotalo_2025"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Taiteiden yössä on musiikkia ja tekemistä koko perheelle! Ihaile uutta valokuvataidetta ja virkistäydy tanssia ja musiikkia yhdistelevässä show’ssa.</p><p>Tule tunnelmoimaan Taiteiden yötä Vuotorille ja Vuotalon aulaan! Osallistu Jättimuskariin, koko perheen työpajoihin, taidenäyttelyn avajaisiin ja monikulttuuristen perhejärjestöjen tapahtumatorille. Kuuntele kuinka huippulaulajat laulavat rauhan puolesta ja koe vauhdikas Delado Internationalin vesiputouksesta inspiroitunut tanssi- ja musiikkiesitys!</p><p><b>Ohjelma Vuotorilla</b><br>klo 15 Annika Cleo, Paul Elias, Ari Stockås & Ramy Essam: SING FOR PEACE<br>klo 16–18 MONikULttUURiStEn perhejärjestöjen tapahtumatori<br>klo 16–18 Työväenopiston porkkanapillityöpaja<br>klo 18 Delado International: The Purifying Waterfall (Puhdistava vesiputous)</p><p><b>Ohjelma Vuotalon sisätiloissa</b><br>klo 15.30–18.45 Työväenopiston naamio- ja merkkityöpajat yläkerran taideluokissa koko perheelle. <br>klo 16–17 Vuomu ja IHMO esittäytyvät: Musiikkia koko perheelle!<br>klo 17–20 Todellisuuksia / Realities -näyttelyn avajaiset</p><p><b>Lisätietoja ohjelmasta</b></p><p><b>klo 15 Annika Cleo, Paul Elias, Ari Stockås & Ramy Essam: SING FOR PEACE</b><br>Sing for Peace-konsertti on täynnä aurinkoa! Laulu minulta sinulle. Meiltä teille. Kylästä toiseen. Maasta toiseen maahan. Ympäri maapalloa ja takaisin. Yhdessä luomme paremman maailman, joten tule, kuuntele ja laula! Annika Cleon Paul Eliaksen & Ari Stockåsin kanssa esiintymässä myös egyptiläinen Ramy Essam. Luvassa on Lauluja eri puolilta maailmaa ruotsiksi, suomeksi ja englanniksi. <br>Kesto: noin 35 minuuttia<br>Paikka: Vuotori</p><p><b>klo 16–18 MONikULttUURiStEn perhejärjestöjen tapahtumatori</b> <br>Monikulttuuriset perhejärjestöt kertovat toiminnastaan ja palveluistaan. Tiedon lisäksi on tarjolla pienimuotoista ohjelmaa lapsille ja lapsiperheille. Tervetuloa!</p><p><b>klo 16 alkaen Vuomun musisointia ja IHMO:n Jättimuskari</b><br>Lämpimästi tervetuloa kesäiselle muskariretkelle! Muskariopettajat ja bändi laulattavat ja leikittävät koko perhettä! Luvassa myös soitinesityksiä.<br>Paikka: Vuotalon aula<br> <br><b>klo 17–20 Todellisuuksia / Realities -näyttelyn avajaiset</b><br>Vuotalon näyttelytila täyttyy Taiteiden yönä 2025 valokuvataiteesta, kun Turussa marraskuussa 2024 esillä ollut ryhmänäyttely Todellisuuksia | Realities rantautuu päivitettynä versiona Helsinkiin. Ryhmänäyttelyyn osallistuvia yhdistää Turun taideakatemian historian ensimmäinen valokuvataiteen YAMK-koulutus, jota kaikki osallistujat opiskelivat vuosina 2023–2024.</p><p>Avajaisissa klo 17.30 esiintyy nuori duo, Hilda Aho ja Tuukka Hokkala, jotka soittavat omia pop-kappaleitaan sekä yhden cover-kappaleen flyygelin ja kitaran säestyksellä.<br>Paikka: Vuotalon aula</p><p><b>klo 18<br>Delado International: Puhdistava vesiputous</b><br>Tanssia ja musiikkia sisältävä esitys, joka ylistää elämäniloa, ystävällisyyttä ja vapauden riemua!</p><p>Burkina Fason moniääniset rytmit, perinteinen tanssi, latinalaisamerikkalainen merengue, suomalainen mystiikka sekä suomenruotsalainen tanssi ja laulu kietoutuvat yhteen ainutlaatuisessa kulttuurien fuusiossa.</p><p>Delado Internationalin riveissä soittaa ja tanssii ammattitaiteilijoita Burkina Fasosta ja Suomesta. Ryhmän karismaattinen johtaja, koreografi ja tanssija Sanna Karlsson-Sutisna johdattaa yleisön rytmien, työpajojen ja liikkeen maailmaan yhdessä muusikko Rodrigo Rodriguesin sekä Burkina Fason griottiperinnettä jatkavien muusikoiden kanssa.</p><p>Esitys sopii kaikenikäisille ja kaiken kielisille!<br>Paikka: Vuotori</p>",
                "sv": "<p>På Konstens natt finns musik för hela familjen! Beundra den nya fotokonsten och njut av showen som kombinerar dans och musik.</p><p>Kom och trivs under Konstens natt på Nortorget och i Nordhuset! Delta i Jättimuskari, invigningen av konstutställningen och de mångkulturella familjeorganisationernas evenemangstorg. Lyssna på hur toppsångare sjunger för fred och upplev Delado Internationals fartfyllda dans- och musikföreställning inspirerat av ett vattenfall!</p><p><b>Program på Nortorget</b><br>kl. 15 Annika Cleo, Paul Elias, Ari Stockås & Ramy Essam: SING FOR PEACE<br>kl. 16–18 De mångkulturella familjeorganisationernas evenemangstorg<br>kl. 16–18 Hantverksverkstad för familjer<br>kl. 18 Delado International: The Purifying Waterfall (Det renande vattenfallet)</p><p><b>Program i Nordhus</b><br>kl. 15.30–18.45 Hantverksverkstäder för familjer, andra våningen<br>kl. 16 Vuomu och IHMO: Musik for hela familjen<br>kl. 17–20 Invigning av utställningen Verkligheter / Realities</p><p><b>kl. 15 Annika Cleo, Paul Elias, Ari Stockås & Ramy Essam: SING FOR PEACE</b><br>Sing for Peace – en konsert full av solsken! En sång från mig till dig. Från oss till er. Från en by till en annan. Från ett land till ett annat. Runt jorden och tillbaka. Tillsammans skapar vi en bättre värld så kom, lyssna och sjung! Annika Cleo tillsammans med Paul Elias & Ari Stockås Gästade av Ramy Essam (Egypten) Sånger från världens alla hörn på svenska, finska, och engelska. <br>Tid: ca 35 minuter</p><p><b>kl. 16–18 De mångkulturella familjeorganisationernas evenemangstorg </b><br>Mångkulturella familjeorganisationer berättar om sin verksamhet och sina tjänster. Utöver information erbjuds småskaligt program för barn och barnfamiljer. Välkommen!</p><p><b>kl. 16 Vuomu's musik och IHMO:s Jättimuskari</b><br>Varmt välkomna till den somriga musiklekisutflykten!  Musiklekislärarna och bandet sjunger och leker med hela familjen!<br> <br><b>kl. 17–20 Invigning av utställningen Verkligheter / Realities</b><br>Utställningslokalen i Nordhuset fylls med fotokonst under Konstens natt 2025 då grupputställningen Verkligheter | Realities, som ställdes ut i Åbo i november 2024, kommer till Helsingfors som en uppdaterad version. De som deltar i grupputställningen förenas av den första utbildningen i historien med högre yrkeshögskoleexamen i fotokonst vid Konstakademin vid Åbo yrkeshögskola, där alla deltagare studerade 2023–2024.<br> <br>Vid invigningen kl. 17.30 uppträder den unga duon Hilda Aho och Tuukka Hokkala, som spelar egna poplåtar och en cover med flygel och gitarr.</p><p><b>kl. 18 Delado International: Renande vattenfall</b><br>Ett uppträdande med dans och musik som hyllar livsglädje, vänlighet och frihetsglädje!<br>Burkina Fasos mångstämmiga rytmer, traditionell dans, latinamerikansk merengue, finländsk mystik samt finlandssvensk dans och sång sammanflätas i en unik kulturfusion. <br>I Delado International spelar och dansar professionella konstnärer från Burkina Faso och Finland. Gruppens karismatiska ledare, koreograf och dansare Sanna Karlsson-Sutisna leder publiken in i rytmernas, verkstädernas och rörelsens värld tillsammans med musikern Rodrigo Rodrigues samt musikerna som fortsätter Burkina Fasos griot-tradition.</p><p>Passar för alla åldrar och alla språk.</p>",
                "en": "<p>The Night of the Arts offers music for the whole family! Admire new photographic art and enjoy a refreshing show that combines dance and music.</p><p>Come and enjoy the spirit of the Night of the Arts at Vuotori Square and the lobby of Cultural Centre Vuotalo! Participate in a music playschool event, the opening of an art exhibition and the event square for multicultural family organisations. Listen to top singers singing for peace and experience the fast-paced dance and music performance by Delado International that takes inspiration from a waterfall!</p><p><b>Programme at Vuotori Square</b><br>15.00 Annika Cleo, Paul Elias, Ari Stockås & Ramy Essam: SING FOR PEACE<br>16.00–18.00 Event square of multicultural family organisations<br>16.00–18.00 Art and craft workshop for the whole family<br>18.00 Delado International: The Purifying Waterfall</p><p><b>Programme inside Vuosaari House</b><br>15.30–18.45 Art and craft workshops for the whole family, upstairs<br>16.00–17.00 Kids' music and Jättimuskari – a music playschool event <br>17.00–20.00 Opening of the ‘Todellisuuksia/Realities’ exhibition</p><p><b>15.00 Annika Cleo, Paul Elias, Ari Stockås & Ramy Essam: SING FOR PEACE </b><br>Sing for Peace – a concert full of sunshine! A song from me to you. From us to you. From one village to another. From one country to another. Around the world and back. Together we create a better world so come, listen, and sing! Annika Cleo together with Paul Elias & Ari Stockås Guest featuring Ramy Essam (Egypt) Songs from all around the world in Swedish, Finnish and English. <br>Duration: approximately 35 minutes</p><p><b>16.00–18.00 Event square of multicultural family organisations </b><br>Multicultural family organisations talk about their activities and services. In addition to information, the event features small-scale activities for children and families with children. See you there!</p><p><b>16.00 Vuomu and IHMO: Music for the whole family!</b><br>Come and join us for a summertime music playschool excursion! <br> <br><b>17.00–20.00 Opening of the ‘Todellisuuksia/Realities’ exhibition</b><br>On the Night of the Arts 2025, the exhibition space at Cultural Centre Vuotalo will be filled with photographic art when an updated version of the group exhibition ‘Todellisuuksia/Realities’ that was displayed in Turku in November 2024 comes to Helsinki. The group exhibition’s participants are connected through the first ever Master’s Degree Programme in Photography offered by the Turku Arts Academy, in which all of the participants took part between 2023 and 2024.</p><p>The young duo Hilda Aho and Tuukka Hokkala will perform at the opening event at 17.30, playing their own pop songs and one cover song on the grand piano and guitar.</p><p><b>18.00 Delado International: Cleansing Waterfall</b><br>A performance containing dance and music that celebrates the joy of life, kindness and the joy of freedom!</p><p>This unique fusion of cultures combines polyphonic rhythms from Burkina Faso, traditional dance, merengue from Latin America, Finnish mysticism and Finland-Swedish dance and singing. <br>The line-up of Delado International includes professional musicians and dancers from Burkina Faso and Finland. The group’s charismatic leader, choreographer and dancer Sanna Karlsson-Sutisna, leads the audience to the world of rhythm, workshops and movement together with musician Rodrigo Rodrigues and musicians who continue the griot tradition of Burkina Faso.</p><p>Suitable for people of all ages and languages.</p>"
            },
            "name": {
                "fi": "Vuotalon Taiteiden yö 2025",
                "sv": "Konstens natt på Nordhuset 2025",
                "en": "Night of the Arts at Vuotalo 2025"
            },
            "short_description": {
                "fi": "Taiteiden yössä on musiikkia ja tekemistä koko perheelle! Ihaile uutta valokuvataidetta ja virkistäydy tanssia ja musiikkia yhdistelevässä show’ssa.",
                "sv": "På Konstens natt finns musik för hela familjen! Beundra den nya fotokonsten och njut av showen som kombinerar dans och musik.",
                "en": "The Night of the Arts offers music for the whole family! Admire new photographic art and enjoy a refreshing show that combines dance and music."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66382/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66357",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:596/?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:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1179031,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T10:12:40.768558Z",
                    "last_modified_time": "2025-07-04T10:12:40.768592Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773619.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1179031/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T10:12:40.719027Z",
            "last_modified_time": "2025-07-04T11:12:44.190160Z",
            "date_published": null,
            "start_time": "2025-10-25T07: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.kanneltalo.fi/fi/tapahtumat/event/8BAB1A7E1FB5D051BD083D11BEBDE449/MLL_n_lastenvaate_ja_-tarvikekirppis",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8BAB1A7E1FB5D051BD083D11BEBDE449/MLL_Gamlas_Loppis_for_barnklader_och_barnutrustning",
                "en": "http://www.kanneltalo.fi/en/events/event/8BAB1A7E1FB5D051BD083D11BEBDE449/MLL_Kannelmaki_Flea_market_for_children_s_clothing_and_equipment"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tule ostoksille tai varaa oma myyntipöytä! Kirppis järjestetään Kanneltalon aulassa.</p><p>Tule ostoksille tai varaa oma myyntipöytä!</p><p>Kirppis järjestetään Kanneltalon aulassa.<br>Pöydän hinta yhdistyksen jäseniltä 7 €, muilta 10 €.</p><p>Pöytävaraukset: https://kannelmaki.mll.fi/kirpputori/</p>",
                "sv": "<p>Kom och handla eller reservera ett eget bord!</p><p>Loppmarknaden ordnas i Gamlasgårdens lobby.<br>Ett bord kostar 7 € för föreningens medlemmar, 10 € för andra.</p><p>Bordsbokningar: https://kannelmaki.mll.fi/kirpputori/</p>",
                "en": "<p>Come shop or book your own sales table!</p><p>The flea market is held in the lobby of Kanneltalo.<br>Tables are priced at €7 for members, €10 for others.</p><p>Table reservations: https://kannelmaki.mll.fi/kirpputori/</p>"
            },
            "name": {
                "fi": "MLL:n lastenvaate ja -tarvikekirppis",
                "sv": "MLL Gamlas: Loppis för barnkläder och barnutrustning",
                "en": "MLL Kannelmäki: Flea market for children’s clothing and equipment"
            },
            "short_description": {
                "fi": "Tule ostoksille tai varaa oma myyntipöytä! Kirppis järjestetään Kanneltalon aulassa."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66357/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66687",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1179029,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T10:12:39.980148Z",
                    "last_modified_time": "2025-07-04T10:12:39.980161Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774073.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1179029/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T10:12:39.927802Z",
            "last_modified_time": "2025-07-04T10:12:40.057744Z",
            "date_published": null,
            "start_time": "2025-10-14T07:00:00Z",
            "end_time": "2025-10-14T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8029867F7B5050BC100A42D224C3026C/Vaianan_korupaja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8029867F7B5050BC100A42D224C3026C/Vaianan_korupaja",
                "en": "http://www.malmitalo.fi/en/events/event/8029867F7B5050BC100A42D224C3026C/Vaianan_korupaja"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Työpajassa valmistetaan Vaianan jalanjäljissä merellisiä koruja, jotka pitävät sisällään maagisia voimia. Mitä taianomaista sinun korusi pystyy tekemään?</p><p>Syyslomalla Malmitalolla järjestetään maksuttomia työpajoja. Luvassa on askarreltavaa ja muuta kivaa puuhaa lapsille ja perheille. Jokaiselle työpajalle on oma teemansa, joka on inspiroitunut kyseisen päivän syyslomaleffasta.</p><p>Vapaa pääsy!<br>Paikka: Malmitalon parvi</p>"
            },
            "name": {
                "fi": "Vaianan korupaja – Syyslomatekemistä",
                "sv": "Vaianan korupaja – Syyslomatekemistä",
                "en": "Vaianan korupaja – Syyslomatekemistä"
            },
            "short_description": {
                "fi": "Työpajassa valmistetaan Vaianan jalanjäljissä merellisiä koruja, jotka pitävät sisällään maagisia voimia. Mitä taianomaista sinun korusi pystyy tekemään?"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66687/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66054",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "29,90 € / 21,80 €",
                        "sv": "29,90 € / 21,80 €",
                        "en": "29,90 € / 21,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stella-polaris/stella-polaris-malmi-noir-improvisoitu-rikosdraama-3886102/",
                        "sv": "https://www.lippu.fi/artist/stella-polaris/stella-polaris-malmi-noir-improvisoitu-rikosdraama-3886102/",
                        "en": "https://www.lippu.fi/artist/stella-polaris/stella-polaris-malmi-noir-improvisoitu-rikosdraama-3886102/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1179028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T10:12:39.659412Z",
                    "last_modified_time": "2025-07-04T10:12:39.659425Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770647.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1179028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T10:12:39.600941Z",
            "last_modified_time": "2025-07-04T10:12:39.756481Z",
            "date_published": null,
            "start_time": "2025-10-11T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/46E2523CC4D17590D9F77840100685F5/Malmi_Noir_improvisoitu_rikosdraama",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/46E2523CC4D17590D9F77840100685F5/Malmi_Noir_improvisoitu_rikosdraama",
                "en": "http://www.malmitalo.fi/en/events/event/46E2523CC4D17590D9F77840100685F5/_Malmi_Noir_improvisoitu_rikosdraama"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tule luomaan esitystä yhdessä kanssamme ja seuraamaan ratkeaako rikos!</p><p>Sorjonen, Silta, Wallander, Ivalo… Nordic noir valloittaa maailmaa televisiossa ja valkokankaalla ja Stella Polaris tuo suositun tyylilajin myös teatterinäyttämölle. Tummanpuhuva rikosdraama saa alkunsa yleisön antamista lähtökohdista, ja näin käynnistyy tapahtumaketju, jossa kaikki ovat epäiltyjä, kunnes toisin todistetaan.</p><p>Stella Polariksen taitavat improvisoijat tarttuvat rikostarinoista synkimpään ja tekevät siitä oman tulkintansa. Improvisaatiossa mitään ei ole ennalta sovittu, joten syyllinen voi olla kuka tahansa.  <br>Esiintyjät vaihtuvat esityksissä. Kaikki oikeudet muutoksiin pidetään!</p><p>Esityksen kesto: 1 t 45 min (sis. väliajan). <br>Ikäsuositus: 13 v.  <br>Esityksen kieli: suomi</p>"
            },
            "name": {
                "fi": "Malmi Noir – improvisoitu rikosdraama – Stella Polaris",
                "sv": "Malmi Noir – improvisoitu rikosdraama – Stella Polaris",
                "en": "Malmi Noir – improvisoitu rikosdraama – Stella Polaris"
            },
            "short_description": {
                "fi": "Tule luomaan esitystä yhdessä kanssamme ja seuraamaan ratkeaako rikos!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66054/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66349",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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: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": 1178361,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:37.500005Z",
                    "last_modified_time": "2025-07-04T08:12:37.500018Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773474.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178361/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:37.445641Z",
            "last_modified_time": "2025-07-04T09:13:57.933718Z",
            "date_published": null,
            "start_time": "2025-10-13T15: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.kanneltalo.fi/fi/tapahtumat/event/BA22C86C9FCA490C7435935142041382/Kirjailijavieraana_Satu_Ramo",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/BA22C86C9FCA490C7435935142041382/Kirjailijavieraana_Satu_Ramo",
                "en": "http://www.kanneltalo.fi/en/events/event/BA22C86C9FCA490C7435935142041382/Kirjailijavieraana_Satu_Ramo"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Yleisön pyynnöstä Kanneltalon saliin saapuu huippusuosittu kirjailija Satu Rämö!</p><p>Tilaisuudessa keskustellaan Rämön menestyksekkäästä Hildur-sarjasta, etenkin viimeisimmästä Rakel-teoksesta (WSOY 2024).</p><p>Rikosetsivä Hildur Rúnarsdóttirin arki on pitkästä aikaa seesteistä, hän on käynyt surffauslomalla Havaijilla ja Länsivuonoilla on ollut rauhallista. Myös Jakob Johanson on tyytyväinen, vaikka Jakobin pojan kotiutuminen Islantiin ei ole sujunut ongelmitta. Hildur käy säännöllisesti vanhainkodissa tapaamassa perhetuttavaansa Helgaa. Vanhoja muistellessa alkaa paljastua uusia, yllättäviä asioita Rakel-äidistä.</p><p>Hildurin lapsuuden kotitalon remontti etenee, kunnes pahin mahdollinen salaisuus paljastuu. Samaan aikaan kesäiseen Ísafjörðuriin saapuva, suuria turistimassoja kuljettava risteilyalus tuo mukanaan ongelmia, jotka koettelevat Hildurin oikeustajua.</p><p>Satu Rämö (s. 1980) on Islannissa asuva kirjailija ja ekonomi. Hildur-sarja on ollut poikkeuksellisen suuri menestys joka mittarilla. Hildurin maailma on laajentunut televisioon ja teatterilavoille, ja sarjan käännösoikeuksia on myyty yli pariin kymmeneen maahan, muun muassa Saksaan, Isoon-Britanniaan, Ranskaan ja kaikkiin Pohjoismaihin.</p><p>Satu Rämöä haastattelee kirjailija, toimittaja Esa Mäkijärvi</p><p><b>Kulttuurikorttelitoive</b><br>Kanneltalon kulttuurikorttelitoiveet ovat syntyneet alueen asukkaiden ja kävijöiden toiveista. Olemme keränneet ideoitanne tapahtumissa ja verkkokyselyissä – ja kuunnelleet tarkasti. Kun tapahtuman yhteydessä näkyy Kulttuurikorttelitoive-merkintä, se kertoo, että ohjelma on toteutettu juuri teidän ehdotustenne pohjalta.</p><p>Kiitos, että rakennatte kanssamme Kanneltalon kulttuuritarjontaa!</p><p>Yhteistyössä Helsingin työväenopiston ja Kannelmäen kirjaston kanssa.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Kulturkortsönskemål</p><p>Gamlasgårdens kulturkortsönskemål har uppstått i önskemål från boende och besökare i området. Vi har samlat in era idéer genom evenemang och online-enkäter – och lyssnat noga.</p><p>När märket Kulturkortsönskemål visas vid evenemanget betyder det att programmet har skapats med dina förslag i åtanke.</p><p>Tack för att du bygger Gamlasgårdens kulturutbud tillsammans med oss!</p>",
                "en": "<p>Culture Quarter request</p><p>Kanneltalo Culture Quarter requests have been born out of the wishes of residents and visitors to the area.</p><p>We have collected your ideas through events and online surveys, and listened to them carefully. When you see the Kulttuurikorttelitoive label (‘Culture Quarter Request’) in connection to an event, this means that the programme has been created based on your suggestions.</p><p>Thank you for helping us create Kanneltalo's cultural offering!</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Satu Rämö",
                "sv": "Kirjailijavieraana Satu Rämö",
                "en": "Kirjailijavieraana Satu Rämö"
            },
            "short_description": {
                "fi": "Yleisön pyynnöstä Kanneltalon saliin saapuu huippusuosittu kirjailija Satu Rämö!",
                "sv": "Kulturkortsönskemål",
                "en": "Culture Quarter request"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66349/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66179",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178694,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T09:13:57.420870Z",
                    "last_modified_time": "2025-07-04T09:13:57.420886Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772438.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178694/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-04T09:13:57.314936Z",
            "last_modified_time": "2025-07-04T09:13:57.576109Z",
            "date_published": null,
            "start_time": "2025-10-11T10:00:00Z",
            "end_time": "2025-10-11T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D56BBBC212B789696FA06FBA81E987A2/Rusinat_pullasta_-_Alyvapaat_Taidepajojen_riemua_jo_10_vuotta_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D56BBBC212B789696FA06FBA81E987A2/Russinen_ur_bullen_De_intelligensbefriade_Konstworkshopparna_fyller_10_ar_",
                "en": "http://www.annantalo.fi/en/events/event/D56BBBC212B789696FA06FBA81E987A2/Picking_the_best_bits_Alyvapaat_Joy_of_art_workshops_for_a_decade_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Rusinat pullasta</b></p><p>Nyt poimitaan parhaat päältä! Pajoissa pääset tekemään unelmista asumuksia, osallistumaan Annantalon ajoihin ja kenties käymään myös kuussa! Juhlan kunniaksi tehdään myös omia juhlatamineita, joita voi esitellä muotinäytöksessä.</p><p>Tapahtuman järjestävät yhdessä Annantalo ja vapaaehtoisten Älyvapaa-yhteisö jo kymmenettä kertaa – <br>luvassa siis taidepajojen riemua täyden kympin verran!</p><p>Tapahtuma on maksuton, ei ennakkoilmoittautumista.</p><p>Työpajat käynnissä klo 13–15<br>Huom! Viimeiset osallistujat pajoihin klo 15.</p><p>Ikäsuositus: kaikenikäisille, alle 8-v lapset aikuisen kanssa.<br>Työskentelykieli: suomi</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p>"
            },
            "name": {
                "fi": "Rusinat pullasta - Älyvapaat: Taidepajojen riemua jo 10 vuotta! – Huom! Poikkeava kellonaika.",
                "sv": "Russinen ur bullen – De intelligensbefriade: Konstworkshopparna fyller 10 år! – Obs! Annat klockslag än normalt.",
                "en": "Picking the best bits – Älyvapaat: Joy of art workshops for a decade! – Please note the different time."
            },
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66179/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65964",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "35,90 € / 33,90 €",
                        "sv": "35,90 € / 33,90 €",
                        "en": "35,90 € / 33,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-malmitalo-20139384/",
                        "sv": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-malmitalo-20139384/",
                        "en": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-malmitalo-20139384/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178358,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:36.250009Z",
                    "last_modified_time": "2025-07-04T08:12:36.250023Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769558.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178358/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:36.184025Z",
            "last_modified_time": "2025-07-04T09:13:55.776330Z",
            "date_published": null,
            "start_time": "2025-10-01T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/47A774D2D164D2BDF332B49CEB5D818A/EASY_50_Peaceful_Easy_Feeling_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/47A774D2D164D2BDF332B49CEB5D818A/EASY_50_Peaceful_Easy_Feeling_",
                "en": "http://www.malmitalo.fi/en/events/event/47A774D2D164D2BDF332B49CEB5D818A/EASY_50_Peaceful_Easy_Feeling_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Suomen vanhimman ja tunnetuimman EAGLES-tribuuttibändin juhlahumu jatkuu!</p><p>Juhlahumuun onkin syytä, sillä viime vuonna EASYn perustamisesta tuli kuluneeksi 50 vuotta ja comebackista 10 vuotta. <br> <br><b>EASY</b><br>Bändi nimeltä Musakatit perustettiin vuonna 1974.  Pian bändin jäsenet huomasivat, että nimi edusti huonosti yhtyeen tyyliä ja musiikkia.  Suosikki-lehden nimiehdotuskilpailun tuloksena bändi sai nyt uuden nimen, EASY. Yhtye keikkaili ahkerasti seitsemän vuoden ajan tehden yli 400 keikkaa. <br> <br>Pitkän tauon jälkeen yhtye teki yllättävän comebackin esiintymällä kesällä 2014 <br>Tribute Band Festivaaleilla Helsingissä, esittäen Eagles-yhtyeen musiikkia. Menestyksekkään comebackin innostamana EASY päätti jatkaa jälleen keikkailua.  Nykyään konserteissa EASY esittää palvomaansa Eagles- yhtyeen musiikkia, siksi nimeen on lisätty tarkennus \"The Eagle Tribute Band\". <br> <br>EASYn kokoonpanoon kuuluu nykyään kolme alkuperäisjäsentä: Petteri Kokljuschkin, Sami Javne ja Roni Kamras, sekä kaksi nuoremman polven huippu laulajakitaristia: Lappe Holopainen ja Tomi Juustila (29 v). Yhtyeeseen kuuluu myös Linda Ronstadtia tulkitseva upeaääninen pianisti Katri Silolahti. <br> <br><b>EASY THE EAGLES TRIBUTE BAND</b><br>EASY tarjoaaa tänään mahdollisuuden päästä nauttimaan ja fiilistelemään livenä Eaglesin suurimpia hittejä, jotka ovat suurimmaksi osaksi Yhdysvaltojen eniten myydyn (yli 100 miljoonaa levyä) The Greatest Hits 1971–1975 -albumin poimintoja.</p><p>The Eagles Tribute Band EASY täyttää konserttisalit ja hullaannuttaa yleisönsä kerta toisensa jälkeen ihastuttavalla lavaesiintymisellään ja hätkähdyttävän tarkalla Eagles tulkinnoillaan.  <br> <br>Kesto 2 t, sis. 15 min väliajan</p>"
            },
            "name": {
                "fi": "EASY 50 \"Peaceful Easy Feeling\"",
                "sv": "EASY 50 \"Peaceful Easy Feeling\"",
                "en": "EASY 50 \"Peaceful Easy Feeling\""
            },
            "short_description": {
                "fi": "Suomen vanhimman ja tunnetuimman EAGLES-tribuuttibändin juhlahumu jatkuu!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65964/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66170",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1169714,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T06:13:53.190737Z",
                    "last_modified_time": "2025-07-03T06:13:53.190753Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772416.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1169714/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-03T06:13:53.071281Z",
            "last_modified_time": "2025-07-04T08:12:37.965111Z",
            "date_published": null,
            "start_time": "2025-10-18T08:00:00Z",
            "end_time": "2025-10-18T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9817273C1DB6A9EB2771F705D8728858/Annantalon_taidelauantai_Yokukkujat",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9817273C1DB6A9EB2771F705D8728858/Annegardens_konstlordag_Nattugglor",
                "en": "http://www.annantalo.fi/en/events/event/9817273C1DB6A9EB2771F705D8728858/Annantalo_Art_Saturday_Yokukkujat_Night_Owls"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Yökukkujat</b></p><p>Mitä öisessä metsässä lymyää? Tuntuuko sinusta joskus pimeässä siltä, että jokin kurkistaa kannon takaa tai piilottelee puussa? Voisiko se olla eläin tai mielikuvitusolento? Tässä Annantalon taidelauantain (t)yöpajassa tehdään paperista ja kartongista yllättävästi esiin ponnahtava otus. Kukkuu!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaikenkielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat. <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Nattugglor</b></p><p>Vad döljer sig i den nattliga skogen? Känns det ibland som att någon kikar fram bakom en stubbe eller gömmer sig i ett träd i mörkret? Kan det vara ett djur eller en fantasifigur? I den här workshoppen under Annegårdens konstlördag får du göra en varelse av papper och kartong som överraskande hoppar fram. Tittut!</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. <br>Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Yökukkujat – Night Owls</b></p><p>What is hiding in a forest at night? Do you sometimes feel like someone is peeking behind a tree stump in the dark, or hiding up in a tree? Could it be an animal or some imaginary creature? In this Annantalo Art Saturday workshop, you will get to create a fun pop-up creature from paper and cardstock. Peekaboo!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Yökukkujat",
                "sv": "Annegårdens konstlördag: Nattugglor",
                "en": "Annantalo Art Saturday: Yökukkujat – Night Owls"
            },
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66170/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66400",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/breloque-theatre-group-bright-spots-eye-catchers-malmitalo-20312633/",
                        "sv": "https://www.lippu.fi/event/breloque-theatre-group-bright-spots-eye-catchers-malmitalo-20312633/",
                        "en": "https://www.lippu.fi/event/breloque-theatre-group-bright-spots-eye-catchers-malmitalo-20312633/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178024,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T07:14:02.821240Z",
                    "last_modified_time": "2025-07-04T07:14:02.821258Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774067.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178024/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T07:14:02.700381Z",
            "last_modified_time": "2025-07-04T08:12:37.825340Z",
            "date_published": null,
            "start_time": "2025-10-16T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/67E93C69C5351F33F7ABEE3149581B05/Breloque_Theatre_Group_BRIGHT_SPOTS_EYE-CATCHERS_Varikkaita_seikkailuja_ajassa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/67E93C69C5351F33F7ABEE3149581B05/Teatergruppen_Breloque_Bright_spots_Eye_catchers_Fargglada_aventyr_i_tiden",
                "en": "http://www.malmitalo.fi/en/events/event/67E93C69C5351F33F7ABEE3149581B05/Breloque_Theatre_Group_BRIGHT_SPOTS_EYE-CATCHERS"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Värikäs musiikkia, kuvataidetta ja teatteria yhdistelevä esitys kaikille yli kolmevuotiaille</p><p>Taidemaalari Daniela Kasperer, näyttelijä Andreas Simma ja muusikko Yorgos Pervolarakis tulkitsevat tarinan ihmiselämästä käänteisessä järjestyksessä: esitys alkaa vanhuudesta ja sen aikajana kelautuu hitaasti takaisin taaperoikään ja vauva-aikaan. Kuvat, äänet, leikki ja ihmissuhteet muodostavat narratiivin siitä, mitä on tapahtunut ja mitä on kuviteltu. Esitys tarjoaa inhimillisyyttä ja ihmisyyttä paljaimmillaan, niin hauskuutta ja väriä kuin syvällistä ja kepeääkin, ja tähtää nautinnon ja ilon tuottamiseen.</p><p>Päällekkäiset tekstin ja kuvan tasot muuttuvat taas näkyviksi kun niiden pintaa raaputtaa, kuin palimpsestissa. BRIGHT SPOTS & EYE CATCHERS avaa uusia näkökulmia elämään, jossa olisi voinut käydä aivan toisinkin. Se on täynnä toisiinsa liittyviä kuvia ja muuttuvia musiikin ja oikukkaan leikin tasoja, jotka on suunnattu niin vanhoille kuin nuorillekin. <br> <br>Ja vielä yksi kysymys: Oletko koskaan yrittänyt maalata elämää?</p><p>Luova ryhmä<br>Tuotannon kehitys: luova ryhmä<br>Ohjaaja, outside eye: Myrto Dimitriadou<br>Lavastus, outside eye: Ragna Heiny<br>Musiikki (sävellys ja tulkinta): Yorgos Pervolarakis <br>Esiintyjä: Andreas Simma <br>Maalaus: Daniela Kasperer</p><p>Sanaton<br>Kesto 35 min<br>Ikäsuositus 3–90-vuotiaille</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20329430/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>En färgsprakande föreställning full av musik, måleri och teaterkonst för alla över 3 år</p><p>Konstnären Daniela Kasperer, skådespelaren Andreas Simma och musikern Yorgos Pervolarakis tolkar historien om ett människoliv berättat i omvänd ordning: med början i ålderdomen och långsamt rullande tillbaka till småbarn och baby. Bilder och ljud, lek och relationer blir till en berättelse om vad som har hänt och vad som har fantiserats. Föreställningen bjuder på det mänskliga och det alltför mänskliga, det roliga och det färgstarka, det djupsinniga och det tokiga, och har inget mindre syfte än att skapa glädje och nöje.</p><p>Lager av text och bild som har lagts omlott görs synliga igen genom skrapning, som i en palimpsest. BRIGHT SPOTS & EYE-CATCHERS öppnar upp nya perspektiv på ett liv som kunde ha blivit helt annorlunda. Föreställningen är full av associerade bilder, skiftande musiklager och nyckfull lek, riktad till både unga och gamla. <br> <br>Och en sak till: Har du någonsin försökt måla ett liv?</p><p>Det konstnärliga teamet<br>Produktionsutveckling: det konstnärliga teamet<br>Regissör, det externa ögat: Myrto Dimitriadou<br>Scenografi, det externa ögat: Ragna Heiny<br>Musik (komposition och tolkning): Yorgos Pervolarakis <br>Skådespelare: Andreas Simma <br>Konstnär: Daniela Kasperer</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=”https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20329430/?affiliate=FSF#tab=”>HÄR</a></u></p>",
                "en": "<p>A colorful performance full of music, painting and theatre art for everyone over 3 years old!</p><p>The painter Daniela Kasperer, the actor Andreas Simma and the musician Yorgos Pervolarakis interpret the story of a human life, told in reverse order: starting at old age and slowly scrolling back to toddler and baby. Images and sounds, play and relationships become a narrative of what has happened and what has been imagined. The performance offers the human and the all-too-human, the funny and the colorfully, the profound and the silly, and has no less the intention than to create joy and pleasure.</p><p>Layers of text and image that have been superimposed are made visible again by scraping, as in a palimpsest. “BRIGHT SPOTS & EYE-CATCHERS” opens new perspectives on a life that could have turned out quite differently. It is full of associated images, changing layers of music and wayward play, aimed at young and old.</p><p>And one more thing: have you ever tried to paint a life?</p><p><b>The artistic team</b> <br>Production development: the artistic team <br>Director, outside eye: Myrto Dimitriadou <br>Set design, outside eye: Ragna Heiny <br>Music (composition & interpretation): Yorgos Pervolarakis  <br>Acting: Andreas Simma  <br>Painting: Daniela Kasperer</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20329430/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "name": {
                "fi": "Breloque Theatre Group: BRIGHT SPOTS & EYE-CATCHERS – Värikkäitä seikkailuja ajassa",
                "sv": "Teatergruppen Breloque: Bright spots & Eye catchers – Färgglada äventyr i tiden",
                "en": "Breloque Theatre Group: BRIGHT SPOTS & EYE-CATCHERS"
            },
            "short_description": {
                "fi": "Värikäs musiikkia, kuvataidetta ja teatteria yhdistelevä esitys kaikille yli kolmevuotiaille",
                "sv": "En färgsprakande föreställning full av musik, måleri och teaterkonst för alla över 3 år",
                "en": "A colorful performance full of music, painting and theatre art for everyone over 3 years old!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66400/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66169",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1163762,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-02T12:12:33.953979Z",
                    "last_modified_time": "2025-07-02T12:12:33.953992Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772415.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1163762/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-02T12:12:33.907377Z",
            "last_modified_time": "2025-07-04T08:12:36.518526Z",
            "date_published": null,
            "start_time": "2025-10-04T08:00:00Z",
            "end_time": "2025-10-04T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EA5FEC201D41CDC6BA74A6EDED72B44F/Annantalon_taidelauantai_Salarasia",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/EA5FEC201D41CDC6BA74A6EDED72B44F/Annegardens_konstlordag_Den_hemliga_ladan",
                "en": "http://www.annantalo.fi/en/events/event/EA5FEC201D41CDC6BA74A6EDED72B44F/Annantalo_Art_Saturday_Secret_box"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Salarasia</b><br>Minne kätkisit pienet aarteesi tai säilöisit kauneimmat muistosi? Tällä kertaa Annantalon taidelauantain työpajassa koristellaan salarasia ja rakennetaan sen sisälle aarre.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaikenkielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Den hemliga lådan</b><br>Var skulle du gömma små skatter eller dina bästa minnen? Den här gången får vi under Annegårdens konstlördag dekorera en hemlig låda och bygga en skatt i den.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Secret box</b><br>Where would you hide your small treasures or store your most beautiful memories? This time, the Annantalo Art Saturday’s workshop is for decorating a secret box and building a treasure inside it.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Salarasia",
                "sv": "Annegårdens konstlördag: Den hemliga lådan",
                "en": "Annantalo Art Saturday: Secret box"
            },
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66169/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66492",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "44,90 € / 34,90 €",
                        "sv": "44,90 € / 34,90 €",
                        "en": "44,90 € / 34,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/rick-estrin-the-nightcats-malmitalo-20313083/",
                        "sv": "https://www.lippu.fi/event/rick-estrin-the-nightcats-malmitalo-20313083/",
                        "en": "https://www.lippu.fi/event/rick-estrin-the-nightcats-malmitalo-20313083/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178357,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:35.995438Z",
                    "last_modified_time": "2025-07-04T08:12:35.995450Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774647.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178357/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:35.941879Z",
            "last_modified_time": "2025-07-04T08:12:36.069366Z",
            "date_published": null,
            "start_time": "2025-09-30T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/798E758EF4E8BDBF9CC5969AB20E1342/Rick_Estrin_and_the_Nightcats",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/798E758EF4E8BDBF9CC5969AB20E1342/Rick_Estrin_and_the_Nightcats",
                "en": "http://www.malmitalo.fi/en/events/event/798E758EF4E8BDBF9CC5969AB20E1342/Rick_Estrin_and_the_Nightcats"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Yhdysvaltalaiset blueshuiput Rick Estrin & The Nightcats esiintyvät Malmitalossa!</p><p>Palkittu huuliharpisti ja laulaja-lauluntekijä Rick Estrin ja bändinsä The Nightcats hämmästyttävät musisoinnillaan ympäri maailmaa. Koko bändi koostuu maailmanluokan huippubluesmuusikoista.</p><p>Yleisö yltyy tanssimaan ja hurraamaan missä ikinä huuliharppuvirtuoosi Rick Estrin esiintyykään The Nightcats -yhtyeensä kanssa. Tarjolla on tuoretta ja modernia, mutta originaalia bluesia, roadhouse rock’n’rollilla höystettynä. Musiikillinen polku on omaperäinen, innovatiivinen ja monipuolinen, mutta aina bluesille uskollinen.</p><p>Kesto: 1 t 15min</p><p>Kokoonpano:<br>Rick Estrin: laulu, huuliharppu<br>Kid Andersen: kitara<br>Lorenzo Farrell: basso<br>Derrick D´Mar Martin: rummut</p>"
            },
            "name": {
                "fi": "Rick Estrin and the Nightcats",
                "sv": "Rick Estrin and the Nightcats",
                "en": "Rick Estrin and the Nightcats"
            },
            "short_description": {
                "fi": "Yhdysvaltalaiset blueshuiput Rick Estrin & The Nightcats esiintyvät Malmitalossa!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66492/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66394",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/",
                        "sv": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/",
                        "en": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178356,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:35.339766Z",
                    "last_modified_time": "2025-07-04T08:12:35.339780Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774026.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178356/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:35.276842Z",
            "last_modified_time": "2025-07-04T08:12:35.442626Z",
            "date_published": null,
            "start_time": "2025-09-20T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka",
                "en": "http://www.malmitalo.fi/en/events/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Elämän kukka on musiikin rytmittämä, sirkusta ja nukketeatteria yhdistävä sanaton vannetaide- ja esineteatteriesitys elämän kiertokulusta.</p><p>Vakavaa aihetta käsitellään elämänmyönteisesti. ”Ensin on siemen. Se itää, kasvaa, kukkii, pölyttyy, siementää ja kuihtuu. ”</p><p>Ikäsuositus: 6 kk + <br>Kieli: Sanaton<br>Kesto: 30 min</p><p>Elämän kukalle myönnettiin Slovenian Teatteri-instituutin Laatumerkki 2020.<br> <br>Käsikirjoitus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Ohjaus: Katja Kähkönen, Katja Povše, Mateja Ocepek<br>Vannekoreografia: Henna Matanuska<br>Lavastus ja puvustus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Kukkahame: Iztok Hrga<br>Musiikki: Gregor Zemljič</p><p>Esiintyjät: Henna Matanuska, Katja Kähkönen<br>Kuvat ja video: Heikki Järvinen<br>Tuottaja: Vauva- ja taaperoteatteri AEIOU<br>Yhteistyökumppanit: Lasten ja taiteiden talo, Ljubljana, Lastenkulttuurikeskus Rulla, Tampereen kulttuuripalvelut<br>Suomen ensi-ilta: marraskuu 2020, Monitoimitalo 13, Tampere<br>Slovenian ensi-ilta: lokakuu 2021, Bobri-festivaali, Lasten ja taiteiden talo, Ljubljana<br>Esitystä ovat tukeneet Taiteen edistämiskeskus, Samuel Huberin taidesäätiö, Alli Paasikiven Säätiö, Suomen Kulttuurirahasto, Pirkanmaan Kulttuurirahasto, Alfred Kordelinin säätiö ja Ljubljanan kulttuuritoimi.</p><p>Esitys päiväkotiryhmille pe 19.9. klo 10 varattavissa kultus.hel.fi kautta.</p>"
            },
            "name": {
                "fi": "AEIOU: Elämän kukka",
                "sv": "AEIOU: Elämän kukka",
                "en": "AEIOU: Elämän kukka"
            },
            "short_description": {
                "fi": "Elämän kukka on musiikin rytmittämä, sirkusta ja nukketeatteria yhdistävä sanaton vannetaide- ja esineteatteriesitys elämän kiertokulusta."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66394/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65947",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1050988,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-18T10:13:48.726278Z",
                    "last_modified_time": "2025-06-18T10:13:48.726294Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769540.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1050988/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-06-18T10:13:48.630580Z",
            "last_modified_time": "2025-07-04T08:12:33.233382Z",
            "date_published": null,
            "start_time": "2025-08-23T08:00:00Z",
            "end_time": "2025-08-23T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0509E5312D49EB3AFB96C85EBC2AE3BA/Annantalon_taidelauantai_Omakuvakollaasi",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0509E5312D49EB3AFB96C85EBC2AE3BA/Annegardens_konstlordagar_Kollage_med_sjalvportratt_",
                "en": "http://www.annantalo.fi/en/events/event/0509E5312D49EB3AFB96C85EBC2AE3BA/Annantalo_Art_Saturdays_Self-portrait_collage_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Omakuvakollaasi</b></p><p>Tervetuloa tutkimaan taidehistoriaa ja löytämään innostusta eri aikakausilta! Onko sinussa vivahdus rokokooromantiikkaa tai kubistista kulmikkuutta? Innostutko poptaiteen värikylläisyydestä? Viehättääkö sinua barokin mahtipontisuus vai minimalismi? Annantalon taidelauantaissa teemme omakuvakollaaseja hyödyntäen eri taidesuuntauksia edustavia kuvia. Leikkaamme, liimaamme ja yhdistelemme elementtejä esimerkiksi kubismista, poptaiteesta, surrealismista sekä impressionismista - kukin oman tyylinsä ja tunnelmansa mukaan.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaikenkielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Kollage med självporträtt</b></p><p>Välkommen att utforska konsthistorien och få inspiration från olika tider! Finns det en ton av rokokoromantik eller kubistisk kantighet i dig? Blir du inspirerad av popkonstens färgmättnad? Gillar du barockens svulstighet eller minimalism? Under Annegårdens konstlördagar gör vi kollage av självporträtt med bilder som representerar olika konstriktningar. Vi klipper, klistrar och kombinerar element från till exempel kubism, popkonst, surrealism och impressionism – var och en enligt sin egen stil och känsla.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Self-portrait collage</b></p><p>Come by to explore art history and draw inspiration from the different eras! Maybe there’s a hint of Rococo romance in you, or a touch of cubistic edginess? Do the bright colours of pop art inspire you? Are you drawn to the bombastic baroque or to sleek minimalism? This Annantalo Art Saturday will be spent making self-portrait collages using images representing the different art trends. We will cut, mix and glue together elements from trends such as cubism, pop art, surrealism and impressionism – whichever suits your style and feeling.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Omakuvakollaasi",
                "sv": "Annegårdens konstlördagar: Kollage med självporträtt",
                "en": "Annantalo Art Saturdays: Self-portrait collage"
            },
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65947/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}