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

{
    "meta": {
        "count": 6964,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=14&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=12&weekday=6%2C7"
    },
    "data": [
        {
            "id": "espoo_le:agpmwpuuoy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpuiu4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpujou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpukia/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpulby/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpul54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpumza/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpunva/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpuope/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpupla/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpuqem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpuq6a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpusdi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpus44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwputvu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150453,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-07T11:30:54.908155Z",
                    "last_modified_time": "2025-12-01T09:54:37.517785Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/luetaanyhdess%C3%A4.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "valokuva kädestä, muistilapusta ja suomenkielen oppikirjasta",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150453/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T11:24:39.440417Z",
            "last_modified_time": "2026-06-15T11:24:39.440434Z",
            "date_published": null,
            "start_time": "2026-09-09T07:15:00Z",
            "end_time": "2026-12-16T09:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Luetaan yhdessä",
                "sv": "Vi läser tillsammans",
                "en": "Let's Read Together"
            },
            "short_description": {
                "fi": "Tunneilla harjoitellaan puhumaan, lukemaan ja kirjoittamaan suomea. Opettajina toimivat Luetaan yhdessä-verkoston vapaaehtoiset.",
                "sv": "Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!",
                "en": "Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!"
            },
            "description": {
                "fi": "<p>Tunneilla harjoitellaan puhumaan, lukemaan ja kirjoittamaan suomea.</p><p>Opettajina toimivat Luetaan yhdessä-verkoston vapaaehtoiset.</p><p>Ryhmä kokoontuu Entressen kirjastolla keskiviikkoisin 9.9.-16.12.2026 ei  klo 10:15-11:45. Ei kuitenkaan 14.10. koululaisten syyslomalla.</p><p><br></p><p>Ryhmän vetäjänä on Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter, diskuterar olika ämnen och övar på att skriva varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp.</p><p>Gruppen träffas på Entresse biblioteket på onsdagar 9.9.-16.12.2026 kl. 10.15–11.45. Ingen undervisning den 14.10., då skoleleverna har höstlov.</p><p>Gruppen leds av frivilliga från Vi läser tillsammans -nätverket/ Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts, discuss different topics and practice writing every time. It's not necessary to register in advance, you can just show up.</p><p>The group meets at the Entresse Library on Wednesdays 9.9.-16.12.2026, from 10:15 to 11:45 a.m. There will be no meeting on October 14, on school's fall break.</p><p>The group is run by the volunteers of Let's Read Together -network/ Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Ryhmä kokoontuu avotilassa",
                "sv": "Gruppen träffas i ett öppet utrymme",
                "en": "The group meets in an open space"
            },
            "provider": {
                "fi": "Luetaan yhdessä-verkoston vapaaehtoiset",
                "sv": "Vi läser tillsammans -nätverket",
                "en": "Let's Read Together -network"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwpuuoy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpmwbt7ym",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbtx5a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbtytq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbtzaq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbtzoi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbtz4a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt2je/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt2wu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt3ea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt3rq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt36a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt4me/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt42u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt5hy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt5w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt6dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt6ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt66m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt7k4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1491146,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-03-17T09:32:13.128144Z",
                    "last_modified_time": "2025-12-01T12:24:38.014666Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a8d628c5-6b7b-4408-94ad-e4b2c753345e.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "-",
                    "alt_text": "Kuvassa sanomalehti ja käsi joka pitelee täyttä kahvikuppia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491146/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T11:14:38.200858Z",
            "last_modified_time": "2026-06-15T11:14:38.200873Z",
            "date_published": null,
            "start_time": "2026-08-20T07:00:00Z",
            "end_time": "2026-12-17T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Selkouutiskahvit",
                "sv": "Kaffe med klara nyheter",
                "en": "Plain-language news café"
            },
            "short_description": {
                "fi": "Selkouutiskahveilla kuuntelemme Yle Areenasta selkouutiset. Sen jälkeen luemme uutisen ja keskustelemme siitä yhdessä suomeksi.",
                "sv": "Under nyhetsgenomgångarna lyssnar vi på nyheterna från Yle Arena. Sedan läser vi nyheterna och diskuterar dem tillsammans på finska.",
                "en": "We are listening Plain News from Yle Areena. After that we read the news and discuss the topics together in Finnish."
            },
            "description": {
                "fi": "<p>Selkouutiskahveilla kuuntelemme Yle Areenasta selkouutiset. Sen jälkeen luemme uutisen ja keskustelemme siitä yhdessä suomeksi. Opimme näin yhdessä suomea, ja tutustumme Suomen tapoihin ja historiaan.</p><p><strong>Selkouutiskahvit järjestetään torstaisin Entressen kirjaston Kibessä klo 10.00-12.00. </strong>Selkouutiskahveja järjestää kirjasto</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Under nyhetsgenomgångarna lyssnar vi på nyheterna från Yle Arena. Sedan läser vi nyheterna och diskuterar dem tillsammans på finska. På så sätt lär vi oss finska tillsammans och bekantar oss med finska seder och historia.</p><p><strong>Kaffepauserna äger rum på torsdagar på Entresse bibliotek i Kibe från 10.00-12.00. </strong>Biblioteket anordnar kaffestunder med lättläst nyhetsinformation.</p><p>&nbsp;</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>We are listening Plain News from Yle Areena. After that we read the news and discuss the topics together in Finnish. This is how we learn together Finnish, Finnish customs and history.</p><p><strong>Plain news cafe are held on thursdays 10.00-12.00. in Kibe, Entresse Library. </strong>The library is hosting easy-to-read news sessions</p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/",
                "sv": "https://helmet.finna.fi/?lng=sv",
                "en": "https://helmet.finna.fi/?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Avotila / Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "provider": {
                "fi": "Kirjasto",
                "sv": "Biblioteket",
                "en": "Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbt7ym/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69408",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385161,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T11:13:39.165059Z",
                    "last_modified_time": "2026-06-15T11:13:39.165071Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791323.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385161/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T11:13:39.058135Z",
            "last_modified_time": "2026-06-15T11:13:39.302225Z",
            "date_published": null,
            "start_time": "2026-09-03",
            "end_time": "2026-09-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,
            "name": {
                "fi": "Festivaalitaiteilija Emilia Laatikaisen näyttely – Helsingin Sarjakuvafestivaalit",
                "sv": "Festivaalitaiteilija Emilia Laatikaisen näyttely",
                "en": "Festival Artist Emilia Laatikainen – Helsinki Comics Festival"
            },
            "short_description": {
                "fi": "Festivaalitaiteilija Laatikainen on lintuja ihaileva sarjakuvantekijä ja kuvataiteen opettaja.",
                "en": "Festival artist Laatikainen is a comics artist and visual arts teacher who admires birds."
            },
            "description": {
                "fi": "<p>Festivaalitaiteilija Laatikainen on lintuja ihaileva sarjakuvantekijä ja kuvataiteen opettaja.</p><p>Tällä hetkellä häntä innostavat lintujen lisäksi mustavalkoisuus ja aiheena häpeä. Laatikaisen omaelämäkerrallinen <i>Ei ois susta uskonu</i> voitti Sarjakuva-Finlandia-palkinnon 2024.</p><p>Helsingin 41. sarjakuvafestivaalit järjestetään viikonloppuna 19.–20.9.2026 Kulttuurikeskus Stoassa Itäkeskuksessa! Perjantaina 18.9. järjestetään lisäksi Lasten sarjisfestarit. Vuoden festivaaliteema on ”Yhdessä”, ja festivaalitaiteilijana toimii Emilia Laatikainen, joka vastaa myös tapahtuman graafisesta ilmeestä.</p>",
                "en": "<p>Festival artist Laatikainen is a comics artist and visual arts teacher who admires birds.</p><p>Currently, they are inspired by birds, black-and-white aesthetics, and the theme of shame. Laatikainen’s autobiographical work <i>Ei ois susta uskonu</i> won the Sarjakuva-Finlandia Award in 2024.</p><p>The 41st Helsinki Comics Festival will be held on the weekend of September 19–20, 2026, for the first time at Cultural Centre Stoa in Itäkeskus! On Friday, September 18th, the Kids’ Comics Fest will take place. he festival’s theme for this year is “Together,” and the festival artist is Emilia Laatikainen, who is also responsible for the visual design of the event.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/77B4BF323E2BCDCAC329960BC09C0F96/Festivaalitaiteilija_Emilia_Laatikaisen_nayttely",
                "sv": "http://www.stoa.fi/sv/evenemang/event/77B4BF323E2BCDCAC329960BC09C0F96/Festivaalitaiteilija_Emilia_Laatikaisen_nayttely",
                "en": "http://www.stoa.fi/en/events/event/77B4BF323E2BCDCAC329960BC09C0F96/Festival_Artist_Emilia_Laatikainen"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69408/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68642",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385160,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T11:13:38.609573Z",
                    "last_modified_time": "2026-06-15T11:13:38.609589Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791364.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385160/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T11:13:38.382215Z",
            "last_modified_time": "2026-06-15T11:13:38.855990Z",
            "date_published": null,
            "start_time": "2026-09-03",
            "end_time": "2026-09-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,
            "name": {
                "fi": "Ukrainalais–suomalaisen sarjakuvaprojektin näyttely – Helsingin sarjakuvafestivaalit",
                "sv": "Ukrainalais–suomalaisen sarjakuvaprojektin näyttely",
                "en": "Ukrainian-Finnish comic book project exhibition – Helsinki Comics Festival"
            },
            "short_description": {
                "fi": "Projekti tuo yhteen ukrainalaisia ja suomalaisia nykysarjakuvantekijöitä ja korostaa Ukrainan tukemisen merkitystä.",
                "en": "The project brings together contemporary Ukrainian and Finnish comics creators and emphasises the importance of support for Ukraine."
            },
            "description": {
                "fi": "<p>Projekti tuo yhteen ukrainalaisia ja suomalaisia nykysarjakuvantekijöitä ja korostaa Ukrainan tukemisen merkitystä.</p><p>Yhteistyössä ovat mukana ukrainalainen Vydavnytstvo-kustantamo, nykysarjakuvayhdistys Kutikuti ja Helsingin sarjakuvafestivaalit. Sarjakuvat julkaistaan myös Kuti-lehdessä vuoden lopulla.</p><p>Festivaalien vuoden teemana on ”Yhdessä”, mikä myös korostaa yhteistyön merkitystä vaikeina aikoina. Festivaaleilla nähdään nyt ensimmäistä kertaa ukrainalaista sarjakuvaa. Maassa on nouseva sarjakuvakulttuuri.</p><p><b>Terhi Ekebom</b> (s. 1971) on Puupäähattu-palkittu helsinkiläinen sarjakuva- ja kuvataiteilija, kuvittaja ja muraalintekijä, jonka työ sisältää usein luontoaiheita ja tunteiden kuvausta.</p><p><b>Ivanda Jansone</b> (s. 1982) on helsinkiläinen, sanattomaan kerrontaan erikoistunut sarjakuva- ja kuvataiteilija, jonka tunnetuin julkaisu on Mustavalkoinen mestariteos (2023).</p><p><b>Ivan Kypibida</b> (s. 1995) on lviviläinen kuvittaja, sarjakuvantekijä ja ja taideluennoitsija. Hänen kuvittamansa <i>Pitkän sodan lyhyt historia</i> (2025) on ukrainalaisen sarjakuvan tunnetuin kirja ja käännetty useille kielille, myös suomeksi. Muita teoksia ovat muiden muassa <i>Ukrainalaisen feminismin lyhyt historia</i> (2022) ja <i>Ukrainalaisen kirjallisuuden lyhyt historia</i> (2024, teosten nimet suomennettu tähän ukrainasta).</p><p><b>Ton Melnyk</b> (s. 1988) on Suomessa vuodesta 2022 asunut kiovalainen tekstiili- ja sarjakuvataiteilija ja aktivisti, jonka työt käsittelevät muun muassa queer-aiheita, yhteisöllisyyttä, historiaa ja sotaa. Hän työstää pitkää dokumentaarista sarjakuvateosta holodomorista isoäidin tarinan kautta.</p><p><b>Sofija Sulii</b> (s. 1995) on lviviläinen sarjakuvataiteilija, joka on julkaissut useita sarjakuvia kotimaassaan ja kansainvälisesti, muun muassa kirjan <i>Ukrainalaisen borssin lyhyt historia</i> (2023, teoksen nimi suomennettu tähän).</p><p><b>Aino Sutinen</b> (s. 1983) on helsinkiläinen sarjakuvantekijä, kuvittaja ja <i>Sarjainfo</i>-lehden päätoimittaja, joka on erikoistunut dokumentaarisiin aiheisiin.</p><p><b>Sofija Tomilenko</b> (s. 1998) on kiovalainen lastenkirjailija ja sarjakuvantekijä, jonka viimeisin teos on <i>Ukrainalaisen seksin lyhyt historia</i> (2026, teoksen nimi suomennettu tähän).</p><p><b>Julija Vus</b> (s. 1996) on lviviläinen kuvittaja, sarjakuvantekijä ja taideopettaja. Hänen kuvittamiaan sarjakuvia ovat muiden muassa <i>Pitkän sodan lyhyt historia</i> (suom. 2025), <i>Ukrainalaisen feminismin lyhyt historia</i> (2022) ja <i>Ukrainalaisen kirjallisuuden lyhyt historia</i> (2024).</p>",
                "en": "<p>The project brings together contemporary Ukrainian and Finnish comics creators and emphasises the importance of support for Ukraine.</p><p>The collaboration includes the Ukrainian publishing house Vydavnytstvo, the contemporary comics association Kutikuti, and the Helsinki Comics Festival. The comics will also be published in the Kuti magazine at the end of the year.</p><p>The festival's theme for the year is \"Together,\" which also highlights the importance of cooperation during difficult times. There is an emerging comics culture in Ukraine, and Ukrainian comics will be showcased at Helsinki Comics Festival for the first time this year.</p><p><b>Terhi Ekebom</b> (b. 1971) is a Helsinki-based comics and visual artist, illustrator, and muralist, who has been awarded the Puupäähattu prize. Her work often features themes of nature and the depiction of emotions.</p><p><b>Ivanda Jansone</b> (b. 1982) is a Helsinki-based comic and visual artist specialising in silent storytelling. Her most well-known publication is <i>Black and White Masterpiece</i> (2023).</p><p><b>Ivan Kypibida</b> (b. 1995) is an illustrator, comic creator, and art lecturer from Lviv. His illustrated book <i>A Short History of the Long War</i> (2025) is the most famous Ukrainian comic book and has been translated into several languages, including Finnish. Other works include <i>A Short History of Ukrainian Feminism</i> (2022) and <i>A Short History of Ukrainian Literature</i> (2024).</p><p><b>Ton Melnyk</b> (b. 1988) is a Kyiv-based textile and comic artist and activist living in Finland since 2022. Their works explore themes such as queer topics, community, history, and war. They are working on a long-form documentary comic about Holodomor through their grandmother’s story.</p><p><b>Sofija Sulii</b> (b. 1995) is a Lviv-based comics artist who has published several comics in her home country and internationally, including the book <i>A Short History of Ukrainian Borscht</i> (2023).</p><p><b>Aino Sutinen</b> (b. 1983) is a Helsinki-based comics creator, illustrator, and editor-in-chief of Sarjainfo magazine, who specialises in documentary topics.</p><p><b>Sofija Tomilenko</b> (b. 1998) is a Kyiv-based children's book author and comics artist. Her latest work is <i>A Short History of Ukrainian Sex</i> (2026).</p><p><b>Julija Vus</b> (b. 1996) is a Lviv-based illustrator, comics creator, and art teacher, who has illustrated comics such as <i>A Short History of the Long War</i> (Finnish edition 2025), <i>A Short History of Ukrainian Feminism</i> (2022), and <i>A Short History of Ukrainian Literature</i> (2024).</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9AAC9784DCE71EC7FA0A7C59641E12E1/Ukrainalais_suomalaisen_sarjakuvaprojektin_nayttely",
                "sv": "http://www.stoa.fi/sv/evenemang/event/9AAC9784DCE71EC7FA0A7C59641E12E1/Ukrainalais_suomalaisen_sarjakuvaprojektin_nayttely",
                "en": "http://www.stoa.fi/en/events/event/9AAC9784DCE71EC7FA0A7C59641E12E1/Ukrainian-Finnish_comic_book_project_exhibition"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68642/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpmwbumku",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbuaf4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbubam/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbub24/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbucvm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbudoq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbueja/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbufda/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbuf5a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbugvy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbuhq4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbuila/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbujea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbuj5y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbukx4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbulrq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490286,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-28T06:52:31.443870Z",
                    "last_modified_time": "2025-12-01T12:27:50.707924Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg",
                    "name": "",
                    "cropping": "280,0,1000,720",
                    "photographer_name": "",
                    "alt_text": "satumainen puutarha",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-15T11:08:19.419122Z",
            "last_modified_time": "2026-06-15T11:08:19.419138Z",
            "date_published": null,
            "start_time": "2026-09-04T14:00:00Z",
            "end_time": "2026-12-18T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ukrainalainen lasten teatterikerho ",
                "sv": "Ukrainska barnteaterklubben ",
                "en": "Ukrainian Children's Theater "
            },
            "short_description": {
                "fi": "Täällä voit kokeilla, kuvitella ja näytellä",
                "sv": "Här kan du prova, fantisera, visa och experimentera.",
                "en": " Here you can try, fantasize, show, experiment. "
            },
            "description": {
                "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Jukeboksi</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit @ gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua ja saada lisätietoa sähköpostitse tatiana.divosvit @ gmail.com ja mob. +358413179903 / vapaaehtoinen</p>",
                "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Jukeboksi</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit @ gmail.com och mob. +358413179903 / Volontär</p>",
                "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Jukeboksi</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903 / volunteer</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "provider": {
                "fi": "vapaaehtoinen",
                "sv": "Volontär",
                "en": "volunteer"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmwbumku/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpmvtzu6y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2385158,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T09:58:19.376289Z",
                    "last_modified_time": "2026-06-15T09:58:19.376304Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/13eeb0bd-2b48-4cb0-a705-070484c295e1.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Lukukoirien omistajat",
                    "alt_text": "lukukoirat Nekku, Pätkis, Lloyd, Osku",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385158/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-15T10:11:14.209524Z",
            "last_modified_time": "2026-06-15T10:11:14.209543Z",
            "date_published": null,
            "start_time": "2026-08-10T15:00:00Z",
            "end_time": "2026-12-21T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lukukoira tavattavissa",
                "sv": "Läshund finns tillgänglig",
                "en": "Reading dog available"
            },
            "short_description": {
                "fi": "Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!",
                "sv": "Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!",
                "en": "Hello reader! On Mondays in the library you can read to a reading dog!"
            },
            "description": {
                "fi": "<p>Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle klo 18-19!</p><p>Lukukoirina Kauklahden kirjastolla toimivat Nekku ja Pärkis, Lloyd sekä Osku.</p><p><br></p><p>Lukukoirien aikataulu: </p><p>(huomioithan että koirien keskinäiseen aikatauluun voi tulla muutoksia).</p><p> 10.8. Nekku &amp; Pätkis, Osku</p><p> 17.8. Osku</p><p> 24.8.&nbsp;Nekku &amp; Pätkis</p><p> 31.8.&nbsp;Nekku &amp; Pätkis</p><p>   7.9.&nbsp;Nekku &amp; Pätkis</p><p> 14.9. Lloyd</p><p> 21.9. Osku</p><p> 28.9. Nekku &amp; Pätkis</p><p> 5.10. Nekku &amp; Pätkis</p><p>12.10. Lloyd (syysloma vko)</p><p>19.10. Osku</p><p>16.10. Nekku &amp; Pätkis</p><p>  2.11. Nekku &amp; Pätkis</p><p>  9.11. Lloyd</p><p>16.11. Nekku &amp; Pätkis</p><p>23.11. Osku</p><p>30.11. Nekku &amp; Pätkis</p><p> 7.12.  Lloyd</p><p>14.12. Osku</p><p>21.12. Kauklahtiseuran elävä joulukalenteri kaikki koirat paikalla. </p><p> </p><p> </p>",
                "sv": "<p>Hej, du som övar på att läsa! På måndagar kan du läsa för en läsande hund på biblioteket kl. 18-19!</p><p>De läsande hundarna på Kauklahden bibliotek är Nekku, Pätkis, Lloyd och Osku.</p><p><br></p><p>Schema för de läsande hundarna:&nbsp;</p><p>(Observera att det kan bli ändringar i hundarnas schema).</p><p> 10.8. Nekku &amp; Pätkis, Osku</p><p> 17.8. Osku</p><p> 24.8.&nbsp;Nekku &amp; Pätkis</p><p> 31.8.&nbsp;Nekku &amp; Pätkis</p><p>   7.9.&nbsp;Nekku &amp; Pätkis</p><p> 14.9. Lloyd</p><p> 21.9. Osku</p><p> 28.9. Nekku &amp; Pätkis</p><p> 5.10. Nekku &amp; Pätkis</p><p>12.10. Lloyd (höstlovsvecka)</p><p>19.10. Osku</p><p>16.10. Nekku &amp; Pätkis</p><p>  2.11. Nekku &amp; Pätkis</p><p>  9.11. Lloyd</p><p>16.11. Nekku &amp; Pätkis</p><p>23.11. Osku</p><p>30.11. Nekku &amp; Pätkis</p><p> 7.12.  Lloyd</p><p>14.12. Osku</p><p>21.12. &nbsp;Kauklahti föreningens levande julkalender, alla hundar på plats.&nbsp;</p>",
                "en": "<p>Hello, aspiring readers! On Mondays at the library, you can read to a reading dog, time: 18-19!</p><p>The reading dogs at the Kauklahti Library are Nekku, Pätkis, Lloyd, and Osku.</p><p><br></p><p>Reading dog schedule:&nbsp;</p><p>(Please note that the dogs’ schedule is subject to change.)</p><p>&nbsp;10.8. Nekku &amp; Pätkis, Osku</p><p>&nbsp;17.8. Osku</p><p>&nbsp;24.8. Nekku &amp; Pätkis</p><p>&nbsp;31.8. Nekku &amp; Pätkis</p><p>&nbsp;&nbsp;7.9. Nekku &amp; Pätkis</p><p>&nbsp;14.9. Lloyd</p><p>&nbsp;21.9. Osku</p><p>&nbsp;28.9. Nekku &amp; Pätkis</p><p>&nbsp;5.10. Nekku &amp; Pätkis</p><p>12.10. Lloyd (fall break week)</p><p>19.10. Osku</p><p>16.10. Nekku &amp; Pätkis</p><p>&nbsp;2.11. Nekku &amp; Pätkis</p><p>&nbsp;9.11. Lloyd</p><p>16.11. Nekku &amp; Pätkis</p><p>23.11. Osku</p><p>30.11. Nekku &amp; Pätkis</p><p> &nbsp;7.12.&nbsp;Lloyd</p><p>14.12. Osku</p><p>21.12. Kauklahti Association’s live Christmas calendar—all dogs present.&nbsp;</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmvtzu6y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69394",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p21812/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385134,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T09:18:15.829770Z",
                    "last_modified_time": "2026-06-15T09:18:15.829783Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778070.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385134/?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": "2026-06-15T09:18:15.728262Z",
            "last_modified_time": "2026-06-15T09:18:15.975885Z",
            "date_published": null,
            "start_time": "2026-09-19T07:00:00Z",
            "end_time": "2026-09-19T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kohti tuntematonta -perhepäivä",
                "sv": "Kohti tuntematonta -perhepäivä",
                "en": "Kohti tuntematonta -perhepäivä"
            },
            "short_description": {
                "fi": "Lauantaina vietetään hauskaa perhepäivää Kohti tuntematonta -näyttelyssä."
            },
            "description": {
                "fi": "<p>Lauantaina vietetään hauskaa perhepäivää Kohti tuntematonta -näyttelyssä.</p><p>Kuvittaja <b>Pasi Pitkänen</b> on tavattavissa ja piirtää näyttelytilassa. Tule katsomaan, miten kuvat syntyvät!</p><p>Perheille suunnatuissa työpajoissa päästään tutustumaan kollaasitekniikkaan ja tehdään pinssejä. Satutuokiossa luetaan Pasi Pitkäsen lumoava seikkailukirja <i>Kadonneiden eläinten saari</i>. Näyttelytilaan on koottu laaja valikoima kirjoja, jotka Pitkänen on kuvittanut, ja niitä saa lainata kotiin mukaan.</p><p>Perhepäivän kollaasityöpajassa osallistujat saavat kuvitella ja luoda piirtämällä, leikkaamalla ja repimällä omia outoja otuksia ja taikavoimaisia käärmeitä. Miltä näyttää taikakäärme, jolla on sateenkaaren väriset siivet? Entä voisiko sinun omalla oudolla otuksellasi olla tuntosarvet ja kuori niin kuin etanalla?  Kollaasitekniikalla rakentuvat hassut ja kummalliset otukset voi tehdä aivan itse tai yhdessä oman aikuisen kanssa. Valmiit teokset saa kotiin mukaan.</p><p>Lapsille ja nuorille suunnattu Kohti tuntematonta -näyttely- ja tapahtumakokonaisuus on koottu Pasi Pitkäsen laajasta kuvitustuotannosta. Näyttely on avoinna 26.9.2026 asti Vuotalon galleriassa.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6538450085422469D0225E35B1A13E8D/Kohti_tuntematonta_-perhepaiva",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/6538450085422469D0225E35B1A13E8D/Kohti_tuntematonta_-perhepaiva",
                "en": "http://www.vuotalo.fi/en/events/event/6538450085422469D0225E35B1A13E8D/Kohti_tuntematonta_-perhepaiva"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69394/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69388",
            "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:348/?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/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/jarkko-toivonen-brazilian-trip-vuotalo-21780089/",
                        "sv": "https://www.lippu.fi/event/jarkko-toivonen-brazilian-trip-vuotalo-21780089/",
                        "en": "https://www.lippu.fi/event/jarkko-toivonen-brazilian-trip-vuotalo-21780089/"
                    },
                    "price": {
                        "fi": "24,80 €",
                        "sv": "24,80 €",
                        "en": "24,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385131,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T09:18:13.607255Z",
                    "last_modified_time": "2026-06-15T09:18:13.607275Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794037.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385131/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T09:18:13.497941Z",
            "last_modified_time": "2026-06-15T09:18:13.750333Z",
            "date_published": null,
            "start_time": "2026-09-12T15:00:00Z",
            "end_time": "2026-09-12T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jarkko Toivonen: Brazilian Trip",
                "sv": "Jarkko Toivonen: Brazilian Trip",
                "en": "Jarkko Toivonen: Brazilian Trip"
            },
            "short_description": {
                "fi": "Ensi vuonna 40-vuotistaiteilijajuhlaansa viettävä Bossa Nova -kitaristi Jarkko Toivonen konsertoi pitkäaikaisten soittokumppaniensa kanssa."
            },
            "description": {
                "fi": "<p>Ensi vuonna 40-vuotistaiteilijajuhlaansa viettävä Bossa Nova -kitaristi Jarkko Toivonen konsertoi pitkäaikaisten soittokumppaniensa kanssa.</p><p>Konsertissa Toivosen kanssa esiintyvät perkussionisti Mongo Aaltonen ja basisti Tuure Koski. Materiaalia kuullaan aina Toivosen ensimmäisestä albumista <i>Sambolero</i> (1987) viimeisimpään, viime vuonna ilmestyneeseen albumiin <i>View to Serenity</i> saakka. Kaikkiaan albumeita on ilmestynyt 13.</p><p>Useiden legendaaristen brasilialaistaiteilijoiden, kuten kitaristi Sebastiao Tapajosin, huilisti-laulaja Danilo Caymmin, perkussionisti Marcelo Salazarin ja laulaja Ithamara Kooraxin kanssa konsertoinut Toivonen soittaa konsertissa bossa novan ja samban lisäksi bolero-, choro- ja baiao-tyylejä.</p><p>Klubi-ilta, A-oikeudet. Tarjoiluista vastaa Café Pokkari. Ovet avataan klo 17.30. Alle 18-vuotiaat huoltajan seurassa.</p><p>Konsertin kesto: n. 2 t, sisältäen väliajan<br>Liput: 24,80 € osoitteesta lippu.fi</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C294687F545882ED1EB9B2E85FE826A7/Jarkko_Toivonen_Brazilian_Trip",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C294687F545882ED1EB9B2E85FE826A7/Jarkko_Toivonen_Brazilian_Trip",
                "en": "http://www.vuotalo.fi/en/events/event/C294687F545882ED1EB9B2E85FE826A7/Jarkko_Toivonen_Brazilian_Trip"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69388/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69363",
            "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:351/?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:51/?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:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15827/",
                        "sv": "https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15827/",
                        "en": "https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15827/"
                    },
                    "price": {
                        "fi": "42 / 17 / 12 €",
                        "sv": "42 / 17 / 12 €",
                        "en": "42 / 17 / 12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385115,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T07:13:32.903531Z",
                    "last_modified_time": "2026-06-15T07:13:32.903550Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793772.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385115/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T07:13:32.719143Z",
            "last_modified_time": "2026-06-15T08:14:09.112274Z",
            "date_published": null,
            "start_time": "2026-09-13T13:00:00Z",
            "end_time": "2026-09-13T13: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,
            "name": {
                "fi": "Agit Cirk - Kajo",
                "sv": "Agit Cirk - Kajo",
                "en": "Agit Cirk - Kajo"
            },
            "short_description": {
                "fi": "Kajo on sanaton ja visuaalisesti lumoava koko perheen sirkusteos ystävyydestä, kadotetun valon etsimisestä ja erilaisuuden kohtaamisesta.",
                "en": "Kajo is a wordless and visually enchanting circus performance for the whole family, about friendship, the search for lost light, and the beauty of being different."
            },
            "description": {
                "fi": "<p>Kajo on sanaton ja visuaalisesti lumoava koko perheen sirkusteos ystävyydestä, kadotetun valon etsimisestä ja erilaisuuden kohtaamisesta.</p><p>Kajo vie katsojat riemastuttavalle matkalle etsimään ystävyyttä ja kadotettua valoa. Sanaton, visuaalisesti kaunis ja koskettava esitys kertoo erilaisuuden kohtaamisesta. Hassunkurisen sirkustirehtöörin kaikki ystävät ovat kadonneet. Heitä etsiessä, yhdessä ujon ja salaperäisen ystävän kanssa, tapahtuu yllätyksiä ja liikutaan mielikuvituksellisissa maailmoissa. Hykerryttävä esitys sopii kaikille, jotka ovat joskus kadottaneet valonsa, ja löytäneet sen taas uudelleen.</p><p>Esiintyjät ja konsepti: Jenni Lehtinen ja Sasu Peistola<br>Dramaturgia ja liikkeen ohjaus: Jarkko Lehmus<br>Valosuunnittelu: Jere Mönkkönen<br>Äänisuunnittelu: Sami Tammela<br>Puvustus ja lavastus: Reeta Tuoresmäki<br>Taikuuden konsultointi: Robert Jägerhorn<br>Tuotanto: Agit-Cirk yhdessä Cirko – Uuden sirkuksen keskus</p><p>Kesto: n. 30 min<br>Ikäsuositus: 3+ vuotta</p><p>Sirkus- ja musiikkiyhdistys <b>Agit-Cirk</b> perustettiin 2005. Ryhmän korkeatasoisia, poikkitaiteellisia esityksiä on nähty yli 20 eri maassa. Ryhmä pyrkii viemään sirkusta uusille yleisöille, epätavallisiin paikkoihin ja tilaisuuksiin. Ryhmän perustivat Sakari Männistö, Marjo Ylikorva sekä Samuli Jokinen.</p><p>Agit-Cirk on järjestänyt  <i>Esse – esittävän taiteen kesäjuhlaa</i> vuodesta 2021 alkaen.</p><p><b>Helsinki Circus Festival</b><br>Syyskuussa 2026 ensimmäistä kertaa järjestettävä Helsinki Circus Festival on täyttä sirkuksen juhlaa. Nelipäiväisen festivaalin aikana Stoassa nähdään neljä sirkusteosta: Maannos, Aikakone, Kajo ja Häppy Hour. Esitysten tyylilajit pitävät sisällään performanssia, komiikkaa, taidesirkusta, uutta taikuutta ja lastenesityksiä. Tapahtuma esittelee suomalaisen nykysirkuksen rikkautta ja monipuolisuutta taiteenlajina.</p><p>Taiteilijalähtöisen festivaalin sydän on yhteisöllisyydessä. Tapahtuman toteuttaa suomalaisten nykysirkusryhmien ja sirkustaitelijoiden perustama Pro Sirkus ry yhdessä Cirkon – Uuden sirkuksen keskuksen, Kulttuurikeskus Stoan ja Kulttuurikeskus Caisan kanssa. Näiden esitystilojen lisäksi sirkusta nähdään Suvilahden kentälle nousevassa sirkusteltassa sekä katualueella sen ympäristössä.</p><p>Festivaalin ennakkotapahtuma järjestetään Helsinki-päivänä 12.6. Kulttuurikeskus Stoan aukiolla.</p><p>Tervetuloa Helsinki Circus Festivalille rakastumaan sirkuksen vallattomaan monimuotoisuuteen, syvälliseen leikkisyyteen ja rajoja rikkovaan yllättävyyteen!</p>",
                "en": "<p>Kajo is a wordless and visually enchanting circus performance for the whole family, about friendship, the search for lost light, and the beauty of being different.</p><p>Kajo takes the audience on an exhilarating journey in search of friendship and lost light. The wordless, visually beautiful and touching performance tells the story of encountering differences. All of the funny circus director’s friends have disappeared. While searching for them, together with a shy and mysterious friend, surprises happen and we move through imaginative worlds. The hilarious performance is suitable for anyone who has ever lost their light and found it again.</p><p>Performers and concept: Jenni Lehtinen ja Sasu Peistola<br>Dramaturgy and movement guidance: Jarkko Lehmus<br>Light design: Jere Mönkkönen<br>Sound design: Sami Tammela<br>Costume and set design: Reeta Tuoresmäki<br>Magic consultant: Robert Jägerhorn<br>Production: Agit-Cirk together with Cirko – center for new circus</p><p>Duration: 30 min. <br>Age recommendation: 3+</p><p>The circus and music association <b>Agit-Cirk</b> was founded in 2005. The group’s high-quality, cross-artistic performances have been seen in over 20 different countries. The company strives to take the circus to new audiences, unusual places and occasions. Original founders of the company are Sakari Männistö, Marjo Ylikorva and Samuli Jokinen.</p><p>Agit-Cirk has organized the Esse summer festival since 2021.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/385D81DD6FC5F88A5D042AC3184C7A3D/Agit_Cirk_-_Kajo",
                "sv": "http://www.stoa.fi/sv/evenemang/event/385D81DD6FC5F88A5D042AC3184C7A3D/Agit_Cirk_-_Kajo",
                "en": "http://www.stoa.fi/en/events/event/385D81DD6FC5F88A5D042AC3184C7A3D/Agit_Cirk_-_Kajo"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69363/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69358",
            "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:351/?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:51/?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:p22193/?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:p4354/?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://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15828/",
                        "sv": "https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15828/",
                        "en": "https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15828/"
                    },
                    "price": {
                        "fi": "42 / 17 / 12 €",
                        "sv": "42 / 17 / 12 €",
                        "en": "42 / 17 / 12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385087,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-11T11:14:00.796547Z",
                    "last_modified_time": "2026-06-11T11:14:00.796562Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793771.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385087/?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": "2026-06-11T11:14:00.673204Z",
            "last_modified_time": "2026-06-15T08:14:08.811604Z",
            "date_published": null,
            "start_time": "2026-09-12T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sirkus Kolmen Kopla: AikaKONE – Helsinki Circus Festival",
                "sv": "Sirkus Kolmen Kopla: AikaKONE – Helsinki Circus Festival",
                "en": "Sirkus Kolmen Kopla: AikaKONE – Helsinki Circus Festival"
            },
            "short_description": {
                "fi": "AikaKONE on osallistava trioakrobaattinen sirkusseikkailu, jossa aika venyy, vinksahtaa ja pyörähtää yleisön mukana uusiin ulottuvuuksiin.",
                "en": "AikaKONE is an participatory trio acrobatic circus adventure, where time stretches, twists and spins together with the audience into new dimensions."
            },
            "description": {
                "fi": "<p>AikaKONE on osallistava trioakrobaattinen sirkusseikkailu, jossa aika venyy, vinksahtaa ja pyörähtää yleisön mukana uusiin ulottuvuuksiin.</p><p>AikaKONE on trioakrobaattinen sirkusesitys, jossa aika venyy ja paukkuu, heittää kärrynpyörää – ja tekee putkiremonttia! AikaKONEESSA yleisö pääsee mukaan osallistavaan seikkailuun, jossa remontin yhteydessä esityspaikalta löytyy outoja putkia, joista seikkailun myötä (ja yleisön oivallusten avulla!) syntyy jotain, joka pistää sukat pyörimään ajan jaloissa. Erilaisten sirkustemppujen myötä paljastuu lisää mahdollisuuksia venyttää aikaa – ja pistää se vekkuloimaan vimmasti kuin hyrrä!</p><p>Esiintyminen, ideointi: Anni Pietala, Nelma Pietala, Leena Kaizer<br>Äänisuunnittelu: Joni Rajamäki</p><p>Kesto: 32 min.<br>Ikäsuositus: Ikärajaton, sopii kaikenikäisille<br>Liput: 24 / 19 / 12 €. Lippuja esityksiin ei poikkeuksellisesti myydä Stoassa. <u><a href=\"https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15828/\">Osta lippusi Cirkon verkkokaupasta</u></a>.</p><p><b>Sirkus Kolmen Koplan</b> muodostavat sirkusartistit Anni ja Nelma Pietala  ja tanssitaiteilija Leena Keizer. Triossa heidät tunnetaan nimillä NAPPI, RUSETTI ja HENKSELI. AikaKONE on Sirkus Kolmen Koplan toinen koko perheen esitys, joka sai ensi-iltansa Lahden Lasten Talvikarnevaaleilla helmikuussa 2024.</p><p><b>Helsinki Circus Festival</b><br>Syyskuussa 2026 ensimmäistä kertaa järjestettävä Helsinki Circus Festival on täyttä sirkuksen juhlaa. Nelipäiväisen festivaalin aikana Stoassa nähdään neljä sirkusteosta: Maannos, Aikakone, Kajo ja Häppy Hour. Esitysten tyylilajit pitävät sisällään performanssia, komiikkaa, taidesirkusta, uutta taikuutta ja lastenesityksiä. Tapahtuma esittelee suomalaisen nykysirkuksen rikkautta ja monipuolisuutta taiteenlajina.</p><p>Taiteilijalähtöisen festivaalin sydän on yhteisöllisyydessä. Tapahtuman toteuttaa suomalaisten nykysirkusryhmien ja sirkustaitelijoiden perustama Pro Sirkus ry yhdessä Cirkon – Uuden sirkuksen keskuksen, Kulttuurikeskus Stoan ja Kulttuurikeskus Caisan kanssa. Näiden esitystilojen lisäksi sirkusta nähdään Suvilahden kentälle nousevassa sirkusteltassa sekä katualueella sen ympäristössä.</p><p>Festivaalin ennakkotapahtuma järjestetään Helsinki-päivänä 12.6. Kulttuurikeskus Stoan aukiolla.</p><p>Tervetuloa Helsinki Circus Festivalille rakastumaan sirkuksen vallattomaan monimuotoisuuteen, syvälliseen leikkisyyteen ja rajoja rikkovaan yllättävyyteen!</p>",
                "en": "<p>AikaKONE is an participatory trio acrobatic circus adventure, where time stretches, twists and spins together with the audience into new dimensions.</p><p>AikaKONE is a trio acrobatic circus performance where time stretches and pops, throws cartwheels – and does pipe repairs! In AikaKONE, the audience gets to join in on a participatory adventure. During the renovation, strange pipes are found at the performance venue, from which, through the adventure (and with the help of the audience’s insights!) something is created that makes time’s socks spin. Various circus tricks reveal more possibilities for stretching time – and making it spin wildly like a top!</p><p>Performing, idea: Anni Pietala, Nelma Pietala, Leena Kaizer<br>Sound design: Joni Rajamäki</p><p>Duration: 32 min.<br>Age recommendation: For all agesa, no restrictions<br>Tickets: 24/19/12 euros. Contrary to usual practice, tickets to the performances are not sold at Stoa. <u><a href=\"https://liput.kaapeli.com/en/cirko/buyingflow/tickets/15828/\">Get your tickets from the Cirko webstore</u></a>.</p><p><b>Sirkus Kolmen Kopla</b> is made up of circus artists Anni and Nelma Pietala and dance artist Leena Keizer. In the trio, they are known as NAPPI, RUSETTI and HENKSELI. AikaKONE is their second family show, which premiered at the Lahti Children’s Winter Carnival in February 2024.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B81D31263177C29E44343C07835D363C/Sirkus_Kolmen_Kopla_AikaKONE_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/B81D31263177C29E44343C07835D363C/Sirkus_Kolmen_Kopla_AikaKONE_",
                "en": "http://www.stoa.fi/en/events/event/B81D31263177C29E44343C07835D363C/Sirkus_Kolmen_Kopla_AikaKONE_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69358/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69357",
            "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:351/?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:51/?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:p22193/?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:p4354/?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://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15828/",
                        "sv": "https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15828/",
                        "en": "https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15828/"
                    },
                    "price": {
                        "fi": "42 / 17 / 12 €",
                        "sv": "42 / 17 / 12 €",
                        "en": "42 / 17 / 12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385086,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-11T11:14:00.088657Z",
                    "last_modified_time": "2026-06-11T11:14:00.088672Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793770.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385086/?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": "2026-06-11T11:13:59.962918Z",
            "last_modified_time": "2026-06-15T08:14:08.499888Z",
            "date_published": null,
            "start_time": "2026-09-11T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sirkus Kolmen Kopla: AikaKONE – Helsinki Circus Festival",
                "sv": "Sirkus Kolmen Kopla: AikaKONE – Helsinki Circus Festival",
                "en": "Sirkus Kolmen Kopla: AikaKONE – Helsinki Circus Festival"
            },
            "short_description": {
                "fi": "AikaKONE on osallistava trioakrobaattinen sirkusseikkailu, jossa aika venyy, vinksahtaa ja pyörähtää yleisön mukana uusiin ulottuvuuksiin.",
                "en": "AikaKONE is an participatory trio acrobatic circus adventure, where time stretches, twists and spins together with the audience into new dimensions."
            },
            "description": {
                "fi": "<p>AikaKONE on osallistava trioakrobaattinen sirkusseikkailu, jossa aika venyy, vinksahtaa ja pyörähtää yleisön mukana uusiin ulottuvuuksiin.</p><p>AikaKONE on trioakrobaattinen sirkusesitys, jossa aika venyy ja paukkuu, heittää kärrynpyörää – ja tekee putkiremonttia! AikaKONEESSA yleisö pääsee mukaan osallistavaan seikkailuun, jossa remontin yhteydessä esityspaikalta löytyy outoja putkia, joista seikkailun myötä (ja yleisön oivallusten avulla!) syntyy jotain, joka pistää sukat pyörimään ajan jaloissa. Erilaisten sirkustemppujen myötä paljastuu lisää mahdollisuuksia venyttää aikaa – ja pistää se vekkuloimaan vimmasti kuin hyrrä!</p><p>Esiintyminen, ideointi: Anni Pietala, Nelma Pietala, Leena Kaizer<br>Äänisuunnittelu: Joni Rajamäki</p><p>Kesto: 32 min.<br>Ikäsuositus: Ikärajaton, sopii kaikenikäisille<br>Liput: 24 / 19 / 12 €. Lippuja esityksiin ei poikkeuksellisesti myydä Stoassa. <u><a href=\"https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15828/\">Osta lippusi Cirkon verkkokaupasta</u></a>.</p><p><b>Sirkus Kolmen Koplan</b> muodostavat sirkusartistit Anni ja Nelma Pietala  ja tanssitaiteilija Leena Keizer. Triossa heidät tunnetaan nimillä NAPPI, RUSETTI ja HENKSELI. AikaKONE on Sirkus Kolmen Koplan toinen koko perheen esitys, joka sai ensi-iltansa Lahden Lasten Talvikarnevaaleilla helmikuussa 2024.</p><p><b>Helsinki Circus Festival</b><br>Syyskuussa 2026 ensimmäistä kertaa järjestettävä Helsinki Circus Festival on täyttä sirkuksen juhlaa. Nelipäiväisen festivaalin aikana Stoassa nähdään neljä sirkusteosta: Maannos, Aikakone, Kajo ja Häppy Hour. Esitysten tyylilajit pitävät sisällään performanssia, komiikkaa, taidesirkusta, uutta taikuutta ja lastenesityksiä. Tapahtuma esittelee suomalaisen nykysirkuksen rikkautta ja monipuolisuutta taiteenlajina.</p><p>Taiteilijalähtöisen festivaalin sydän on yhteisöllisyydessä. Tapahtuman toteuttaa suomalaisten nykysirkusryhmien ja sirkustaitelijoiden perustama Pro Sirkus ry yhdessä Cirkon – Uuden sirkuksen keskuksen, Kulttuurikeskus Stoan ja Kulttuurikeskus Caisan kanssa. Näiden esitystilojen lisäksi sirkusta nähdään Suvilahden kentälle nousevassa sirkusteltassa sekä katualueella sen ympäristössä.</p><p>Festivaalin ennakkotapahtuma järjestetään Helsinki-päivänä 12.6. Kulttuurikeskus Stoan aukiolla.</p><p>Tervetuloa Helsinki Circus Festivalille rakastumaan sirkuksen vallattomaan monimuotoisuuteen, syvälliseen leikkisyyteen ja rajoja rikkovaan yllättävyyteen!</p>",
                "en": "<p>AikaKONE is an participatory trio acrobatic circus adventure, where time stretches, twists and spins together with the audience into new dimensions.</p><p>AikaKONE is a trio acrobatic circus performance where time stretches and pops, throws cartwheels – and does pipe repairs! In AikaKONE, the audience gets to join in on a participatory adventure. During the renovation, strange pipes are found at the performance venue, from which, through the adventure (and with the help of the audience’s insights!) something is created that makes time’s socks spin. Various circus tricks reveal more possibilities for stretching time – and making it spin wildly like a top!</p><p>Performing, idea: Anni Pietala, Nelma Pietala, Leena Kaizer<br>Sound design: Joni Rajamäki</p><p>Duration: 32 min.<br>Age recommendation: For all agesa, no restrictions<br>Tickets: 24/19/12 euros. Contrary to usual practice, tickets to the performances are not sold at Stoa. <u><a href=\"https://liput.kaapeli.com/en/cirko/buyingflow/tickets/15828/\">Get your tickets from the Cirko webstore</u></a>.</p><p><b>Sirkus Kolmen Kopla</b> is made up of circus artists Anni and Nelma Pietala and dance artist Leena Keizer. In the trio, they are known as NAPPI, RUSETTI and HENKSELI. AikaKONE is their second family show, which premiered at the Lahti Children’s Winter Carnival in February 2024.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/5D54A27F7E54AFF4B4274523C04C1525/Sirkus_Kolmen_Kopla_AikaKONE_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5D54A27F7E54AFF4B4274523C04C1525/Sirkus_Kolmen_Kopla_AikaKONE_",
                "en": "http://www.stoa.fi/en/events/event/5D54A27F7E54AFF4B4274523C04C1525/Sirkus_Kolmen_Kopla_AikaKONE_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69357/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69366",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385121,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T08:14:06.696757Z",
                    "last_modified_time": "2026-06-15T08:14:06.696776Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789067.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385121/?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": "2026-06-15T08:14:06.598163Z",
            "last_modified_time": "2026-06-15T08:14:06.841898Z",
            "date_published": null,
            "start_time": "2026-09-05T07:30:00Z",
            "end_time": "2026-09-05T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Vuotalon Lasten lauantai – Helsinki Design Week",
                "sv": "Vuotalon Lasten lauantai",
                "en": "Vuotalon Lasten lauantai"
            },
            "short_description": {
                "fi": "Helsinki Design Weekin aikana Vuotalossa pääsee tutustumaan lapsille ja nuorille suunnattuun näyttelyyn ja osallistumaan Lego-työpajaan."
            },
            "description": {
                "fi": "<p>Helsinki Design Weekin aikana Vuotalossa pääsee tutustumaan lapsille ja nuorille suunnattuun näyttelyyn ja osallistumaan Lego-työpajaan.</p><p>Lasten ja nuorten arkkitehtuurikoulu Arkin Lego-työpajassa matkustetaan junalla mielikuvituksen maailmaan! Millainen olisi mielikuvituksen maailmoihin matkaava juna, johon jokainen saisi lisätä itse rakentamansa vaunun ja liittyä seikkailuun?</p><p>Lasten ja nuorten arkkitehtuurikoulu Arkin työpajassa rakennetaan Pasi Pitkäsen <i>Kohti tuntematonta</i> -näyttelyn inspiroimana mitä ihmeellisempiä vaunuja osaksi yhteistä käärmejunaa. Työpaja sopii lapsille ja aikuisille. Rakentamaan saa tulla vaikka koko ajaksi tai viipyä hetken.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BBB2F9FAB0000F7C20EA25492A238FC2/Vuotalon_Lasten_lauantai",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/BBB2F9FAB0000F7C20EA25492A238FC2/Vuotalon_Lasten_lauantai",
                "en": "http://www.vuotalo.fi/en/events/event/BBB2F9FAB0000F7C20EA25492A238FC2/Vuotalon_Lasten_lauantai"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69366/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplxe53dy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2385113,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-12T10:25:21.501725Z",
                    "last_modified_time": "2026-06-15T07:59:23.615871Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16300efa-cd9e-47ca-94de-0a83c7665e40.jpg",
                    "name": "",
                    "cropping": "0,1084,4337,5421",
                    "photographer_name": "Ozioma Anyamele",
                    "alt_text": "kuvassa Diana Mansaray",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-12T10:36:06.865107Z",
            "last_modified_time": "2026-06-15T07:59:27.908245Z",
            "date_published": null,
            "start_time": "2026-06-27T12:00:00Z",
            "end_time": "2026-06-27T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Chatwithmissd – Paneelikeskustelu (englanniksi)",
                "en": "Chatwithmissd – Panel Discussion (in English)"
            },
            "short_description": {
                "fi": "Chatwithmissd – Paneelikeskustelu, aiheena miksi jotkut miehet kokevat itsenäiset naiset uhkaavina?",
                "en": "Chatwithmissd – Panel discussion on why some men intimidated by independent women?"
            },
            "description": {
                "fi": "Chatwithmissd – Paneelikeskustelu englanniksi<p><strong>Aihe: Miksi jotkut miehet kokevat itsenäiset naiset uhkaavina?</strong></p><p><strong>Entressen kirjastolla lauantaina 27.6.2026 klo 15-17 / Jukeboksi </strong></p><p>Chatwithmissd on alusta avoimille ja rehellisille keskusteluille ihmissuhteista, henkilökohtaisesta kasvusta, kulttuurista sekä yhteiskunnallisista aiheista, jotka vaikuttavat jokapäiväiseen elämäämme. Tavoitteemme on tuoda ihmisiä yhteen, lisätä ymmärrystä ja tarjota turvallinen tila erilaisten näkökulmien jakamiselle.</p><p>Ensimmäisessä live-paneelikeskustelussamme käsittelemme kysymystä: Miksi jotkut miehet kokevat itsenäiset naiset uhkaavina? Aihe herättää paljon keskustelua ja liittyy läheisesti parisuhteisiin, deittailuun, sukupuolirooleihin sekä nyky yhteiskunnan odotuksiin.</p><p>Paneelin aikana kuulemme erilaisia kokemuksia ja näkökulmia itsenäisyydestä, maskuliinisuudesta, itseluottamuksesta ja kumppanuudesta. Olitpa samaa mieltä, eri mieltä tai vain kiinnostunut kuulemaan lisää, keskustelu tarjoaa mahdollisuuden oppia, pohtia ja osallistua merkitykselliseen vuoropuheluun.</p><p><strong>&nbsp;Panelistit:</strong></p><p><strong>Eugene Ufoka&nbsp;</strong></p><p><strong>Afars:n puheenjohtaja</strong></p><p><strong>Emma Tamankag&nbsp;</strong></p><p><strong>Femi Samuel Apanishile</strong></p><p><strong>Joe Coker</strong></p><p><br></p><p><br></p><p><br></p>\nJuontaja: Diana Mansaray <a href=\"https://www.instagram.com/chatwithmissd/\">ChatwithmissD</a><p><br></p><p>Tervetuloa mukaan kuuntelemaan, keskustelemaan ja jakamaan ajatuksia tärkeästä aiheesta.</p>",
                "en": "Chatwithmissd – Panel discussion in English<p><strong>Theme: Why some men intimidated by independent women?</strong></p><p><strong>At the Entresse Library on Saturday, June 27, 2026, from 3:00 to 5:00 p.m. / Jukeboksi</strong></p><p>Chatwithmissd is a platform for open and honest conversations about relationships, personal growth, culture, and social issues that affect our daily lives. Our goal is to bring people together, build understanding, and provide a safe space for sharing different perspectives.</p><p>In our first live panel discussion, we’ll talk about: Why do some men see independent women as a threat? This topic sparks a lot of conversation and is closely tied to relationships, dating, gender roles, and modern society’s expectations.</p><p>During the panel, we’ll hear different experiences and perspectives on independence, masculinity, self-confidence, and partnership. Whether you agree, disagree, or are simply interested in hearing more, this discussion offers an opportunity to learn, reflect, and participate in a meaningful dialogue.</p><p><br></p><p>&nbsp;Panelists:</p><p>Eugene Ufoka&nbsp;</p><p>Chairperson of Afars</p><p>Emma Tamankag&nbsp;</p><p>Femi Samuel Apanishile</p><p>Joe Coker</p><p><br></p><p><br></p><p><br></p>\nHost: Diana Mansaray&nbsp;<a href=\"https://www.instagram.com/chatwithmissd/\"><strong>&nbsp;</strong>ChatwithmissD</a><p><br></p><p>Join us to listen, discuss, and share your thoughts on this important topic.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.instagram.com/chatwithmissd/",
                "en": "https://www.instagram.com/chatwithmissd/"
            },
            "location_extra_info": {
                "fi": "Jukeboksi"
            },
            "provider": {
                "fi": "ChatwithmissD",
                "en": "ChatwithmissD"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe53dy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:99817834-4866-f111-a826-7ced8d7667ca",
            "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:p12297/?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:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:13c42206-d16d-4bf9-8383-c51d4136d77b/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 2385118,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T07:32:35.037742Z",
                    "last_modified_time": "2026-06-15T07:32:35.037757Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/ec480b40-da1d-f111-8341-6045bddd6dee",
                    "name": "Kuvateksti",
                    "cropping": "",
                    "photographer_name": "Kuvaajan nimi",
                    "alt_text": "Kuvan Alt-teksti",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385118/?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:p12297/?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:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                }
            ],
            "created_time": "2026-06-12T10:20:55.009597Z",
            "last_modified_time": "2026-06-15T07:32:35.764619Z",
            "date_published": "2026-06-12T10:19:38Z",
            "start_time": "2026-07-01T05:00:00Z",
            "end_time": "2026-07-12T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "[TLDG] SuperEvent - Recurring Event"
            },
            "short_description": {
                "fi": "[TLDG] SuperEvent - Recurring Event"
            },
            "description": {
                "fi": "<div><p>[TLDG] SuperEvent - Recurring Event</p></div>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Tapahtumapaikan lisätiedot suomeksi"
            },
            "provider": {
                "fi": "Tapahtuman järjestäjä suomeksi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:99817834-4866-f111-a826-7ced8d7667ca/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:526c3a39-4866-f111-a826-70a8a52df8e9",
            "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:p12297/?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:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:13c42206-d16d-4bf9-8383-c51d4136d77b/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 2385117,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T07:32:30.603580Z",
                    "last_modified_time": "2026-06-15T07:32:30.603607Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/ec480b40-da1d-f111-8341-6045bddd6dee",
                    "name": "Kuvateksti",
                    "cropping": "",
                    "photographer_name": "Kuvaajan nimi",
                    "alt_text": "Kuvan Alt-teksti",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385117/?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:p12297/?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:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                }
            ],
            "created_time": "2026-06-12T10:20:50.825588Z",
            "last_modified_time": "2026-06-15T07:32:32.111161Z",
            "date_published": "2026-06-12T10:19:41Z",
            "start_time": "2026-07-01T05:00:00Z",
            "end_time": "2026-07-12T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "[TLDG] SuperEvent - Recurring Event"
            },
            "short_description": {
                "fi": "[TLDG] SuperEvent - Recurring Event"
            },
            "description": {
                "fi": "<div><p>[TLDG] SuperEvent - Recurring Event</p></div>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Tapahtumapaikan lisätiedot suomeksi"
            },
            "provider": {
                "fi": "Tapahtuman järjestäjä suomeksi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:526c3a39-4866-f111-a826-70a8a52df8e9/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:13c42206-d16d-4bf9-8383-c51d4136d77b",
            "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:p12297/?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:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:526c3a39-4866-f111-a826-70a8a52df8e9/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:99817834-4866-f111-a826-7ced8d7667ca/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2385116,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T07:31:44.435436Z",
                    "last_modified_time": "2026-06-15T07:31:44.435453Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/ec480b40-da1d-f111-8341-6045bddd6dee",
                    "name": "Kuvateksti",
                    "cropping": "",
                    "photographer_name": "Kuvaajan nimi",
                    "alt_text": "Kuvan Alt-teksti",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385116/?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:p12297/?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:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                }
            ],
            "created_time": "2026-06-12T10:20:02.621756Z",
            "last_modified_time": "2026-06-15T07:31:46.782051Z",
            "date_published": "2026-06-12T10:19:27Z",
            "start_time": "2026-07-01T05:00:00Z",
            "end_time": "2026-07-12T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "[TLDG] SuperEvent - Recurring Event"
            },
            "short_description": {
                "fi": "[TLDG] SuperEvent - Recurring Event"
            },
            "description": {
                "fi": "<div><p>[TLDG] SuperEvent - Recurring Event</p></div>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Tapahtumapaikan lisätiedot suomeksi"
            },
            "provider": {
                "fi": "Tapahtuman järjestäjä suomeksi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:13c42206-d16d-4bf9-8383-c51d4136d77b/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpeldu7ua",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu76q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2201344,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-20T08:44:11.905741Z",
                    "last_modified_time": "2026-05-20T08:45:03.592594Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/01a20785-6611-4da4-8bd7-1a9b7026c66f.jpg",
                    "name": "Lippulaivan kirjastossa hauskaa tekemistä!",
                    "cropping": "120,0,545,424",
                    "photographer_name": "",
                    "alt_text": "Lapset hyppäävät ilmaan",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201344/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-20T13:03:09.794741Z",
            "last_modified_time": "2026-06-14T12:03:54.395310Z",
            "date_published": null,
            "start_time": "2026-08-14T14:30:00Z",
            "end_time": "2026-08-14T21:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lippulaivan kirjaston lasten perjantaileffa",
                "sv": "Lippulaivabibliotekets fredagsfilm för barn",
                "en": "Lippulaiva library's movie screening for children"
            },
            "short_description": {
                "fi": "Kirjaston Salongissa järjestetään perjantaisin klo 17:30 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!",
                "sv": "På fredagar kl. 17.30 i bibliotekets Salonki är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!",
                "en": "On Fridays at 17:30 in the library's Salonki, there is an open cinema screening for children and families. Bring your own drinks and snacks!"
            },
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Lippulaivan kirjaston Salongissa järjestetään joka perjantai klo 17:30 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä äänestämällä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Usein lapset valitsevat K7 elokuvan. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p>",
                "sv": "<p>Välkommen att spendera fredagen med en film tillsammans! Varje fredag ​​klockan 17:30 anordnas en öppen filmvisning för barn och familjer i Lippulaiva biblioteks Salonki. Filmerna väljs ut tillsammans genom att man röstar på barnens önskemål på biblioteket.</p><p>Filmerna är alla klassade S eller K7. Barn väljer ofta en K7-film. Presentationsspråket är finska. Undertexter väljs efter barnens önskemål.</p>",
                "en": "<p>Welcome to spend Friday evening with a movie together! Every Friday at 17:30, an open film screening is organized for children and families in Lippulaiva library's Salonki. The films are chosen together by voting based on the movies that the children has picked in the library.</p><p>The movies are all rated S or K7. Children often choose a K7 movie. The presentation language is Finnish. Subtitles are chosen according to the wishes of the children.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu7ua/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpeldu7km",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu76q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2201344,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-20T08:44:11.905741Z",
                    "last_modified_time": "2026-05-20T08:45:03.592594Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/01a20785-6611-4da4-8bd7-1a9b7026c66f.jpg",
                    "name": "Lippulaivan kirjastossa hauskaa tekemistä!",
                    "cropping": "120,0,545,424",
                    "photographer_name": "",
                    "alt_text": "Lapset hyppäävät ilmaan",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201344/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-20T13:03:09.662953Z",
            "last_modified_time": "2026-06-14T12:03:54.367676Z",
            "date_published": null,
            "start_time": "2026-08-07T14:30:00Z",
            "end_time": "2026-08-07T21:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lippulaivan kirjaston lasten perjantaileffa",
                "sv": "Lippulaivabibliotekets fredagsfilm för barn",
                "en": "Lippulaiva library's movie screening for children"
            },
            "short_description": {
                "fi": "Kirjaston Salongissa järjestetään perjantaisin klo 17:30 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!",
                "sv": "På fredagar kl. 17.30 i bibliotekets Salonki är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!",
                "en": "On Fridays at 17:30 in the library's Salonki, there is an open cinema screening for children and families. Bring your own drinks and snacks!"
            },
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Lippulaivan kirjaston Salongissa järjestetään joka perjantai klo 17:30 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä äänestämällä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Usein lapset valitsevat K7 elokuvan. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p>",
                "sv": "<p>Välkommen att spendera fredagen med en film tillsammans! Varje fredag ​​klockan 17:30 anordnas en öppen filmvisning för barn och familjer i Lippulaiva biblioteks Salonki. Filmerna väljs ut tillsammans genom att man röstar på barnens önskemål på biblioteket.</p><p>Filmerna är alla klassade S eller K7. Barn väljer ofta en K7-film. Presentationsspråket är finska. Undertexter väljs efter barnens önskemål.</p>",
                "en": "<p>Welcome to spend Friday evening with a movie together! Every Friday at 17:30, an open film screening is organized for children and families in Lippulaiva library's Salonki. The films are chosen together by voting based on the movies that the children has picked in the library.</p><p>The movies are all rated S or K7. Children often choose a K7 movie. The presentation language is Finnish. Subtitles are chosen according to the wishes of the children.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu7km/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpeldu7bm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu76q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2201344,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-20T08:44:11.905741Z",
                    "last_modified_time": "2026-05-20T08:45:03.592594Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/01a20785-6611-4da4-8bd7-1a9b7026c66f.jpg",
                    "name": "Lippulaivan kirjastossa hauskaa tekemistä!",
                    "cropping": "120,0,545,424",
                    "photographer_name": "",
                    "alt_text": "Lapset hyppäävät ilmaan",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201344/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-20T13:03:09.531517Z",
            "last_modified_time": "2026-06-14T12:03:54.337887Z",
            "date_published": null,
            "start_time": "2026-07-31T14:30:00Z",
            "end_time": "2026-07-31T21:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lippulaivan kirjaston lasten perjantaileffa",
                "sv": "Lippulaivabibliotekets fredagsfilm för barn",
                "en": "Lippulaiva library's movie screening for children"
            },
            "short_description": {
                "fi": "Kirjaston Salongissa järjestetään perjantaisin klo 17:30 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!",
                "sv": "På fredagar kl. 17.30 i bibliotekets Salonki är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!",
                "en": "On Fridays at 17:30 in the library's Salonki, there is an open cinema screening for children and families. Bring your own drinks and snacks!"
            },
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Lippulaivan kirjaston Salongissa järjestetään joka perjantai klo 17:30 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä äänestämällä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Usein lapset valitsevat K7 elokuvan. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p>",
                "sv": "<p>Välkommen att spendera fredagen med en film tillsammans! Varje fredag ​​klockan 17:30 anordnas en öppen filmvisning för barn och familjer i Lippulaiva biblioteks Salonki. Filmerna väljs ut tillsammans genom att man röstar på barnens önskemål på biblioteket.</p><p>Filmerna är alla klassade S eller K7. Barn väljer ofta en K7-film. Presentationsspråket är finska. Undertexter väljs efter barnens önskemål.</p>",
                "en": "<p>Welcome to spend Friday evening with a movie together! Every Friday at 17:30, an open film screening is organized for children and families in Lippulaiva library's Salonki. The films are chosen together by voting based on the movies that the children has picked in the library.</p><p>The movies are all rated S or K7. Children often choose a K7 movie. The presentation language is Finnish. Subtitles are chosen according to the wishes of the children.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu7bm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpeldu6xm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu76q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2201344,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-20T08:44:11.905741Z",
                    "last_modified_time": "2026-05-20T08:45:03.592594Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/01a20785-6611-4da4-8bd7-1a9b7026c66f.jpg",
                    "name": "Lippulaivan kirjastossa hauskaa tekemistä!",
                    "cropping": "120,0,545,424",
                    "photographer_name": "",
                    "alt_text": "Lapset hyppäävät ilmaan",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201344/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-20T13:03:09.400219Z",
            "last_modified_time": "2026-06-14T12:03:54.308947Z",
            "date_published": null,
            "start_time": "2026-07-24T14:30:00Z",
            "end_time": "2026-07-24T21:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lippulaivan kirjaston lasten perjantaileffa",
                "sv": "Lippulaivabibliotekets fredagsfilm för barn",
                "en": "Lippulaiva library's movie screening for children"
            },
            "short_description": {
                "fi": "Kirjaston Salongissa järjestetään perjantaisin klo 17:30 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!",
                "sv": "På fredagar kl. 17.30 i bibliotekets Salonki är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!",
                "en": "On Fridays at 17:30 in the library's Salonki, there is an open cinema screening for children and families. Bring your own drinks and snacks!"
            },
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Lippulaivan kirjaston Salongissa järjestetään joka perjantai klo 17:30 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä äänestämällä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Usein lapset valitsevat K7 elokuvan. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p>",
                "sv": "<p>Välkommen att spendera fredagen med en film tillsammans! Varje fredag ​​klockan 17:30 anordnas en öppen filmvisning för barn och familjer i Lippulaiva biblioteks Salonki. Filmerna väljs ut tillsammans genom att man röstar på barnens önskemål på biblioteket.</p><p>Filmerna är alla klassade S eller K7. Barn väljer ofta en K7-film. Presentationsspråket är finska. Undertexter väljs efter barnens önskemål.</p>",
                "en": "<p>Welcome to spend Friday evening with a movie together! Every Friday at 17:30, an open film screening is organized for children and families in Lippulaiva library's Salonki. The films are chosen together by voting based on the movies that the children has picked in the library.</p><p>The movies are all rated S or K7. Children often choose a K7 movie. The presentation language is Finnish. Subtitles are chosen according to the wishes of the children.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu6xm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}