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

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&page=52&publisher_ancestor=ahjo%3A00001
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 11836,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=53&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=51&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:67440",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-sisu-2-malmitalo-20944480/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493800,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-14T10:12:35.451199Z",
                    "last_modified_time": "2025-11-14T10:12:35.451215Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777306.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493800/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-14T10:12:35.341025Z",
            "last_modified_time": "2025-11-14T10:12:35.579790Z",
            "date_published": null,
            "start_time": "2025-11-28T16: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,
            "short_description": {
                "fi": "Sisu 2 on täydellä rähinällä eteenpäin vyöryvä toimintaelokuva, joka on jatkoa aina kansainväliseksi hitiksi asti nousseelle ykkösosalle Sisu."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/295455CE76F2CC697A13080E7992D9E5/Kino_Helios_Sisu_2_16_"
            },
            "description": {
                "fi": "<p>Sisu 2 on täydellä rähinällä eteenpäin vyöryvä toimintaelokuva, joka on jatkoa aina kansainväliseksi hitiksi asti nousseelle ykkösosalle Sisu.</p><p>Aatami Korpi, “mies, joka ei suostu kuolemaan” (Jorma Tommila), palaa kotikonnuilleen neuvostomiehityksen alaiseen Karjalaan, purkaa talonsa, lastaa sen kuormurin kyytiin ja päättää vakaasti panna pirttinsä taas pystyyn Suomen puolelle.</p><p>Kun tieto Aatamin rajan ylityksestä leviää, palaa hänen perheensä surmannut partisaanien komentaja (Stephen Lang) hoitamaan jo legendan maineen saaneen suomalaisen sotilaan pois päiviltä.</p><p>Ikäraja: 16<br>Kesto: 90 min<br>Ensi-ilta: 22.10.2025</p><p>Kieli: suomi, englanti<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Kino Helios: Sisu 2 (16)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67440/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67439",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-hopeacine-palava-maa-malmitalo-20944644/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493799,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-14T09:12:58.583050Z",
                    "last_modified_time": "2025-11-14T09:12:58.583068Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780876.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493799/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-14T09:12:58.485755Z",
            "last_modified_time": "2025-11-14T09:12:58.706381Z",
            "date_published": null,
            "start_time": "2025-12-18T11: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,
            "short_description": {
                "fi": "Joulukuun HopeaCine-elokuvana voimakas dokumentti Portugalin maastopaloista. Tekijävieraana ohjaaja John Webster."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/79B9966E3B12E9AA5BE922FF1F999FA5/Kino_Helios_HopeaCine_Palava_maa_7_tekijavieraana_John_Webster"
            },
            "description": {
                "fi": "<p>Joulukuun HopeaCine-elokuvana voimakas dokumentti Portugalin maastopaloista. Tekijävieraana ohjaaja John Webster.</p><p>Maastopalojen riehuessa yhä voimakkaammin Euroopassa suomalaiset ja portugalilaiset pelastajat yhdistävät voimansa eturintamassa. Visuaalisesti vaikuttava dokumentti johdattaa katsojan liekkeihin ja näyttää ihmisen kamppailun luonnon tuhoisinta voimaa vastaan.  Tekijävieraana on dokumentin ohjaaja John Webster. Haastattelijana elokuvakasvattaja Kaisa Kukkola.</p><p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa. Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi. Suomeksi puhutut HopeaCine-näytökset on selkotekstitetty suomeksi.</p><p>Kesto: 102 min + n. 30 min keskustelutilaisuus<br>Kieli: Suomi (selkotekstitys suomeksi)</p><p>Liput 8 €</p>"
            },
            "name": {
                "fi": "Kino Helios: HopeaCine: Palava maa (7) + tekijävieraana John Webster"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67439/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66949",
            "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/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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490636,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-04T14:14:18.075486Z",
                    "last_modified_time": "2025-09-04T14:14:18.075508Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776984.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490636/?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-09-04T14:14:17.950083Z",
            "last_modified_time": "2025-11-13T14:13:19.490137Z",
            "date_published": null,
            "start_time": "2025-11-14",
            "end_time": "2025-12-20",
            "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,
            "short_description": {
                "fi": "Tule katsomaan Annantalon jouluvitriinejä, joissa leikki on tehty näkyväksi!",
                "sv": "Kom och titta på julvitrinerna på Annegården, där leken har synliggjorts.",
                "en": "Come and see Annantalo's Christmas displays, where play is made visible."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5AA6338CF344AEFCCE1D68102C17BA0B/Annantalon_jouluvitriinit_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/5AA6338CF344AEFCCE1D68102C17BA0B/Julvitrinerna_pa_Annegarden_",
                "en": "http://www.annantalo.fi/en/events/event/5AA6338CF344AEFCCE1D68102C17BA0B/Annantalo_s_Christmas_displays_"
            },
            "description": {
                "fi": "<p>Tule katsomaan Annantalon jouluvitriinejä, joissa leikki on tehty näkyväksi!</p><p>Annantalon 2 krs. käytävälle rakentuu kaksi jouluista lelumaailmaa.</p><p>Ensimmäisessä vitriinissä näkee junaleikkien levittäytyneen lastenhuoneen lattialle ja voi ihailla junan ja lentokoneiden liikettä. Piilossa ja esillä on monenlaisia eläinhahmoja.</p><p>Toisessa vitriinissä talvisen Annantalon pihan valtaavat keramiikan harrasteryhmien Terran ja Engoben oppilastyöt, keraamiset miniatyyri-lumiveistokset. Koko Annantalon henkilökunta on jouluvitriinissä esillä Lego -hahmoina, kuten itse Annantalokin!</p><p>Jouluvitriinit avautuvat 14.11. klo 17</p><p>Tekijät: Nicolas Salo, Heidi Puumalainen, oppilasryhmät Terra ja Engobe</p>",
                "sv": "<p>Kom och titta på julvitrinerna på Annegården, där leken har synliggjorts.</p><p>Två juliga leksaksvärldar byggs i korridoren på andra våningen på Annegården. I den första vitrinen kan du se tåglekarna utspridda över golvet i barnrummet och beundra tågets och flygplanens rörelser. Det finns många djurfigurer att se och hitta.</p><p>I den andra vitrinen övertas Annegårdens vintriga innergård av keramiska snöskulpturer i miniatyr som skapats av studerande i keramikhobbygrupperna Terra och Engobe. Hela Annegårdens personal står framme i julvitrinen som Legofigurer, liksom även Annegården själv!</p><p>Skapare: Nicolas Salo, Heidi Puumalainen, studerandegrupperna Terra och Engobe</p>",
                "en": "<p>Come and see Annantalo's Christmas displays, where play is made visible.</p><p>Two displays filled with Christmas toys will be built in the corridor of the 2nd floor of Annantalo. In the first display case, you will be able to see a toy train spread across the children's room floor and admire the movement of the train and planes. A menagerie of animal characters will be hidden or on display in the case.</p><p>In another display case, the courtyard of the Annantalo will be dominated by the ceramic miniature snow sculptures created by students of the Terra and Engobe ceramics groups. The entire Annantalo staff will be displayed as Lego figures in the Christmas display, as well as Annantalo itself!</p><p>Creators: Nicolas Salo, Heidi Puumalainen, Terra and Engobe student groups</p>"
            },
            "name": {
                "fi": "Annantalon jouluvitriinit",
                "sv": "Julvitrinerna på Annegården",
                "en": "Annantalo's Christmas displays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66949/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66660",
            "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490411,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-18T10:14:58.419201Z",
                    "last_modified_time": "2025-08-18T10:14:58.419283Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775585.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490411/?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-08-18T10:14:58.271165Z",
            "last_modified_time": "2025-11-13T13:13:20.295096Z",
            "date_published": null,
            "start_time": "2025-11-28",
            "end_time": "2026-03-14",
            "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,
            "short_description": {
                "fi": "Moniulotteiset maalaukset vievät matkalle eri paikkoihin.",
                "sv": "Flerdimensionella målningar för dig på en resa till olika platser.",
                "en": "Yppärilä’s multidimensional paintings take you on a journey to different places."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E323D6ACB422F8AF18C36E172E57E65B/Jenni_Ypparila_Kadulta",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/E323D6ACB422F8AF18C36E172E57E65B/Jenni_Ypparila_Fran_gatan",
                "en": "http://www.annantalo.fi/en/events/event/E323D6ACB422F8AF18C36E172E57E65B/Jenni_Ypparila_From_the_street"
            },
            "description": {
                "fi": "<p>Moniulotteiset maalaukset vievät matkalle eri paikkoihin.</p><p>Näyttely koostuu kolmiulotteisista maalauksista, jotka esittävät erilaisia rakennuksia eri kaupungeista ja maista – kuten Suomesta, Ranskasta ja Saksasta. Teokset kuvaavat rakennettua ympäristöä yksityiskohtaisesti mutta samalla taiteellisesti tulkiten. Ne tuovat katsojan lähelle paikkoja, joita usein ohitamme – katujen varsien taloja, kulmien kauppoja, rapistuneita seinäpintoja. Teokset pysäyttävät katsojan pohtimaan, miten arkkitehtuuri vaikuttaa kulkemiseemme ja olemiseemme. Ympäristöstään irrotettuina, rakennukset muuntuvat yhteiskunnan ja siellä elävän ihmisen muotokuviksi.</p><p>Näyttely on valittu ohjelmistoon Annantalon avoimen haun kautta. Kevään 2025 aikana hakuun tuli 230 hakemusta, joiden joukosta Annantalon oppilasraati valitsi viisi taiteilijaa toisen kerroksen gallerioihin sekä alakerran yhteisnäyttelyyn.</p><p>Näyttelyn avajaiset to 27.11. klo 17–19 - Tervetuloa!</p>",
                "sv": "<p>Flerdimensionella målningar för dig på en resa till olika platser.</p><p>Utställningen består av tredimensionella målningar som föreställer olika byggnader i olika städer och länder – så som Finland, Frankrike och Tyskland. Verken avbildar den byggda miljön på ett detaljerat sätt men samtidigt med en konstnärlig tolkning. De för besökaren nära platser som vi ofta passerar – husen längs gatorna, butikerna vid hörnen, förfallna väggytorna. Verken får besökaren att fundera över hur arkitekturen påverkar vårt sätt att gå och vara. Byggnaderna är fristående från sin omgivning och förvandlas till porträtt av samhället och de människor som lever där.</p><p>Utställningen har valts till programmet genom Annegårdens öppna utlysning. Under våren 2025 inkom 230 ansökningar, bland vilka Annegårdens elevjury valde ut fem konstnärer till gallerierna på andra våningen och till den gemensamma utställningen på nedre våningen.</p><p>Utställningens vernissage to 27.11 kl 17–19 – Välkommen!</p>",
                "en": "<p>Yppärilä’s multidimensional paintings take you on a journey to different places.</p><p>The exhibition will consist of three-dimensional paintings depicting different buildings from different cities and countries – such as Finland, France and Germany. The works depict the built environment in detail but with an artistic interpretation. They bring the viewer close to places we often pass by: the houses on the side of the street, the shops on the corners, the crumbling surfaces of walls. The works make the viewer consider how architecture affects the way we move and the way we are. Detached from their environment, buildings will be transformed into portraits of society and the people who live there.</p><p>The exhibition was selected for the programme through an open call at Annantalo. During the spring of 2025, Annantalo received 230 applications, from which the Annantalo student jury selected five artists for the second floor galleries and the joint exhibition downstairs.</p><p>The exhibition opening ceremony will be held on Thu 27 November at 17.00–19.00. You are welcome to come along!</p>"
            },
            "name": {
                "fi": "Jenni Yppärilä: Kadulta",
                "sv": "Jenni Yppärilä: Från gatan",
                "en": "Jenni Yppärilä: From the street"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66660/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66024",
            "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:223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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:759/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-14T13:14:32.767703Z",
            "last_modified_time": "2025-11-13T13:13:11.625299Z",
            "date_published": null,
            "start_time": "2025-10-25T08:35:00Z",
            "end_time": "2025-12-13T10:35: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,
            "short_description": {
                "fi": "Potkua päivään perhesirkuksella! Lentävä lähtö lauantaihin yhteisellä temppuilulla ja hauskanpidolla.",
                "sv": "Starta dagen med en familjecirkus! En flygande start på lördagen med knep och kul tillsammans.",
                "en": "Kick off the day with a family circus! A flying start to Saturday with tricks and fun together."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3EAEBB56F46D95D899FE1917214B7414/PERUTTU_Stadin_nuorisoseurat_Perhesirkus_7-9_-vuotiaat_vanhemman_kanssa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/3EAEBB56F46D95D899FE1917214B7414/INSTALLD_Stadin_nuorisoseurat_Familjecirkus_7-9_aringar_med_foralder",
                "en": "http://www.annantalo.fi/en/events/event/3EAEBB56F46D95D899FE1917214B7414/CANCELLED_Stadin_nuorisoseurat_Family_circus_7-9_year_olds_with_a_parent"
            },
            "description": {
                "fi": "<p>Potkua päivään perhesirkuksella! Lentävä lähtö lauantaihin yhteisellä temppuilulla ja hauskanpidolla.</p><p>Perhesirkus on lapsen ja vanhemman yhteinen harrastus, jossa temppuilun, tasapainoilun ja pariakrobatian keinoin annetaan hauskasti ja helposti lapselle aistivirikkeitä ja vahvistetaan lapsi-vanhempi-suhdetta. Ryhmä on suunnattu 7-9 vuotiaille lapsille yhdessä oman aikuisen kanssa. Aikaisempaa kokemusta ei tarvita. Kurssi ohjataan suomeksi ja englanniksi.</p><p>Sirkustelua järjestetään lyhytkurssina lauantaisin klo 11.35-12.35. Kausi kestää 5 kertaa ja kurssin hinta on 60 euroa. Ryhmään mahtuu 9 vanhempi-lapsi-paria ja paikat täytetään ilmoittautumisjärjestyksessä. Ryhmän ohjaajana toimii sirkusopettaja Hanna Terävä Varis. Infokirje lähetetään noin viikkoa ennen kurssin alkua sähköpostiin.</p><p>Opetuskielet: suomi ja englanti</p><p>Ilmoittautuminen tapahtuu nettisivuilla: https://puoti.nuorisoseurat.fi/fi/p/ilmoittautuminen. Ilmoittautumissivu syksyn kurssille aukeaa viimeistään 1.7. ja sulkeutuu 16.10.</p><p>Lisätiedot:<br>https://stadi.nuorisoseurat.fi/\t<br>Judit Kemppilä / judit.kemppila@nuorisoseurat.fi</p>",
                "sv": "<p>Starta dagen med en familjecirkus! En flygande start på lördagen med knep och kul tillsammans.</p><p>Familjecirkus är en gemensam hobby mellan ett barn och en förälder, där knep, balanshandlingar och parakrobatik ger barnet sensorisk stimulans på ett roligt och enkelt sätt och stärker relationen mellan barn och förälder. Gruppen vänder sig till barn i åldern 7-9 år tillsammans med sin egen vuxen. Ingen tidigare erfarenhet krävs. Kursen ges på finska och engelska.</p><p>Cirkusträning anordnas som en kort kurs på lördagar kl. 11.35-12.35. Säsongen varar 5 gånger och kurspriset är 60 euro. Gruppen har plats för 9 föräldra-barn-par och platserna fylls i ordningsföljd för anmälan. Gruppen leds av cirkusläraren Hanna Terävä Varis. Ett informationsbrev kommer att skickas till din e-post cirka en vecka innan kursstart.</p><p>Undervisningspråk: finska och engelska</p><p>Anmälan till aktiviteten görs på: https://puoti.nuorisoseurat.fi/fi/p/ilmoittautuminen. Anmälningssidan för höstgruppen öppnar senast 1 juli och stänger senast 16 october.</p><p>Mer information:<br>https://stadi.nuorisoseurat.fi/\t<br>Judit Kemppilä / judit.kemppila@nuorisoseurat.fi</p>",
                "en": "<p>Kick off the day with a family circus! A flying start to Saturday with tricks and fun together.</p><p>Family circus is a joint hobby for a child and parent, where tricks, balancing and pair acrobatics provide sensory stimulation to the child in a fun and easy way and strengthen the child-parent relationship. The group is aimed at children aged 7-9 together with their own adult. No previous experience is required. The course is taught in Finnish and English.</p><p>Circus is organised as a short course on Saturdays at 11.35-12.35. The season lasts 5 times and the course price is 60 euros. The group can accommodate 9 parent-child pairs and places are filled in the order of registration. The group is directed by circus teacher Hanna Terävä Varis. An information letter will be sent to your email about a week before the start of the course.</p><p>Teaching languages: Finnish and English</p><p>Registration for the activities can be done on the website: https://puoti.nuorisoseurat.fi/fi/p/ilmoittautuminen. The registration page for the autumn course opens no later than 1 July and closes by 16 October.</p><p>More information:<br>https://stadi.nuorisoseurat.fi/\t<br>Judit Kemppilä / judit.kemppila@nuorisoseurat.fi</p>"
            },
            "name": {
                "fi": "PERUTTU Stadin nuorisoseurat: Perhesirkus, 7-9 -vuotiaat vanhemman kanssa – 7-9-vuotiaat aikuisen kanssa",
                "sv": "INSTÄLLD Stadin nuorisoseurat: Familjecirkus, 7-9 åringar med förälder – 7-9-åringar med vuxen",
                "en": "CANCELLED Stadin nuorisoseurat: Family circus, 7-9 year olds with a parent – 7-9 year olds with an adult"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66024/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66025",
            "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:223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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:759/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-14T13:14:32.692794Z",
            "last_modified_time": "2025-11-13T13:13:11.364321Z",
            "date_published": null,
            "start_time": "2025-10-25T07:30:00Z",
            "end_time": "2025-12-13T09:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Perhesirkuksella potkua viikonloppuun - Aloita lauantai lapsen kanssa sirkustellen!",
                "sv": "Kör igång helgen med en familjecirkus - Börja din lördag med en cirkusföreställning med ditt barn!",
                "en": "Kick off the weekend with a family circus - Start your Saturday with a circus with your child!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A7D7FC2C9A79E92D1B730DF07CC766BA/PERUTTU_Stadin_nuorisoseurat_Perhesirkusta_kaksikielisesti_suomi-englanti_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/A7D7FC2C9A79E92D1B730DF07CC766BA/INSTALLD_Stadin_nuorisoseurat_Tvasprakig_familjecirkus_finska-engelska_",
                "en": "http://www.annantalo.fi/en/events/event/A7D7FC2C9A79E92D1B730DF07CC766BA/CANCELLED_Stadin_nuorisoseurat_Family_circus_bilingually_Finnish-English_"
            },
            "description": {
                "fi": "<p>Perhesirkuksella potkua viikonloppuun - Aloita lauantai lapsen kanssa sirkustellen!</p><p>Perhesirkus on lapsen ja vanhemman yhteinen harrastus, jossa temppuilun, tasapainoilun ja pariakrobatian keinoin annetaan hauskasti ja helposti lapselle aistivirikkeitä ja vahvistetaan lapsi-vanhempi-suhdetta. Ryhmä on suunnattu 4-6 -vuotiaille lapsille yhdessä oman aikuisen kanssa. Aikaisempaa kokemusta ei tarvita.</p><p>Sirkustelua järjestetään lyhytkurssina lauantaisin klo 10.30-11.30. Kausi kestää 5 kertaa ja kurssin hinta on 60 euroa. Ryhmään mahtuu 9 vanhempi-lapsi-paria ja paikat täytetään ilmoittautumisjärjestyksessä. Ryhmän ohjaajana toimii sirkusopettaja Hanna Terävä Varis. Infokirje lähetetään noin viikkoa ennen kurssin alkua sähköpostiin.</p><p>Kurssi järjestetään opintokeskus Kansalaisfoorumin tuella.</p><p>Opetuskielet ovat suomi ja englanti.</p><p>Ilmoittautuminen tapahtuu nettisivuilla: https://puoti.nuorisoseurat.fi/fi/p/ilmoittautuminen. Ilmoittautumissivu syksyn kurssille aukeaa viimeistään 1.7. ja sulkeutuu 16.10. mennessä.</p><p>Lisätietoja:<br>https://stadi.nuorisoseurat.fi/\t <br>Judit Kemppilä / judit.kemppila@nuorisoseurat.fi</p>",
                "sv": "<p>Kör igång helgen med en familjecirkus - Börja din lördag med en cirkusföreställning med ditt barn!</p><p>Familjecirkus är en gemensam hobby mellan ett barn och en förälder, där knep, balanshandlingar och parakrobatik ger barnet sensorisk stimulans på ett roligt och enkelt sätt och stärker relationen mellan barn och förälder. Gruppen vänder sig till barn i åldern 4-6 år tillsammans med sin egen vuxen. Ingen tidigare erfarenhet krävs.</p><p>Cirkusträning anordnas som en kort kurs på lördagar kl. 10.30-11.30. Säsongen varar 5 gånger och kurspriset är 60 euro. Gruppen har plats för 9 föräldra-barn-par och platserna fylls i ordningsföljd för anmälan. Gruppen leds av cirkusläraren Hanna Terävä Varis. Ett informationsbrev kommer att skickas till din e-post cirka en vecka innan kursstart.</p><p>Kursen anordnas med stöd av studiecentrum Kansalaisfoorumi.</p><p>Undervisningspråk är finska och engelska.</p><p>Anmälan till aktiviteten görs på: https://puoti.nuorisoseurat.fi/fi/p/ilmoittautuminen. Anmälningssidan för höstgruppen öppnar senast 1 juli och stänger senast 16 october.</p><p>Mer information:<br>https://stadi.nuorisoseurat.fi/\t <br>Judit Kemppilä / judit.kemppila@nuorisoseurat.fi</p>",
                "en": "<p>Kick off the weekend with a family circus - Start your Saturday with a circus with your child!</p><p>Family circus is a joint hobby for a child and parent, where tricks, balancing and pair acrobatics provide sensory stimulation to the child in a fun and easy way and strengthen the child-parent relationship. The group is aimed at children aged 4-6 together with their own adult. No previous experience is required.</p><p>Circus is organised as a short course on Saturdays at 10.30-11.30. The season lasts 5 times and the course price is 60 euros. The group can accommodate 9 parent-child pairs and places are filled in the order of registration. The group is directed by circus teacher Hanna Terävä Varis. An information letter will be sent to your email about a week before the start of the course.</p><p>The course is organised with the support of The Citizen´s Forum study centre.</p><p>The course is taught in Finnish and English.</p><p>Registration for the activities can be done on the website: https://puoti.nuorisoseurat.fi/fi/p/ilmoittautuminen. The registration page for the autumn course opens no later than 1 July and closes by 16 October.</p><p>More information:</p><p>https://stadi.nuorisoseurat.fi/\t <br>Judit Kemppilä / judit.kemppila@nuorisoseurat.fi</p>"
            },
            "name": {
                "fi": "PERUTTU Stadin nuorisoseurat: Perhesirkusta kaksikielisesti (suomi-englanti)! – 4-6-vuotiaat aikuisen kanssa",
                "sv": "INSTÄLLD Stadin nuorisoseurat: Tvåspråkig familjecirkus (finska-engelska) – 4-6-åringar med vuxen",
                "en": "CANCELLED Stadin nuorisoseurat: Family circus bilingually (Finnish-English) – 4-6 year olds with adult"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66025/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66524",
            "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: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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1210384,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-08T10:14:16.366646Z",
                    "last_modified_time": "2025-07-08T10:14:16.366662Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774893.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1210384/?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-08T10:14:16.250691Z",
            "last_modified_time": "2025-11-13T11:13:00.167287Z",
            "date_published": null,
            "start_time": "2025-12-03T16: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,
            "short_description": {
                "fi": "Lastenyhtye Nallekopla tarjoaa jouluisen musiikillisen tarinatuokion, joka kertoo toisten ihmisten huomioimisesta ja ystävyydestä.",
                "sv": "Barnorkestern Nallekopla erbjuder en julig musikalisk berättelse som berättar om att andra människor har beaktats och vänskap.",
                "en": "The children's group Nallekopla offers a festive musical storytelling session about caring for others and friendship."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/902AC3F1EB1C4AFFEC454D25B8B14253/Lastenyhtye_Nallekoplan_joulukonsertti",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/902AC3F1EB1C4AFFEC454D25B8B14253/Helsingfors_polismusikkars_barnorkester_Nallekoplas_",
                "en": "http://www.kanneltalo.fi/en/events/event/902AC3F1EB1C4AFFEC454D25B8B14253/A_Christmas_Concert_by_Helsinki_Police_Band_s_Children_s_Group_Nallekopla_"
            },
            "description": {
                "fi": "<p>Lastenyhtye Nallekopla tarjoaa jouluisen musiikillisen tarinatuokion, joka kertoo toisten ihmisten huomioimisesta ja ystävyydestä.</p><p>Esityksessä nähdään myös joulupukki ja Helsingin poliisileijona. Tule viihtymään kanssamme koko perheen voimin!</p><p>Nallekopla on osa Helsingin poliisisoittokuntaa ja esiintyjät ovat poliiseja. Vuonna 2000 perustettu yhtye konsertoi alakouluissa, leikkipuistoissa, päiväkodeissa ja perheille suunnatuissa tapahtumissa kymmeniä kertoja vuodessa. Valistustyö on tärkeä osa Nallekoplan esityksiä. Aiheita ovat mm. liikenneturvallisuus, kaveruus ja kiusaaminen.</p><p>Kesto 1 tunti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnorkestern Nallekopla erbjuder en julig musikalisk berättelse som berättar om att andra människor har beaktats och vänskap.</p><p>I föreställningen ser vi även julgubben och Helsingfors polislejon. Ta med hela familjen och kom och trivs med oss!</p><p>Nallekopla är en del av polisinrättningen i Helsingfors och orkestermedlemmarna är poliser. Orkestern bildades 2000 och spelar tiotals konserter varje år för barn i årskurs 1–6, i lekparker, på daghem och evenemang riktade till familjer. Upplysningsarbetet är en viktig del av Nallekoplas föreställning. Teman är bl.a. trafiksäkerhet, vänskap och mobbning.</p><p>Längd 1 timme<br>Fritt inträde</p>",
                "en": "<p>The children's group Nallekopla offers a festive musical storytelling session about caring for others and friendship.</p><p>The performance also features Father Christmas and Helsinki's police lion mascot. Come enjoy the show with the whole family!</p><p>Nallekopla is part of the Helsinki Police Band, and the performers are police officers. Founded in 2000, the group performs dozens of times a year at primary schools, playgrounds, daycares and family events. Educational work is an important part of Nallekopla's performances, covering topics such as traffic safety, friendship and bullying.</p><p>Duration: 1 hour<br>Free entry</p>"
            },
            "name": {
                "fi": "Lastenyhtye Nallekoplan joulukonsertti",
                "sv": "Helsingfors polismusikkårs barnorkester Nallekoplas",
                "en": "A Christmas Concert by Helsinki Police Band's Children's Group Nallekopla"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66524/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:dbb3a64f-e47b-4f79-aa07-c10bd995e648",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=LE_Kuvatestausta_111125_EK2609131549"
                    },
                    "description": null,
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1493780,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-12T07:13:04.947986Z",
                    "last_modified_time": "2025-11-12T07:13:04.948000Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/f007fd2d-96bf-f011-bbd3-7ced8d7302b4",
                    "name": "Puu",
                    "cropping": "",
                    "photographer_name": "Testi testaaja",
                    "alt_text": "Puu ja aurinko",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493780/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-11-11T10:58:53.997916Z",
            "last_modified_time": "2025-11-12T14:20:27.269652Z",
            "date_published": "2025-11-11T10:49:52Z",
            "start_time": "2025-11-14T09:00:00Z",
            "end_time": "2025-11-14T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 100,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-11-14T08:00:00+02:00",
            "enrolment_end_time": "2025-11-14T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lyhyt kuvaus",
                "sv": "Kuvaus SV"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Tarkka kuvaus tässä&nbsp;</p></div>",
                "sv": "<div><p>Tarkka kuvaus SV</p></div>"
            },
            "name": {
                "fi": "LE Kuvatestausta 11.11.25 EK",
                "sv": "SV Otsikko"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Annantalo (KYMP)",
                "sv": "Annantalo (KYMP)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:dbb3a64f-e47b-4f79-aa07-c10bd995e648/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66781",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubb-ankdamm-felix-zenger-strandberg-project-30-vuotalo-20396358/",
                        "sv": "https://www.lippu.fi/event/klubb-ankdamm-felix-zenger-strandberg-project-30-vuotalo-20396358/",
                        "en": "https://www.lippu.fi/event/klubb-ankdamm-felix-zenger-strandberg-project-30-vuotalo-20396358/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 € / 0 €",
                        "sv": "20 € / 15 € / 0 €",
                        "en": "20 € / 15 € / 0 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1272051,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T13:12:46.669395Z",
                    "last_modified_time": "2025-07-16T13:12:46.669409Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774935.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1272051/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T13:12:46.609147Z",
            "last_modified_time": "2025-11-12T13:13:18.870248Z",
            "date_published": null,
            "start_time": "2025-11-13T16: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,
            "short_description": {
                "fi": "Tervetuloa juhlistamaan Strandberg Projectin 30-vuotista taivalta!",
                "sv": "Välkommen att fira Strandberg Projects 30-åriga resa!",
                "en": "Join us for a celebration of the 30th anniversary of Strandberg Project!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2C1545A5699C0A6EDDF20612ED154016/Strandberg_Project_30v_feat_Felix_Zenger",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/2C1545A5699C0A6EDDF20612ED154016/Strandberg_Project_30_ar_feat_Felix_Zenger",
                "en": "http://www.vuotalo.fi/en/events/event/2C1545A5699C0A6EDDF20612ED154016/Strandberg_Project_30_yrs_feat_Felix_Zenger"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan Strandberg Projectin 30-vuotista taivalta!</p><p>Strandberg Project tunnetaan erityisesti fuusion, progen ja jazzin saumattomasta yhdistelmästä, joka on tuonut yhtyeelle laajan ja uskollisen kuulijakunnan. Yhtye on vuosien varrella tehnyt yhteistyötä lukuisten kansainvälisten huippumuusikoiden kanssa, ja sen musiikki on rikastuttanut niin levyjä kuin live-esiintymisiäkin.</p><p>Illan juhlakonsertissa kuullaan sekä vanhoja klassikoita että uusia sävellyksiä, jotka vievät kuulijat matkalle yhtyeen monipuoliseen musiikilliseen maailmaan. Lavalla nähdään myös erityisvieraita, jotka ovat olleet mukana luomassa Strandberg Projectin ainutlaatuista soundia.</p><p>Liity mukaan juhlimaan tätä merkittävää virstanpylvästä ja nauttimaan unohtumattomasta musiikki-illasta!</p><p>Lavalla:<br>Jan-Olof Strandberg, basso<br>Jukka Gustavson, laulu, kosketinsoitin<br>Sami Virtanen, kitara<br>Jartsa Karvonen, rummut<br>+<br>Felix Zenger, beatbox<br>William Suvanne, saksofoni</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p><p>Kesto: n. 120 min. sis. väliaika.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465869/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>Välkommen att fira Strandberg Projects 30-åriga resa!</p><p>Strandberg Project är särskilt känt för sin sömlösa blandning av fusion, prog och jazz, vilket har gett bandet en bred och lojal publik. Under åren har bandet samarbetat med många internationella toppmusiker, och deras musik har berikat både skivor och liveframträdanden.</p><p>Kvällens jubileumskonsert kommer att bjuda på både gamla klassiker och nya kompositioner, som tar lyssnarna med på en resa genom bandets mångsidiga musikaliska värld. På scenen kommer vi också att se speciella gäster som har varit med och skapat Strandberg Projects unika sound.</p><p>Följ med och fira denna betydande milstolpe och njut av en oförglömlig musikkväll!</p><p>På scen:<br>Jan-Olof Strandberg, bas<br>Jukka Gustavson, sång klaviatur<br>Sami Virtanen, gitarr<br>Jartsa Karvonen, trummor<br>+<br>Felix Zenger, beatbox<br>William Suvanne, saxofon</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p><p>Längd: ca 120 min. inkl. paus.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465869/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>Join us for a celebration of the 30th anniversary of Strandberg Project!</p><p>Strandberg Project is known particularly for its seamless blend of fusion, prog and jazz, which has earned the band a large and loyal following. Over the years, the band has collaborated with numerous international top-class musicians, and its music has enriched both records and live performances.</p><p>The evening’s celebratory concert will feature both old classics and new compositions, taking listeners on a journey through the band’s diverse musical world. There will also be special guests on stage who have helped create Strandberg Project’s unique sound.<br>Join us for a celebration of this milestone and come enjoy an unforgettable evening of music!</p><p>On stage: <br>Jan-Olof Strandberg, bass<br>Jukka Gustavson, song, synth<br>Sami Virtanen, guitar<br>Jartsa Karvonen, drums<br>+<br>Felix Zenger, beatbox<br>William Suvanne, saxophone</p><p>Club evening, alcohol serving licence, catering by Café Pokkari, doors open at 17.30.</p><p>Duration: roughly 120 min, incl. intermission</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465869/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "name": {
                "fi": "Strandberg Project 30v feat. Felix Zenger – Klubb Ankdamm",
                "sv": "Strandberg Project 30 år feat. Felix Zenger – Klubb Ankdamm",
                "en": "Strandberg Project 30 yrs feat. Felix Zenger – Klubb Ankdamm"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66781/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773287.jpg",
                    "name": "",
                    "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-11-11T14:13:26.201289Z",
            "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,
            "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."
            },
            "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"
            },
            "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>Tervetuloa mukaan Lasten ikiomaan päivään!</p><p>Aikataulu:<br>Klo 11:00 Työpajat käynnistyvät: loikkaa pupuleikkiin, tee poniajeluun päähine ja kiidä laukkaradalle, valmista ruusuja ja kisaa legojen rakennuksessa. Herkutteluun saat infosta minikarkkiämpärin (toivonut Aapo 8v ja Enni 5v)</p><p>Pupuleikki: klo 11:15 / 11:45 / 12:45 ja 13:15<br>Muut työpajat: klo 11-14. Ratsutyöpaja+Laukkarata, Ruusutyöpaja, Lego-työpaja.<br>Klo 14:00 Työpajat sulkeutuvat. <br>Klo 14:05 Päätämme tapahtumapäivän liittymällä mukaan tiikerien ohjaamaan Lapsella on oikeus -tanssiin!</p><p>Ohjelma:</p><p>PUPULEIKKI<br>(toivonut Oona 6v)</p><p>Porkkana sentään! Pupun poikanen on sairastunut syysflunssaan ja tarvitsee apua talvivaraston täydennykseen. Vauhdikkaassa pajassa lapsi pääsee kokemaan liikkumisen iloa ja rentouttavan satuhieronnan oman aikuisen kanssa.</p><p>Leikkituokiot klo 11:15 / 11:45 / 12:45 ja 13:15 (kesto: 20min)<br>Varaa paikkasi hakemalla infosta molemmille osallistujille lipuke<br>Ohjaajana: Noora-pupu Puranen</p><p>Avoimet nonstop-työpajat klo 11-14</p><p>PONIAJELU ja HEVOSPÄÄHINEET -työpaja<br>(Toivonut Enja 4v)</p><p>Ihahaa! Tässä työpajassa tehdään päähineitä poniajeluun tai omaksi iloksi.</p><p>Issikka, mustangi vai yksisarvinen?<br>Minkälaisesta ratsusta olet aina haaveillut? Naamioi oma aikuisesti unelmien hevoseksi, hyppää selkään ja tartu suitsiin. Laukkarata kutsuu kaikkia leikkimielisiä poniajelulle!</p><p>Toteuttajina: Annantalon taidekasvattajat</p><p>RUUSUTYÖPAJA<br>(Toivonut Sandra 4v)</p><p>Työpajassa pääsee valmistamaan silkki- ja kreppipaperista persoonallisen, oman näköisen ruusun. Tämän itse tehdyn paperiruusun voi antaa lahjaksi ilahduttamaan vaikkapa parhaan kaverin, mummon, naapurin tai miksei myös omaa päivää. Ja mikä parasta, nämä kukkaset eivät taatusti kuihdu maljakossa!</p><p>Toteuttajana: Pohjois-Helsingin kuvataidekoulun opettajat</p><p>PALIKKAMESTARIT - Lego-työpaja <br>(Toivoneet Kuisma 6v ja tuntematon toivoja)</p><p>Tule mukaan haastamaan mielikuvituksesi leikkimieliseen legokisaan. Edessäsi on valikoima peruspalikoita. Sinun on rakennettava niistä tietyssä rajatussa ajassa ennakkoon arvottu aihe.</p><p>Pajaan mahtuu 6 rakentajaa kerrallaan<br>Vetäjänä: Annantalosta ja TV:stä tuttu Heidi Puumalainen</p><p>Muuta tutustuttavaa:<br>Piilossa-näyttely 1.krs. galleria<br>Echoes Through Light Years -näyttely 2.krs. Etelägalleria<br>Jouluvitriinit: 2.krs. käytävä</p><p>Tapahtuman päätös:<br>TIIKERITANSSI  ja popcornia<br>(Toivoneet Oliver 6v ja Frida 5v)</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"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66301/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67220",
            "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:348/?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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493773,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-11T12:13:08.919101Z",
                    "last_modified_time": "2025-11-11T12:13:08.919114Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778835.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493773/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-11T12:13:08.793930Z",
            "last_modified_time": "2025-11-11T12:13:09.058764Z",
            "date_published": null,
            "start_time": "2025-12-04T17: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,
            "short_description": {
                "fi": "Pop & Jazz Konservatorion maksuttomassa konsertissa esiintyvät Caballeros del Viento ja Sähkövatkain."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/66A21DDC17DC18929D71168E11997176/Pop_Jazz_Konservatorio_Caballeros_del_Viento_Sahkovatkain",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/66A21DDC17DC18929D71168E11997176/Pop_Jazz_Konservatorio_Caballeros_del_Viento_Sahkovatkain",
                "en": "http://www.malmitalo.fi/en/events/event/66A21DDC17DC18929D71168E11997176/Pop_Jazz_Konservatorio_Caballeros_del_Viento_Sahkovatkain"
            },
            "description": {
                "fi": "<p>Pop & Jazz Konservatorion maksuttomassa konsertissa esiintyvät Caballeros del Viento ja Sähkövatkain.</p><p><b>Caballeros del Viento</b><br>Caballeros del Viento johdattaa kuulijansa latinalaisen musiikin lumoavaan maailmaan, jossa bossanovan keveys ja tangon rytminen eleganssi sulautuvat ajattomaksi kokonaisuudeksi. Yhtyeen lämmin sointi, kitaran herkkyys, huilujen ja laulun vivahteikas tulkinta luovat sävelmaiseman, joka kantaa kuin lempeä Karibian merituuli – täynnä valoa, liikettä ja tunnetta.</p><p>Tuuli Piltonen - Laulu<br>Tarmo Lattu - Kitara<br>Onni Laine - Kitara ja Harmonikka<br>Panu Laakso - Rummut ja Laulu<br>Joonia Marttio - Kontrabasso<br>Jaro Väisänen - Kongat ja Rummut<br>Maksim Shardin - Perkussiot<br>Pinja Leinonen - Piano<br>Janine Siewert - Huilu<br>Anniina Tuomaala - Huilu<br>Jenna Mikkanen – Trumpetti</p><p><b>Sähkövatkain</b><br>Valmistaudu kytkemään tajuntasi virtapiiriin, kun Sähkövatkain astuu estradille — energinen fuusiojazz-kokoonpano, joka sekoittaa sähkön, improvisaation ja svengin huumaavaksi pyörteeksi. Tämä ei ole taustamusiikkia - tämä on äänten kemiallinen reaktio, jossa jazzin vapaus kohtaa rockin voiman ja elektronisen sykkeen.</p><p>Sähkövatkain rakentaa monipuolisista rytmeistä ja värikkäistä harmonioista kuulijalle ravisuttavan kuuntelukokemuksen, esittäen mm. Herbie Hancockin ja T-Squaren klassikoita sekä Sähkövatkaimen uusia sävellyksiä ja sovituksia.</p><p>Tämä on fuusiojazzia ilman rajoja - villiä, virtaviivaista ja vaarallisen elävää.</p><p>Tarmo Lattu - Sähkökitara<br>Patrik Fonsén - Sähkökitara<br>Pessi Heiskanen - Kosketinsoittimet<br>Joonia Marttio - Basso<br>Onni Koivisto – Rummut</p><p>Kesto: 2 t, sis. 20 min väliajan</p><p>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "Pop & Jazz Konservatorio: Caballeros del Viento & Sähkövatkain",
                "sv": "Pop & Jazz Konservatorio: Caballeros del Viento & Sähkövatkain",
                "en": "Pop & Jazz Konservatorio: Caballeros del Viento & Sähkövatkain"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67220/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67219",
            "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:348/?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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493771,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-11T11:13:22.262812Z",
                    "last_modified_time": "2025-11-11T11:13:22.262830Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778834.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493771/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-11T11:13:22.151936Z",
            "last_modified_time": "2025-11-11T11:13:22.388723Z",
            "date_published": null,
            "start_time": "2025-12-02T17: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,
            "short_description": {
                "fi": "Pop & Jazz Konservatorio tuo Malmitaloon yhtyeensä Kuumat Käpälät ja Kahvitauko!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/724478DF330016354C412FD64B078168/Pop_Jazz_Konservatorio_Kuumat_Kapalat_Kahvitauko",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/724478DF330016354C412FD64B078168/Pop_Jazz_Konservatorio_Kuumat_Kapalat_Kahvitauko",
                "en": "http://www.malmitalo.fi/en/events/event/724478DF330016354C412FD64B078168/Pop_Jazz_Konservatorio_Kuumat_Kapalat_Kahvitauko"
            },
            "description": {
                "fi": "<p>Pop & Jazz Konservatorio tuo Malmitaloon yhtyeensä Kuumat Käpälät ja Kahvitauko!</p><p><b>Kuumat Käpälät</b><br>Kuumat Käpälät on lanteita liikuttava bändi, joka soittaa funkkia, fuusiota ja joskus vähän rokkiakin. Ohjelmistoon sisältyy vanhoja klassikoita ja nykypäivän ihmeitä, sekä niiden välissä julkaistuja kappaleita.</p><p>Bändi skulaa paljon instrumentaaleja, mutta jottei rytmisektiolla tule liian yksinäiseksi, osaan showsta liittyy mukaan laulaja täyttämään taajuuksia.</p><p>Otso Thomson (Rummut)<br>Issiaka Dembele: (Perkussio)<br>Juuso Parjanen (Basso)<br>Tomi Kokkonen (Koskettimet ja piano)<br>Niko Ahvenisto (Kitara)<br>Ilta Attila (Saksofoni ja huilu)<br>Josias Myllyaho (Saksofoni)<br>Ellen Hellberg (Laulu)</p><p><b>Kahvitauko</b><br>Kahvitauko ei tyydy soittamaan vain teehetkien taustamusiikkia. Tämä yhdeksänhenkinen yhtye toimii kofeiinin voimalla, ja siitä saatu energia tarttuu takuulla myös yleisöön. Yhtyeen jäseniä yhdistää rakkaus jazziin, jonka vaikutteita voikin kuulla ohjelmistossa. Tervetuloa groovaamaan Kahvitauon kanssa!</p><p>Ellen Hellberg - Laulu<br>Matilda Paju - Laulu<br>Oscar Kullström - Sax<br>Josias Myllyaho - Sax<br>Lauri Usmi - Kitara<br>Pinja Leinonen - Piano<br>Pessi Lehtinen - Vibrafoni<br>Oskari Leppänen - Basso<br>Aalto Koskela – Rummut</p><p>Kesto: 2 t, sis. 20 min väliajan</p><p>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "Pop & Jazz Konservatorio: Kuumat Käpälät & Kahvitauko",
                "sv": "Pop & Jazz Konservatorio: Kuumat Käpälät & Kahvitauko",
                "en": "Pop & Jazz Konservatorio: Kuumat Käpälät & Kahvitauko"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67219/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67155",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491082,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-13T11:13:26.707824Z",
                    "last_modified_time": "2025-10-13T11:13:26.707836Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778246.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491082/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-13T11:13:26.440456Z",
            "last_modified_time": "2025-11-11T07:12:03.978045Z",
            "date_published": null,
            "start_time": "2025-11-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tilaisuudessa luetaan gazalaisten lasten ja nuorten sodan aikana kirjoittamia tekstejä suomeksi ja arabiaksi."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/6C61E57A121568A280EEEA8BEE2F9B08/Kertomuksia_Gazasta_-lukutilaisuus"
            },
            "description": {
                "fi": "<p>Tilaisuudessa luetaan gazalaisten lasten ja nuorten sodan aikana kirjoittamia tekstejä suomeksi ja arabiaksi.</p><p>Kertomuksia Gazasta on inhimillinen kannanotto, jotta mahdollisimman moni kuulisi Gazan lasten ja nuorten kirjoittamat tekstit. Tarinat ovat todellisia ja tekstit on poimittu kahdesta kokoelmakirjasta, Här var vårt hus (2025) ja A Million Kites (2024).</p><p>“Palauttakaamme ihmisyys niille, joilta se on riistetty.”<br>- Amer Sarsour</p><p>Lukutilaisuudessa kuullaan sellomusiikkia ja nähdään pienimuotoinen tanssiesitys.</p><p>Sello: Lea Pekkala<br>Tanssiesitys: KATVE [blind spot] Company<br>Mukana järjestämässä: Lapinlahden Lähteen MIITTI -hanke</p><p>Tilaisuus järjestetään Stoan aulassa, vapaa pääsy.</p><p><b>Oi kuolema, odota hetki</b><br>Runon kirjoittanut Mariam Al-Khatib<br>ikä: tuntematon, Gaza</p><p>Haluan että minulta kysytään, kuinka hänet valitsen.<br>Yksin, kokonaisena, onnellisena.<br>Haluan, että minua varoitetaan<br>jotta ehdin laittaa hiukseni hienoksi ja laskea tähdet viimeisen kerran vielä.<br>Haluan kuolemani odottavan, ihan pienen hetken verran -<br>tuolla hiekan alla pääni<br>ja käteni taivaalla.<br>Haluan kuolla kummankin käteni<br>ainoan pääni<br>ja lukuisten unelmieni kanssa</p>"
            },
            "name": {
                "fi": "Kertomuksia Gazasta -lukutilaisuus – KATVE [blind spot] Company"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67155/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67211",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491202,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T13:13:27.348502Z",
                    "last_modified_time": "2025-10-27T13:13:27.348517Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778243.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491202/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T13:13:27.257553Z",
            "last_modified_time": "2025-11-10T16:13:07.337215Z",
            "date_published": null,
            "start_time": "2025-12-10T08:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. ESITYS ON TÄYTEEN VARATTU!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/08EF8699C1C7E2F7453904DD8A2F309B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/08EF8699C1C7E2F7453904DD8A2F309B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "en": "http://www.annantalo.fi/en/events/event/08EF8699C1C7E2F7453904DD8A2F309B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa"
            },
            "description": {
                "fi": "<p>Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. ESITYS ON TÄYTEEN VARATTU!</p><p>Esitys perustuu Charles Perrault'n tunnettuun satuun, jossa neuvokas kissa auttaa myllärinpoikaa seikkailuissaan. Tämä kiehtova esitys tempaa mukaansa niin pienet kuin suuretkin katsojat! <br>Esitys on viehättävän lämmin ja kotoisa. Esityksen lavastus ja puvut ovat virkkaustaiteen taidonnäyte.</p><p>Esiintyjät: Ritva Sorvali ja Helena Ryti <br>Lavasteiden ja pukujen suunnittelu ja virkkaus: Tarja Kopperi</p><p>Kesto: 25 min. Esityksen jälkeen yleisö voi tutustua näyttämöön.<br>Ikäsuositus: yli 3-vuotiaille <br>Kieli: Suomi</p><p>Maksuton, paikkavaraukset: kultus.fi 9.11 klo 8 alkaen</p>"
            },
            "name": {
                "fi": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "sv": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "en": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67211/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67210",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491201,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T13:13:26.972992Z",
                    "last_modified_time": "2025-10-27T13:13:26.973007Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778241.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491201/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T13:13:26.881053Z",
            "last_modified_time": "2025-11-10T16:13:07.149750Z",
            "date_published": null,
            "start_time": "2025-12-10T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. ESITYS ON TÄYTEEN VARATTU!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4178EF31744C135B42063F77D839FDB7/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/4178EF31744C135B42063F77D839FDB7/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "en": "http://www.annantalo.fi/en/events/event/4178EF31744C135B42063F77D839FDB7/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa"
            },
            "description": {
                "fi": "<p>Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. ESITYS ON TÄYTEEN VARATTU!</p><p>Esitys perustuu Charles Perrault'n tunnettuun satuun, jossa neuvokas kissa auttaa myllärinpoikaa seikkailuissaan. Tämä kiehtova esitys tempaa mukaansa niin pienet kuin suuretkin katsojat! <br>Esitys on viehättävän lämmin ja kotoisa. Esityksen lavastus ja puvut ovat virkkaustaiteen taidonnäyte.</p><p>Esiintyjät: Ritva Sorvali ja Helena Ryti <br>Lavasteiden ja pukujen suunnittelu ja virkkaus: Tarja Kopperi</p><p>Kesto: 25 min. Esityksen jälkeen yleisö voi tutustua näyttämöön.<br>Ikäsuositus: yli 3-vuotiaille <br>Kieli: Suomi</p><p>Maksuton, paikkavaraukset: kultus.fi 9.11 klo 8 alkaen</p>"
            },
            "name": {
                "fi": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "sv": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "en": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67210/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67209",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491200,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T13:13:26.600107Z",
                    "last_modified_time": "2025-10-27T13:13:26.600123Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778239.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491200/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T13:13:26.510967Z",
            "last_modified_time": "2025-11-10T16:13:06.964002Z",
            "date_published": null,
            "start_time": "2025-12-09T08:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. Esitys on täyteen varattu!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9FFF9338D6F392ED3B79FC13B638998B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9FFF9338D6F392ED3B79FC13B638998B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "en": "http://www.annantalo.fi/en/events/event/9FFF9338D6F392ED3B79FC13B638998B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa"
            },
            "description": {
                "fi": "<p>Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. Esitys on täyteen varattu!</p><p>Esitys perustuu Charles Perrault'n tunnettuun satuun, jossa neuvokas kissa auttaa myllärinpoikaa seikkailuissaan. Tämä kiehtova esitys tempaa mukaansa niin pienet kuin suuretkin katsojat!</p><p>Esitys on viehättävän lämmin ja kotoisa. Esityksen lavastus ja puvut ovat virkkaustaiteen taidonnäyte.</p><p>Esiintyjät: Ritva Sorvali ja Helena Ryti <br>Lavasteiden ja pukujen suunnittelu ja virkkaus: Tarja Kopperi</p><p>Kesto: 25 min. Esityksen jälkeen yleisö voi tutustua näyttämöön.<br>Ikäsuositus: yli 3-vuotiaille <br>Kieli: Suomi</p><p>Maksuton, paikkavaraukset: kultus.fi 9.11 klo 8 alkaen</p>"
            },
            "name": {
                "fi": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "sv": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "en": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67209/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67208",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491199,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T13:13:26.218472Z",
                    "last_modified_time": "2025-10-27T13:13:26.218487Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778238.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491199/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T13:13:26.107557Z",
            "last_modified_time": "2025-11-10T16:13:06.791725Z",
            "date_published": null,
            "start_time": "2025-12-09T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. Esitys on täyteen varattu!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B01A6F613FE54CE51F9E7D407738551A/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/B01A6F613FE54CE51F9E7D407738551A/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "en": "http://www.annantalo.fi/en/events/event/B01A6F613FE54CE51F9E7D407738551A/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa"
            },
            "description": {
                "fi": "<p>Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. Esitys on täyteen varattu!</p><p>Esitys perustuu Charles Perrault'n tunnettuun satuun, jossa neuvokas kissa auttaa myllärinpoikaa seikkailuissaan. Tämä kiehtova esitys tempaa mukaansa niin pienet kuin suuretkin katsojat!</p><p>Esitys on viehättävän lämmin ja kotoisa. Esityksen lavastus ja puvut ovat virkkaustaiteen taidonnäyte.</p><p>Esiintyjät: Ritva Sorvali ja Helena Ryti <br>Lavasteiden ja pukujen suunnittelu ja virkkaus: Tarja Kopperi</p><p>Kesto: 25 min. Esityksen jälkeen yleisö voi tutustua näyttämöön.<br>Ikäsuositus: yli 3-vuotiaille <br>Kieli: Suomi</p><p>Maksuton, paikkavaraukset: kultus.fi 9.11 klo 8 alkaen</p>"
            },
            "name": {
                "fi": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "sv": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "en": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67208/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66547",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1225635,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T09:12:51.786933Z",
                    "last_modified_time": "2025-07-10T09:12:51.786946Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775005.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1225635/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-10T09:12:51.736294Z",
            "last_modified_time": "2025-11-10T15:13:11.268488Z",
            "date_published": null,
            "start_time": "2025-11-19T15:00:00Z",
            "end_time": "2025-11-19T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Box Stoaan!",
                "sv": "Ta en kreativ paus i vardagen och slå dig ner en stund på kvällste i Box Stoa!",
                "en": "Take a creative break from everyday life and sit down for evening tea at Box Stoa!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/E730777083BFE983D4575A09CF5F8889/Taidetauko-tyopajat",
                "sv": "http://www.stoa.fi/sv/evenemang/event/E730777083BFE983D4575A09CF5F8889/Konstpaus-workshoppar",
                "en": "http://www.stoa.fi/en/events/event/E730777083BFE983D4575A09CF5F8889/Art_break_workshops"
            },
            "description": {
                "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Box Stoaan!</p><p>Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Ravintola Box Stoassa on osallistujille tarjolla iltateetä tai mehua.</p><p><b>19.11. klo 17–19 Värileikki musteella</b><br>Lapsen oikeuksien viikon Taidetauko-pajassa maalataan keittiöstä tutuilla aineksilla: paletissa on tänään muun muassa punakaalia, etikkaa, suolaa ja soodaa. Ihaillaan yllättäviä värimuutoksia kun eri ainekset kohtaavat! Sopii erityisen hyvin lapsille ja perheille.</p><p>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Ravintola Box Stoa<br>Kesto: 120 min per kerta<br>Pajojen ohjauskieli: suomi, ranska ja englanti <br>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p>",
                "sv": "<p>Ta en kreativ paus i vardagen och slå dig ner en stund på kvällste i Box Stoa!</p><p>I Konstpaus-workshopparna berikas din vardag med lugnt konsthantverk som är lätt att lära sig. Restaurang Box Stoa bjuder deltagarna på kvällste eller saft.</p><p><b> on 19.11 kl. 17–19 Färglek med bläck </b><br> I Taidetauko-verkstaden som ordnas under veckan för barnets rättigheter leker man med färger! Nu målar vi med välbekanta ingredienser från köket: dagens palett innehåller rödkål, vinäger, salt och bikarbonat. Beundra de överraskande färgskiftningarna när olika ingredienser möts!</p><p>Handledare: Chloé Mahy-Hulkko <br>Plats: Restaurang Box Stoa<br>Längd: 120 min per gång<br>Workshopparna handleds på finska, franska och engelska <br>Fritt inträde. Ingen förhandsanmälan. <br>Stoa bjuder deltagarna på kvällste.</p>",
                "en": "<p>Take a creative break from everyday life and sit down for evening tea at Box Stoa!</p><p>In art break workshops, you get to enrich your daily life with easy-to-acquire, unhurried craftsmanship. Restaurant Box Stoa provides participants evening tea or juice!</p><p><b>Wed 19 November at 17:00–19:00 Colourful play with ink</b><br>Play with colours! Today we're painting with familiar ingredients from the kitchen: today's palette includes red cabbage, vinegar, salt and baking soda. Admire the surprising color changes when different ingredients meet! Suitable for children of all ages.</p><p>Instructor: Chloé Mahy-Hulkko <br>Location: Restaurant Box Stoa<br>Duration: 120 min per session<br>Workshop instruction language: Finnish, French and English <br>Admission is free. No advance registration. Stoa provides evening tea for participants.</p>"
            },
            "name": {
                "fi": "Taidetauko-työpajat – Yllättävät värit -maalauspaja",
                "sv": "Konstpaus-workshoppar – Överraskande färger målningsworkshop",
                "en": "Art break workshops – Colourful play"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66547/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66581",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490980,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-02T07:13:38.065458Z",
                    "last_modified_time": "2025-10-02T07:13:38.065472Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775032.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490980/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-02T07:13:37.949393Z",
            "last_modified_time": "2025-11-10T14:12:29.209749Z",
            "date_published": null,
            "start_time": "2025-11-22T11:00:00Z",
            "end_time": "2025-11-22T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lapsen oikeuksien viikon perhepäivässä on luvassa valloittavaa nukketeatteria ja musiikin pyörteitä niin pienille kuin isommillekin!",
                "sv": "Familjedagen under Veckan för barnens rättigheter kommer att bjuda på fängslande dockteater och musikaliska virvelvindar för både stora och små!",
                "en": "This day of art for the whole family in Children's Rights Week features captivating puppetry and captivating music for young and old alike!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/E0A32708B8DFF3B97D6B59F403C76FF4/Koko_perheen_taidepaiva_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/E0A32708B8DFF3B97D6B59F403C76FF4/Hela_familjens_konstdag",
                "en": "http://www.stoa.fi/en/events/event/E0A32708B8DFF3B97D6B59F403C76FF4/A_day_of_art_for_the_whole_family"
            },
            "description": {
                "fi": "<p>Lapsen oikeuksien viikon perhepäivässä on luvassa valloittavaa nukketeatteria ja musiikin pyörteitä niin pienille kuin isommillekin!</p><p>Nyt juhlitaan lapsen oikeuksia! Tehdas teatteri tuo eläinmaailman ihmeet perheen pienimpien ulottuville, ja We Jazz kutsuu kaiken ikäiset jammailemaan hyvän musiikin tahdissa. Uulun sanattomassa muskarissa päästään itsekin musisoimaan, ja Stoan aulasta löytyy hauska miniperhe-työpaja. Taitavat kasvomaalaajamme loihtivat kävijöille eläimellistä ilmettä.</p><p><b>Päivän ohjelma:</b><br>klo 13 ja 15 Tehdas teatteri: Eläköön eläimet pienille (ennakkoilmoittautuminen, ks. tapahtuma)<br>klo 14 We Jazz: Mattsson / Herrala / Kallio <br>klo 13.15 Sanaton muskari<br>klo 13-16 Miniperhe -työpaja<br>Klo 13-16 Satumetsän varjoissa -työpaja<br>klo 13-15.45 Kasvomaalausta</p><p><b>We Jazz -lastenkonsertti</b><br>Nuoren polven saksofonistilahjakkuus Oona Mattsson kohtaa Suomen jazzkentän veteraanikompin, basisti Ville Herralan ja rumpali Mika Kallion.<br>Kesällä debytoineen Mattsson / Herrala / Kallio -trion ohjelmisto koostuu tarkoin valituista jazzhistorian helmistä, herkästi ja vapaasti tulkittuina.</p><p><b>Eläköön eläimet! pikkuisille</b><br>Oletko ihmetellyt, miten kastemato voi kuulla ilman korvia? Tai tiesitkö, että laiskiainen laskeutuu alas puusta vain kakatakseen?<br>ELÄKÖÖN ELÄIMET! vastaa kysymyksiisi vallattomilla faktoilla, sydämellisellä huumorilla ja taidokkailla nukkehahmoillaan. <br>Taaperoille sovitetussa versiossa ihastellaan ja ihmetellään eläimiä pehmeiltä nurmimatoilta, joilla voi loikoilla ihan muina matoina tai kainaloisena kanana. Jokainen pieni katsoja saa mukaansa myös turvamadon, jonka kanssa eläytyä esitykseen.<br>Kesto: 30 min<br>Näytös on akustisesti lempeä, eikä täyttä pimeyttä tule.<br>Suunnattu 1 - 3-vuotiaille<br>Kieli: suomi<br>Mukaan mahtuu noin 20 taaperoa ja saman verran aikuisia. HUOM! Ei vauvoille.<br>Maksuton. Ennakkoilmoittautuminen esityksen kohdalta 11.11. alkaen.</p><p><b>Sanaton muskari</b><br>Sanaton muskari on esitys, jossa lapset ja perheet voivat kokea monipuolisesti musiikkia. Pedagogiikka perustuu sanattomiin lauluihin ja loruihin, eli toiminta soveltuu kaikille äidinkielestä riippumatta.</p><p>Sanaton muskari sopii myös heille, joilla on kehitysvaikeuksia tai haasteita motoriikan kanssa. Tässä pedagogiikassa musiikkia opitaan kuin äidinkieltä - ensin kuunnellaan, sitten kokeillaan. Musiikkia ja rytmiä aistitaan yhdessä liikkumalla, toistamalla ja vertaamalla ryhmässä.</p><p>Ohjaaja: Paloma Català Parga, Uulu<br>Ikäsuositus 0–10 vuotta, pienimmät aikuisen seurassa.<br>Mukaan mahtuu max 25 lasta, lisäksi heidän aikuisensa.<br>Kesto 40 min.</p><p><b>Miniperhe-työpaja</b><br>Perheitä on erilaisia, ja jokainen perheenjäsen on aivan omanlaisensa.  Millaisia hassuja, värikkäitä tai ihania tyyppejä kuuluu sinun perheeseesi? Tule luomaan oma miniatyyriperhe! Nuket syntyvät puutikuista, liimasta, kierrätyslangoista ja mielikuvituksesta. <br>Ohjaaja: Chloé Mahy-Hulkko<br>Kielet: suomi, ranska, englanti</p><p><b>Satumetsän varjoissa -työpaja</b><br>Työpajassa tutkitaan varjoja ja piirretään niiden avulla mielikuvituksellisia otuksia ja metsän asukkaita. <br>Ohjaaja: Juho Hellsten</p><p><b>Eläin-kasvomaalauksia</b><br>Tule ja muutu eläimeksi taidokkaiden kasvomaalaajiemme käsissä.</p><p>Puotinkylän Valtti pitää Stoan aulassa herkkukioskia, josta löytyy herkkuja pientä korvausta vastaan.</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Familjedagen under Veckan för barnens rättigheter kommer att bjuda på fängslande dockteater och musikaliska virvelvindar för både stora och små!</p><p>Familjedagen under Veckan för barnens rättigheter kommer att bjuda på fängslande dockteater och musikaliska virvelvindar för både stora och små!</p><p>Låt oss fira barnens rättigheter! Tehdas teatteri har med sig djurvärldens underverk till de små i familjen och We Jazz bjuder in alla åldrar att jamma loss till bra musik. Du kan själv skapa musik i Uulus ordlösa musiklekskola, och det finns en rolig mini-familjeverkstad i Stoas aula. Våra duktiga ansiktsmålare målar djurliga bilder på besökarna.</p><p>Dagens program<br>kl. 13 och 15 Tehdas teatteri: Eläköön eläimet (föranmälan, se evenemang)<br>14:00 We Jazz: Mattsson / Herrala / Kallio <br>kl. 13.15 Ordlös musiklekskola<br>kl. 13–16 mini-familjeverkstad<br>kl. 13–15.45 Ansiktsmålning</p><p>Ordlös musiklekskola<br>Den ordlösa musiklekskolan är en föreställning där barn och familjer kan uppleva musik på olika sätt. Pedagogiken bygger på icke-verbala sånger och berättelser, vilket innebär att aktiviteterna passar alla, oavsett modersmål.</p><p>Men ordlösa musiklekskolan är också lämplig för personer med utvecklingsstörning eller motoriska utmaningar. Denna pedagogik lär ut musik som ett modersmål – först lyssnar du, sedan försöker du. Musik och rytm upplevs tillsammans genom att man rör sig, upprepar och jämför i en grupp.</p><p>Regi: Paloma Català Parga<br>Rekommenderad ålder 0–10 år, de yngsta tillsammans med en vuxen.<br>Det finns en maximal kapacitet på 25 barn, plus deras vuxna.<br>Längd 40 min.</p><p>Mini-familjeverkstad<br>Familjer är olika och alla familjemedlemmar är olika. Vad finns det för roliga, färgstarka eller underbara människor i din familj? Kom och skapa din egen minifamilj! Dockorna är tillverkade av träfibrer, lim, återvunnet garn och fantasi.</p><p>Regi: Chloé Mahy-Hulkko<br>Språk: finska, franska, engelska</p><p>Puotinkylän Valtti har ett delikatesstånd i lobbyn på Stoa, där du kan köpa godsaker för en liten slant.</p><p>Fritt inträde.</p>",
                "en": "<p>This day of art for the whole family in Children's Rights Week features captivating puppetry and captivating music for young and old alike!</p><p>Let's celebrate the rights of the child! Independent theatre Tehdas Teatteri introduces the littlest audience members to the wonders of the animal world, while We Jazz invites people of all ages to jam out to good music. Culture Cooperative Uulu’s wordless music playschool lets children make music themselves, and there will also be a fun mini-family workshop in the Stoa lobby. Participants looking for a more animalistic look can turn to our skilled face painters.</p><p>The day’s programme:<br>13.00 and 15.00 Tehdas Teatteri: Eläköön eläimet (Hooray for animals) (advance registration, see event)<br>14.00 We Jazz: Mattsson / Herrala / Kallio<br>13.15 Wordless music playschool<br>13.00–16.00 Mini-family workshop<br>13.00–15.45 Face painting</p><p>Wordless music playschool<br>The wordless music playschool is a performance that allows children and families to experience music in a variety of ways. The pedagogy is based on wordless songs and rhymes, which means that the activities are suitable for everyone, regardless of their mother tongue.</p><p>The wordless music playschool is also suitable for those with developmental disabilities or motor challenges. This pedagogy teaches music like a mother tongue – first you listen, then you try it yourself. Music and rhythm are sensed together by moving, repeating and comparing in a group.</p><p>Instructor: Paloma Català Parga<br>Age recommendation: 0–10 years; the youngest participants should be accompanied by an adult.<br>Maximum capacity: 25 children, plus their adults.<br>Duration: 40 min</p><p>Mini-family workshop<br>There are different kinds of families, and each family member is also different. What kind of funny, colourful or lovely people are in your family? Come and create your own miniature family! The miniatures are made with wooden sticks, glue, recycled yarn and imagination.</p><p>Instructor: Chloé Mahy-Hulkko<br>Languages: Finnish, French, English</p><p>Puotinkylän Valtti will be running a kiosk in the Stoa lobby, where you can purchase treats for a small fee.</p><p>Free entry.</p>"
            },
            "name": {
                "fi": "Koko perheen taidepäivä – Lapsen oikeuksien viikko",
                "sv": "Hela familjens konstdag – Veckan för barnets rättigheter",
                "en": "A day of art for the whole family – Children’s Rights Week"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66581/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66899",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2025-kulttuurikeskus-caisa-20645195/",
                        "sv": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2025-kulttuurikeskus-caisa-20645195/",
                        "en": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2025-kulttuurikeskus-caisa-20645195/"
                    },
                    "description": null,
                    "price": {
                        "fi": "33 € / 17 €",
                        "sv": "33 € / 17 €",
                        "en": "33 € / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490759,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-12T08:12:58.862561Z",
                    "last_modified_time": "2025-09-12T08:12:58.862575Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776780.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490759/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-12T08:12:58.806440Z",
            "last_modified_time": "2025-11-10T13:13:08.880091Z",
            "date_published": null,
            "start_time": "2025-11-12T19: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,
            "short_description": {
                "fi": "Mother Tongue on kieltä käsittelevä soolo, äänen ja kaiun duetto, väliin asettuva olento.",
                "sv": "Mother Tongue är ett solo om språk, en duett för ljud och eko, en varelse mitt emellan.",
                "en": "Mother Tongue is a solo about language, a duet of the voice and its echo, an in-between being."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/8152B50040CD0D8ECED2AA16439ADC07/Liikkeella_marraskuussa_Luc_a_Garc_a_Pull_s_Mother_Tongue",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8152B50040CD0D8ECED2AA16439ADC07/Liikkeella_marraskuussa_Luc_a_Garc_a_Pull_s_Mother_Tongue",
                "en": "http://www.caisa.fi/en/events/event/8152B50040CD0D8ECED2AA16439ADC07/Moving_in_November_Luc_a_Garc_a_Pull_s_Mother_Tongue"
            },
            "description": {
                "fi": "<p>Mother Tongue on kieltä käsittelevä soolo, äänen ja kaiun duetto, väliin asettuva olento.</p><p>Lucía García Pullésin lähtökohta on, että identiteetti on henkilökohtaisten kokemusten muovaamia intiimejä narratiiveja, joita normatiivisuuden yliote pyrkii peittämään alleen.</p><p>Omasta kuvitteellisesta, fiktiivisestä ja herkästä arkeologiastaan käsin García Pullés työskentelee äänenkäytöllisten ja kehollisten eleiden kanssa toisteisesti ja hellittämättä, samalla kaivautuen kehon erilaisiin ajallisiin ja maantieteellisiin kerrostumiin.</p><p>Kesto: 40 min<br>Paikka: Caisan sali</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 6.–16.11.2025. Osana festivaalia García Pullés käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks -tilaisuudessa 12.11. klo 12 Caisassa.</p><p>Festivaaliesityksiin myynnissä myös festivaalipasseja. Lisätietoja: https://liikkeellamarraskuussa.fi/liput-ja-esityspaikat-2/</p><p>Koreografia ja esitys: Lucía García Pullés <br>Äänisuunnittelu: Aria Seashell Delacelle<br>Laulu: Mailén Pankonin<br>Pukusuunnittelu: Anna Carraud<br>Valosuunnittelu: Carolina Oliveira <br>Näyttämömestari: Marie Predour<br>Äänenkäytön valmentaja: Daniel Wendler<br>Ulkopuolinen neuvonanto: Marcos Arriola<br>Taiteellinen yhteistyö: Sophie Demeyer, Volmir Cordeiro <br>Tuotanto: Bureau Cokot - Julie Le Gall <br>Yhteistuotanto: MC93 - Maison de la Culture de Seine-Saint- Denis (FR) ja Riksteatern (SE), osana Euroopan Unionin rahoittamaa Common Stories Luova Eurooppa projektia - Charleroi Danse (BE) - La Manufacture CDCN Nouvelle Aquitaine Bordeaux, La Rochelle - Théatre de Vanves (FR) – Ranskan kulttuuriministeriön tuki <br>Teosta tukee: La Ménagerie de Verre (FR), Carreau du Temple (FR), Danse Dense (FR), Centre National de la Danse (FR), La Compagnie DCA à Saint-Denis, Festival Solos al Mediodía, Théâtre Solis (UR)</p><p>Mother Tongue sai ensi-iltansa Festival Artdanthéssa Vanvesissa maaliskuussa 2025.</p>",
                "sv": "<p>Mother Tongue är ett solo om språk, en duett för ljud och eko, en varelse mitt emellan.</p><p>Lucía García Pullés utgångspunkt är att identitet är en intim berättelse som formas av personliga erfarenheter och som normativitetens övergrepp försöker att dölja.</p><p>Med utgångspunkt i sin egen fantasifulla, fiktiva och känsliga arkeologi arbetar García Pullés med vokala och kroppsliga gester på ett repetitivt och obevekligt sätt, samtidigt som hon fördjupar sig i kroppens olika tidsmässiga och geografiska skikt.</p><p>Längd: 40 min.<br>Plats: Salen i Caisa</p><p>Verket är en del av festivalen Liikkeellä marraskuussa 6–16.11.2025. Som en del av festivalen kommer García Pullés att samtala med en lokal konstnär vid det öppna evenemanget Soup Talks den 12 november kl. 12.00 på Caisa.</p><p>Festivalpass för festivalens föreställningar finns också till försäljning. Mer information: https://liikkeellamarraskuussa.fi/liput-ja-esityspaikat-2/</p><p>Koreografi och framträdande: Lucía García Pullés<br>Ljuddesign: Aria Seashell Delacelle<br>Sång Mailén Pankonin<br>Kostym: Anna Carraud<br>Ljusdesign: Carolina Oliveira<br>Scenmästare: Marie Predour<br>Röstcoach: Daniel Wendler<br>Extern rådgivning: Marcos Arriola<br>Konstnärligt samarbete: Sophie Demeyer, Volmir Cordeiro<br>Produktion: Bureau Cokot - Julie Le Gall<br>Samproduktion: MC93 - Maison de la Culture de Seine-Saint- Denis (FR) och Riksteatern (SE), inom ramen för projektet Common Stories Kreativa Europa som finansieras av Europeiska unionen - Charleroi Danse (BE) - La Manufacture CDCN Nouvelle Aquitaine Bordeaux, La Rochelle - Théatre de Vanves (FR) - Stöd från det franska kulturministeriet<br>Verket stöds av: La Ménagerie de Verre (FR), Carreau du Temple (FR), Danse Dense (FR), Centre National de la Danse (FR), La Compagnie DCA à Saint-Denis, Festival Solos al Mediodía, Théâtre Solis (UR)</p><p>Mother Tongue fick sin premiär på Festival Artdanthé i Vanves i mars 2025.</p>",
                "en": "<p>Mother Tongue is a solo about language, a duet of the voice and its echo, an in-between being.</p><p>Lucía García Pullés starts with the idea that identity is a construction made up of stories about ourselves: intimate narratives nourished by our personal experiences, which are in turn overlaid by normativity’s precedence. Repetitive, saturated, and insistent,</p><p>García Pullés works with vocal and physical gestures from her personal phantasmagorical, fictional, and sensitive archaeology, digging into the different temporal and geographical layers of the body.</p><p>Duration: 40 min</p><p>The performance is part of Moving in November 6.-16.11.2025. As part of the festival, there will be an open Soup Talks discussion with García Pullés and local host on the 12th of November at noon in Caisa.</p><p>Choreography and interpretation: Lucía García Pullés <br>Sound creation: Aria Seashell Delacelle<br>Song: Mailén Pankonin<br>Costume: Anna Carraud<br>Light creation: Carolina Oliveira <br>Stage manager on tour: Marie Predour<br>Vocal coach: Daniel Wendler<br>External eye: Marcos Arriola<br>Artistic collaboration: Sophie Demeyer, Volmir Cordeiro <br>Production: Bureau Cokot - Julie Le Gall <br>Co-production: MC93 - Maison de la Culture de Seine-Saint-Denis (FR) and Riksteatern (SE) as part of Common Stories, a Creative Europe programme financed by the European Union, Charleroi Danse (BE), La Manufacture CDCN Nouvelle Aquitaine Bordeaux, La Rochelle, Théatre de Vanves (FR), Project support of DRAC Ile-de-France</p><p>Supported by: La Ménagerie de Verre (FR), Carreau du Temple (FR), Danse Dense (FR), Centre National de la Danse (FR), La Compagnie DCA à Saint-Denis, Festival Solos al Mediodía, Théâtre Solis (UR)</p><p>Mother Tongue premiered in Festival Artdanthé, Vanves in March 2025.</p>"
            },
            "name": {
                "fi": "Liikkeellä marraskuussa – Lucía García Pullés: Mother Tongue",
                "sv": "Liikkeellä marraskuussa – Lucía García Pullés: Mother Tongue",
                "en": "Moving in November – Lucía García Pullés: Mother Tongue"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66899/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}