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&hide_recurring_children=true&page=193
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 21735,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=194",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=192"
    },
    "data": [
        {
            "id": "espoo_le:agmk23bmxy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23blpe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bmcu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490245,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T11:37:19.542981Z",
                    "last_modified_time": "2025-03-17T11:37:19.543003Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/bdb02369-37a7-4f2a-8066-d6a0186343a9.png",
                    "name": "",
                    "cropping": "132,0,653,522",
                    "photographer_name": "",
                    "alt_text": "Kuvassa popcornia ja klaffi.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490245/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T12:04:15.598842Z",
            "last_modified_time": "2025-04-28T10:41:45.698543Z",
            "date_published": null,
            "start_time": "2025-03-28T09:00:00Z",
            "end_time": "2025-06-06T10: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,
            "short_description": {
                "fi": "Aikuisille suunnatussa leffahetkessä katsotaan ennakkoon valittu elokuva vaihtelevista genreistä.",
                "sv": "Detta är ett tillfälle för vuxna att se en på förhand utvald film från olika genrer.",
                "en": "Aimed at adults, this is a time to watch a pre-selected film from a variety of genres."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa Kino Lippulaivaan! Muutaman kerran kuukaudessa Lippulaivan kirjaston Salonki muotoutuu leffateatteriksi.</p><p>Elokuvahetki on tarkoitettu aikuisille. Elokuvien ikärajat on merkitty jokaisen elokuvan nimen perään.</p><p>Elokuvat:</p><p>28.3 Neiti Aika (K7, dokumentti)</p><p>11.4. Häivähdys purppuraa (K12, draama, musikaali)</p><p>25.4. Past lives (S, draama, romanssi)</p><p>16.5 Harold Fryn toiveikas taival (K-12, draama)</p><p>23.5 Juoksuhaudantie (K-12, huumori)</p><p>6.6 Mamma Mia! Here we go again (S, musikaali)</p><p>Ilmoitamme elokuvat noin kuukautta ennen.</p>",
                "sv": "<p>Välkommen till Kino Lippulaiva! Några gånger i månaden förvandlas salongen i Lippulaiva bibliotek till en biograf.&nbsp;</p><p><br></p><p>Filmkvällarna är endast för vuxna. Åldersgränsen för varje film anges efter titeln.&nbsp;</p><p><br></p><p>Filmerna:</p><p>28.3 Neiti Aika (K7, dokumentti)</p><p>11.4. Häivähdys purppuraa (K12, draama, musikaali)</p><p>25.4. Past lives (S, draama, romanssi)</p><p>16.5 Harold Fryn toiveikas taival (K-12, draama)</p><p>23.5 Juoksuhaudantie (K-12, huumori)</p><p>6.6 Mamma Mia! Here we go again (S, musikaali)</p><p>Vi annonserar filmerna ungefär en månad i förväg.&nbsp;</p>",
                "en": "<p>Welcome to Kino Lippulaiva! A few times a month, the Salonki in the Lippulaiva Library is transformed into a cinema.&nbsp;</p><p><br></p><p>Movie nights are for adults only. The age limit for each film is indicated after the title.&nbsp;</p><p><br></p><p>Films:</p><p>28.3 Neiti Aika (K7, dokumentti)</p><p>11.4. Häivähdys purppuraa (K12, draama, musikaali)</p><p>25.4. Past lives (S, draama, romanssi)</p><p>16.5 Harold Fryn toiveikas taival (K-12, draama)</p><p>23.5 Juoksuhaudantie (K-12, huumori)</p><p>6.6 Mamma Mia! Here we go again (S, musikaali)</p><p>We announce the films about a month in advance.&nbsp;</p>"
            },
            "name": {
                "fi": "Aikuisten päiväleffa",
                "sv": "Film för vuxna på dagtid",
                "en": "Daytime movie for adults"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bmxy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23bpti",
            "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:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                },
                {
                    "@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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bnna/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23boaq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23borm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bpci/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-04-16T12:02:11.428964Z",
            "last_modified_time": "2025-04-28T10:09:12.898965Z",
            "date_published": null,
            "start_time": "2025-06-02T14:00:00Z",
            "end_time": "2025-06-23T15: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,
            "short_description": {
                "fi": "Sateenkaarisatuhetki klo 17-18.",
                "sv": "Pride sagostund kl. 17-18.",
                "en": "\nPride Story Hour at 17-18 o'clock."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Pride-kuukauden kunniaksi Entressen kirjastossa järjestetään neljä sateenkaarisatuhetkeä maanantaisin 2.6., 9.6., 16.6. ja 23.6. lastenosastolla klo 17-18.</p><p>Espoon kaupunki on virallinen Working with Pride -kumppani, joka edistää yhdenvertaisuutta ja tasa-arvoa Helsinki Priden kanssa.</p>",
                "sv": "<p>För Pride månaden i Entresse Bibliotek har fyra pride sagostund på mondag 2.6., 9.6., 16.6. och 23.6. i barnavdelningen kl. 17-18. På finska.</p><p>Esbo stad är en officiell Working with Pride -partner som främjar jämlikhet med Helsinki Pride.</p>",
                "en": "<p>For Pride month, Entresse library will host four pride story hours on mondays 2.6., 9.6., 16.6. and 23.6. in the children's section from 5pm to 6pm. Story hour is in Finnish.</p><p>The City of Espoo is an official Working with Pride -partner, promoting equality and equity with Helsinki Pride.</p>"
            },
            "name": {
                "fi": "Pride Sateenkaarisatuhetki",
                "sv": "Pride sagostund",
                "en": "Pride Story Hour"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lastensasto",
                "sv": "Barnavdelningen",
                "en": "Children's section"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bpti/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65918",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": {
                        "fi": "17 €",
                        "sv": "17 €",
                        "en": "17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 634977,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-28T09:13:07.540951Z",
                    "last_modified_time": "2025-04-28T09:13:07.540988Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768403.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/634977/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-28T09:13:07.466086Z",
            "last_modified_time": "2025-04-28T09:13:07.635422Z",
            "date_published": null,
            "start_time": "2025-05-17T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Balettikoulun taiteen perusopetuksen oppilaat tanssivat perinteisen kevätnäytöksensä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A7E01F7F1B8704A5DD0C30F4F0EFF77D/Aurinkokuningas_ja_kristallipallo",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A7E01F7F1B8704A5DD0C30F4F0EFF77D/Aurinkokuningas_ja_kristallipallo",
                "en": "http://www.malmitalo.fi/en/events/event/A7E01F7F1B8704A5DD0C30F4F0EFF77D/Aurinkokuningas_ja_kristallipallo"
            },
            "description": {
                "fi": "<p>Balettikoulun taiteen perusopetuksen oppilaat tanssivat perinteisen kevätnäytöksensä.</p><p>Aurinkokuningas ja kristallipallo tanssitaan Malmitalossa 17.5.2025 klo 15.<br> <br>Liput 17 € / kpl myynnissä Balettikoulussa ja tuntia ennen ovelta.</p><p>Näytöksessä suoritetaan myös laajan oppimäärän tutkinto tanssien.<br>Tervetuloa!</p><p>Tiedustelut 040 7367 865</p>"
            },
            "name": {
                "fi": "Aurinkokuningas ja kristallipallo – Balettikoulu Pirjo Kuhan kevätnäytös",
                "sv": "Aurinkokuningas ja kristallipallo",
                "en": "Aurinkokuningas ja kristallipallo"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Balettikoulu Pirjo Kuha",
                "sv": "Balettikoulu Pirjo Kuha",
                "en": "Balettikoulu Pirjo Kuha"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65918/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:aaf031ab-e015-4995-b188-37a8cdca292a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/591763a7-3502-ef11-9f89-000d3adbeb68?readableEventId=TLDG_-_12022025_-_DIGIAINC-1923142955119895"
                    },
                    "description": null,
                    "price": {
                        "fi": "12"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 634660,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-28T07:55:37.692784Z",
                    "last_modified_time": "2025-04-28T07:55:37.692803Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/9bb9c043-8dfc-ee11-a1ff-000d3ab363c5",
                    "name": "Kuvan kuvateksti",
                    "cropping": "",
                    "photographer_name": "Kuvaaja",
                    "alt_text": "Kuvan ALT-Teksti",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/634660/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2025-04-25T06:57:00.177194Z",
            "last_modified_time": "2025-04-28T07:55:38.535502Z",
            "date_published": "2025-02-12T09:48:53Z",
            "start_time": "2025-12-31T06:00:00Z",
            "end_time": "2025-12-31T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 12,
            "audience_max_age": 55,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 500,
            "minimum_attendee_capacity": 200,
            "enrolment_start_time": "2025-02-12T08:00:00+02:00",
            "enrolment_end_time": "2025-12-29T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "TLDG - 25.4.2025 - Maximum number of participants"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>TLDG - 25.4.2025 - Maximum number of participants<br><br>Strategiasta nousseen muutostarpeen vuoksi LE-välilehdellä halutaan asettaa pakolliseksi (punainen tähti) yksi uusi siellä jo käytössä oleva tietokenttä.</p><p>\"Heips, elinkeino-osastolta on haluttu, perustuen kaupunkistrategiaan, että tapahtumista saataisiin tapahtuman kokoon liittyvää tietoa, jolloin max. osallistujamäärä asetettiin pakolliseksi. Siihen voidaan antaa myös arvio, jos ei todellinen osallistujamäärä ole tiedossa. Siispä teidän pitäisi myös laittaa tuo pakolliseksi. Vähimmäisosallistujamäärä ei ole pakollinen\"&nbsp;</p></div>"
            },
            "name": {
                "fi": "TLDG - 25.4.2025 - Maximum number of participants"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "DIGIA"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aaf031ab-e015-4995-b188-37a8cdca292a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23brxq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bqeu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bq5y/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-04-28T07:43:51.109601Z",
            "last_modified_time": "2025-04-28T07:43:51.109619Z",
            "date_published": null,
            "start_time": "2025-05-02T14:00:00Z",
            "end_time": "2025-05-30T15: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,
            "short_description": {
                "fi": "Täällä voit kokeilla, kuvitella ja näyttää.",
                "sv": "Här kan du prova, fantisera, visa och experimentera.",
                "en": " Here you can try, fantasize, show, experiment. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>",
                "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>",
                "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>"
            },
            "name": {
                "fi": "Ukrainalainen lasten teatterikerho Naamiot",
                "sv": "Ukrainska barnteaterklubben Masker",
                "en": "Ukrainian Children's Theater Masks"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23brxq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65759",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 613831,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-25T14:13:23.675065Z",
                    "last_modified_time": "2025-04-25T14:13:23.675082Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767293.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613831/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-04-25T14:13:23.618814Z",
            "last_modified_time": "2025-04-25T14:13:23.763453Z",
            "date_published": null,
            "start_time": "2025-06-24T07:00:00Z",
            "end_time": "2025-06-25T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule juhlistamaan Pride-viikkoa ja tekemään itsellesi oma tuulessa pyörivä värikäs hyrrä. Työpaja avoinna 24.–25.6. klo 10–13 ja 14–17.",
                "sv": "Kom och fira Pride-veckan och gör din egen färgglada snurra som snurrar i vinden. Nonstop-verkstaden är öppen 24-25 juni kl. 10-13 och 14-17.",
                "en": "Come celebrate Pride Week and make your own colorful spinner that twirls in the wind. The nonstop workshop is open June 24-25 from 10 AM to 1 PM and 2 PM to 5 PM."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9F025B15E521AEE62B2405BC50F03FD1/Varien_lumoissa_hyrrat_pyorimaan_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9F025B15E521AEE62B2405BC50F03FD1/Fargernas_fortrollning_Hyrrorna_snurrar_",
                "en": "http://www.annantalo.fi/en/events/event/9F025B15E521AEE62B2405BC50F03FD1/Enchantment_of_colors_Let_the_spinners_spin_"
            },
            "description": {
                "fi": "<p>Tule juhlistamaan Pride-viikkoa ja tekemään itsellesi oma tuulessa pyörivä värikäs hyrrä. Työpaja avoinna 24.–25.6. klo 10–13 ja 14–17.</p><p>Lumoudu abstraktista maalaustaiteesta - millaiset muodot tai väriyhdistelmät saavat silmäsi tuikkimaan innosta? Oletko kenties kulmikas, vai viehättävätkö kaarevat muodot sinua enemmän? Rakenna ja maalaa värihyrrä ja tuuleta sillä Pride-viikon ilosanomaa!</p><p>Nonstop-työpaja on avoinna Annantalon 2. kerroksen käytävällä 24.–25.6. klo 10–13 ja 14–17.</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Kom och fira Pride-veckan och gör din egen färgglada snurra som snurrar i vinden. Nonstop-verkstaden är öppen 24-25 juni kl. 10-13 och 14-17.</p><p>Förtrollas av abstrakt konst – vilka former eller färgkombinationer får dina ögon att glittra av glädje? Är du kanske kantig, eller fascineras du mer av kurviga former? Bygg och måla en färgsnurra och sprid Pride-veckans glädjebudskap med den!</p><p>Nonstop-verkstaden är öppen i korridoren på andra våningen i Annantalo den 24-25 juni kl. 10-13 och 14-17.</p>",
                "en": "<p>Come celebrate Pride Week and make your own colorful spinner that twirls in the wind. The nonstop workshop is open June 24-25 from 10 AM to 1 PM and 2 PM to 5 PM.</p><p>Be enchanted by abstract art – what shapes or color combinations make your eyes sparkle with excitement? Are you perhaps angular, or do curvy shapes appeal to you more? Build and paint a color spinner and spread the joy of Pride Week with it!</p><p>The nonstop workshop is open in the corridor on the second floor of Annantalo on June 24-25 from 10 AM to 1 PM and 2 PM to 5 PM.</p>"
            },
            "name": {
                "fi": "Värien lumoissa – hyrrät pyörimään!",
                "sv": "Färgernas förtrollning: Hyrrorna snurrar!",
                "en": "Enchantment of colors: Let the spinners spin!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65759/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23bthm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p4934/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bsve/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-25T10:07:15.384123Z",
            "last_modified_time": "2025-04-25T10:09:14.497086Z",
            "date_published": null,
            "start_time": "2025-05-08T13:00:00Z",
            "end_time": "2025-05-22T14: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,
            "short_description": {
                "fi": "Tervetuloa opastetulle museomatkalle etänä, mutta yhteen kokoontuen kirjastossa",
                "sv": "Välkommen på en guidad museitur – på distans, men tillsammans på biblioteket",
                "en": "Welcome to a guided museum tour – remotely, but together at the library"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa kulttuurin pariin toukokuisin torstaisin.</p><p>Kokoonnumme yhteen ison screenin äärelle ja saamme virtuaalisen etäopastuksen aiheisiin. Kirjastolta on paikalla henkilökuntaa, jotka hoitavat yhteyden museokierrokseen ja hän toimii myös kysymysten esittäjänä oppaalle. Oppaalle voi jättää kysymyksiä chatin välityksellä.</p><p><br></p><p>8.5. Kansallispyhäkkö ja sen salaisuudet - matka Turun Tuomiokirkkoon</p><ul><li>Paikka - Lava</li><li>Kello 16-17</li><li>Opastus ruotsinkielellä</li></ul><p>15.5. Kylmän sodan salaiset suojat - matka bunkkeri irmaan.</p><ul><li>Paikka - Lava</li><li>Kello 16-17</li><li>Opastus suomenkielellä</li></ul><p>22.5. Viipuri - Suomalaisen historian kerrostumat</p><ul><li>Paikka - Lava</li><li>Kello 16-17</li><li>Opastus suomenkielellä</li></ul><p>Tervetuloa nauttimaan kulttuurista kirjastoon!</p>",
                "sv": "<p>Välkommen att ta del av kultur på torsdagar i maj!</p><p>Vi samlas tillsammans framför en stor skärm och får en virtuell guidad tur i olika ämnen på finska. Personal från biblioteket är på plats för att sköta kontakten med museiguiden och för att förmedla frågor. Du kan också ställa frågor till guiden via chatten.</p><p>8.5. Nationalhelgedomen och dess hemligheter – en resa till Åbo domkyrka</p><p>Plats: Scen</p><p>Tid: kl. 16–17</p><p>Guidning på svenska</p><p>15.5. Det kalla krigets hemliga skyddsrum – en resa till bunkern Irma</p><p>Plats: Scen</p><p>Tid: kl. 16–17</p><p>Guidning på finska</p><p>22.5. Viborg – lager av finsk historia</p><p>Plats: Scen</p><p>Tid: kl. 16–17</p><p>Guidning på finska</p><p>Välkommen att njuta av kultur på biblioteket!</p>",
                "en": "<p>Welcome to explore culture on Thursdays in May!</p><p>We gather together in front of a big screen to enjoy virtual guided tours on various topics in Finnish. Library staff will be present to manage the connection to the museum tour and relay your questions to the guide. You can also ask questions via the chat.</p><p>May 8: The National Shrine and Its Secrets – a journey to Turku Cathedral</p><p>Location: Stage</p><p>Time: 4–5 PM</p><p>Guided tour in Swedish</p><p>May 15: Secret Shelters of the Cold War – a journey to the Irma Bunker</p><p>Location: Stage</p><p>Time: 4–5 PM</p><p>Guided tour in Finnish</p><p>May 22: Vyborg – Layers of Finnish History</p><p>Location: Stage</p><p>Time: 4–5 PM</p><p>Guided tour in Finnish</p><p>Welcome to enjoy culture at the library!</p>"
            },
            "name": {
                "fi": "Lähde mukaan virtuaalimatkalle - koe kulttuuria kirjastossa",
                "sv": "Följ med på en virtuell resa – upplev kultur på biblioteket ",
                "en": "Join a virtual journey – experience culture at the library"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": {
                "fi": "vreal",
                "sv": "vreal",
                "en": "vreal"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bthm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66090",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 611918,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-25T08:13:22.926767Z",
                    "last_modified_time": "2025-04-25T08:13:22.926783Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770609.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/611918/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-25T08:13:22.866957Z",
            "last_modified_time": "2025-04-25T08:13:23.003356Z",
            "date_published": null,
            "start_time": "2025-05-21T13:00:00Z",
            "end_time": "2025-05-21T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Nämä työpajat ovat nuorten suunnittelemia ja järjestämiä. Ne ovat kaikille avoimia ja ilmaisia. Työpajat pidetään Vuotalon aulassa. Tervetuloa!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/95B13FAD07882EFCD5AB5AA822FD2273/Nuorten_suunnittelema_iltapaiva_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/95B13FAD07882EFCD5AB5AA822FD2273/Nuorten_suunnittelema_iltapaiva_",
                "en": "http://www.vuotalo.fi/en/events/event/95B13FAD07882EFCD5AB5AA822FD2273/Nuorten_suunnittelema_iltapaiva_"
            },
            "description": {
                "fi": "<p>Nämä työpajat ovat nuorten suunnittelemia ja järjestämiä. Ne ovat kaikille avoimia ja ilmaisia. Työpajat pidetään Vuotalon aulassa. Tervetuloa!</p><p><b>Kevään työpajojen ohjelma:</b></p><p>ma 28.4. klo 16–18 käsikoru/kynsilakka-iltapäivä<br>ma 19.5. klo 16–18 arvaa laatikon sisällä olevien tavaroiden järjestys ja voita palkinto<br>ke 21.5. klo 16–18 kangaskassien maalaustyöpaja</p><p>Iltapäivät toteutetaan yhteistyössä Vuosaaren nuorisotyöyksikön kanssa. Paikalla on nuoriso-ohjaaja.</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Nuorten suunnittelema iltapäivä – Mukavaa tekemistä kaikenikäisille Vuotalon aulassa",
                "sv": "Nuorten suunnittelema iltapäivä",
                "en": "Nuorten suunnittelema iltapäivä"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66090/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66089",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 611917,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-25T08:13:22.389217Z",
                    "last_modified_time": "2025-04-25T08:13:22.389232Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770608.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/611917/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-25T08:13:22.337219Z",
            "last_modified_time": "2025-04-25T08:13:22.466522Z",
            "date_published": null,
            "start_time": "2025-05-19T13:00:00Z",
            "end_time": "2025-05-19T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Nämä työpajat ovat nuorten suunnittelemia ja järjestämiä. Ne ovat kaikille avoimia ja ilmaisia. Työpajat pidetään Vuotalon aulassa. Tervetuloa!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3B703F2740B94B22240FBD0584418D7E/Nuorten_suunnittelema_iltapaiva_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/3B703F2740B94B22240FBD0584418D7E/Nuorten_suunnittelema_iltapaiva_",
                "en": "http://www.vuotalo.fi/en/events/event/3B703F2740B94B22240FBD0584418D7E/Nuorten_suunnittelema_iltapaiva_"
            },
            "description": {
                "fi": "<p>Nämä työpajat ovat nuorten suunnittelemia ja järjestämiä. Ne ovat kaikille avoimia ja ilmaisia. Työpajat pidetään Vuotalon aulassa. Tervetuloa!</p><p><b>Kevään työpajojen ohjelma:</b></p><p>ma 28.4. klo 16–18 käsikoru/kynsilakka-iltapäivä<br>ma 19.5. klo 16–18 arvaa laatikon sisällä olevien tavaroiden järjestys ja voita palkinto<br>ke 21.5. klo 16–18 kangaskassien maalaustyöpaja</p><p>Iltapäivät toteutetaan yhteistyössä Vuosaaren nuorisotyöyksikön kanssa. Paikalla on nuoriso-ohjaaja.</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Nuorten suunnittelema iltapäivä – Mukavaa tekemistä kaikenikäisille Vuotalon aulassa",
                "sv": "Nuorten suunnittelema iltapäivä",
                "en": "Nuorten suunnittelema iltapäivä"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66089/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66088",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 611916,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-25T08:13:18.791754Z",
                    "last_modified_time": "2025-04-25T08:13:18.791771Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768353.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/611916/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-25T08:13:18.713904Z",
            "last_modified_time": "2025-04-25T08:13:18.888600Z",
            "date_published": null,
            "start_time": "2025-04-28T13:00:00Z",
            "end_time": "2025-04-28T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Nämä työpajat ovat nuorten suunnittelemia ja järjestämiä. Ne ovat kaikille avoimia ja ilmaisia. Työpajat pidetään Vuotalon aulassa. Tervetuloa!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E1176081F8E1F7A4AE3CE848B607FC3A/Nuorten_suunnittelema_iltapaiva_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/E1176081F8E1F7A4AE3CE848B607FC3A/Nuorten_suunnittelema_iltapaiva_",
                "en": "http://www.vuotalo.fi/en/events/event/E1176081F8E1F7A4AE3CE848B607FC3A/Nuorten_suunnittelema_iltapaiva_"
            },
            "description": {
                "fi": "<p>Nämä työpajat ovat nuorten suunnittelemia ja järjestämiä. Ne ovat kaikille avoimia ja ilmaisia. Työpajat pidetään Vuotalon aulassa. Tervetuloa!</p><p><b>Kevään työpajojen ohjelma:</b></p><p>ma 28.4. klo 16–18 käsikoru/kynsilakka-iltapäivä<br>ma 19.5. klo 16–18 arvaa laatikon sisällä olevien tavaroiden järjestys ja voita palkinto<br>ke 21.5. klo 16–18 kangaskassien maalaustyöpaja</p><p>Iltapäivät toteutetaan yhteistyössä Vuosaaren nuorisotyöyksikön kanssa. Paikalla on nuoriso-ohjaaja.</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Nuorten suunnittelema iltapäivä – Mukavaa tekemistä kaikenikäisille Vuotalon aulassa",
                "sv": "Nuorten suunnittelema iltapäivä",
                "en": "Nuorten suunnittelema iltapäivä"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66088/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23bzna",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23btyi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23budm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23buoy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bu2e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bvfu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bvse/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bv6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bwky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bwya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bxdy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bxpy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bx34/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23byji/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23byvm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bzau/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150454,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-15T07:37:14.621279Z",
                    "last_modified_time": "2024-03-15T07:37:14.621301Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ENTERry-20_1.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Opastustilanne",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150454/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-04-25T06:34:23.382362Z",
            "last_modified_time": "2025-04-25T06:34:23.382378Z",
            "date_published": null,
            "start_time": "2025-09-04T07:00:00Z",
            "end_time": "2025-12-11T10: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,
            "short_description": {
                "fi": "Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. ",
                "sv": "Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.",
                "en": "Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. Ota mukaan oma laite, tarvittavat tunnukset ja salasanat.</p><p>Opastajina toimivat ENTER ry:n vapaaehtoiset vertaisopastajat.</p>",
                "sv": "<p>Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.</p>",
                "en": "<p>Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish.</p>"
            },
            "name": {
                "fi": "ENTER ry Tietotekniikkaopastusta senioreille",
                "sv": "ENTER ry IT utbildning för seniorer",
                "en": "ENTER ry IT tutoring for seniors"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja"
            },
            "provider": {
                "fi": "Enter ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bzna/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23bzyy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-04-25T05:39:16.707133Z",
            "last_modified_time": "2025-04-25T05:39:16.707151Z",
            "date_published": null,
            "start_time": "2025-09-13T08:00:00Z",
            "end_time": "2025-09-13T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lastenfestivaali Kolibrí Festivaali palaa Selloon ja Sellon kirjastoon viettämään 10-vuotisjuhliaan! ",
                "sv": "Barnfestivalen Kolibrí Festivaali återvänder till Sello och Sellos bibliotek för att fira sitt 10-årsjubileum! ",
                "en": "The children’s festival Kolibrí Festivaali returns to Sello and Sello Library to celebrate its 10th anniversary! "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Lastenfestivaali Kolibrí Festivaali palaa Selloon ja Sellon kirjastoon viettämään 10-vuotisjuhliaan! Älä missaa tilaisuutta nauttia perhepäivästä, joka on täynnä esityksiä, monikielistä tarinankerrontaa, taidetyöpajoja, musiikkia, tanssia ja paljon hauskaa kaikille lapsille ja heidän perheilleen!</p><p>Kolibrí Festivaali juhlistaa kymmenen vuoden ajan teemalla ”Toiveet” maksutonta, laadukasta, monikulttuurista, monikielistä ja monipuolista ohjelmaa, josta tuhannet lapset ovat nauttineet perheidensä kanssa.</p><p>Tapaat ihmisiä, opit uusia kieliä, tutustut uusiin kulttuureihin, pidät hauskaa ja ennen kaikkea saat uusia ystäviä.</p><p>Tule puhaltamaan kynttilät pois tässä ainutlaatuisessa syntymäpäiväjuhlassa ja toivotaan yhdessä!</p><p><br></p><p>Koko ohjelma julkaistaan 13.8.2025 alkaen osoitteessa <a href=\"https://www.kolibrifestivaali.org/.\">https://www.kolibrifestivaali.org/.</a></p>",
                "sv": "<p>Barnfestivalen Kolibrí Festivaali återvänder till Sello och Sellos bibliotek för att fira sitt 10-årsjubileum! Missa inte chansen att njuta av den första familjedagen i denna specialutgåva, full av föreställningar, flerspråkigt historieberättande, konstverkstäder, musik, dans och massor av skoj för alla barn och deras familjer!</p><p>Under temat ”Wishes” firar Kolibrí Festivaali tio år av gratis, högkvalitativ, mångkulturell, flerspråkig och mångsidig programverksamhet som tusentals barn har kunnat njuta av tillsammans med sina familjer.</p><p>Du kommer att träffa människor, lära dig nya språk, utforska nya kulturer, ha mycket roligt och framför allt få nya vänner.</p><p>Kom och blås ut ljusen på denna unika födelsedagsfest och låt oss önska oss något tillsammans!</p><p><br></p><p>Hela programmet kommer att publiceras från 13.8.2025 på <a href=\"https://www.kolibrifestivaali.org/\">https://www.kolibrifestivaali.org/</a></p>",
                "en": "<p>The children’s festival Kolibrí Festivaali returns to Sello and Sello Library to celebrate its 10th anniversary! Don’t miss the opportunity to enjoy the first Family Day of this special edition, full of performances, multilingual storytelling, art workshops, music, dance, and lots of fun for all children and their families!</p><p>Under the theme ‘Wishes’, Kolibrí Festivaali celebrates ten years of creating free high-quality, multicultural, multilingual, and diverse programming that thousands of children have enjoyed with their families.</p><p>You will meet people, learn new languages, explore new cultures, have lots of fun and above all, make new friends.</p><p>Come blow out the candles at this unique birthday party and let’s make a wish together!</p><p><br></p><p>The full program will be published from 13.8.2025 at <a href=\"https://www.kolibrifestivaali.org/\">https://www.kolibrifestivaali.org/</a></p>"
            },
            "name": {
                "fi": "Kolibri Festivaali",
                "sv": "Kolibri Festivaali",
                "en": "Kolibri Festivaali"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava, Paja, Jaminurkka",
                "sv": "Lava, Paja, Jaminurkka",
                "en": "Lava, Paja, Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bzyy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-3748845",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api"
            },
            "keywords": [
                {
                    "@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://www.lippu.fi/event/helsingin-kaupunginteatteri-skymning-41-beraettelsen-om-molly-och-henry-helsingin-kaupunginteatteri-19350582/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-skymning-41-beraettelsen-om-molly-och-henry-helsingin-kaupunginteatteri-19350582/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-skymning-41-beraettelsen-om-molly-och-henry-helsingin-kaupunginteatteri-19350582/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350584/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350586/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350585/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350587/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350588/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350576/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350577/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350589/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350591/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350593/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350579/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350580/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350581/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350582/?format=api"
                }
            ],
            "images": [
                {
                    "id": 235435,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.389566Z",
                    "last_modified_time": "2025-02-17T11:16:42.389583Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/skymning_222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235435/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:10.822110Z",
            "last_modified_time": "2025-04-24T20:16:07.135299Z",
            "date_published": null,
            "start_time": "2025-02-21T16:30:00Z",
            "end_time": "2025-04-24",
            "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,
            "short_description": {
                "sv": "Kjell Westö - Annina Enckell Skymning 41 – berättelsen om Molly och Henry Året är 1939 då nyförälskade Molly och Henry förstår att deras lilla nation kommer att"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/skymning-41-beraettelsen-om-molly-och-henry-3748845/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/skymning-41-beraettelsen-om-molly-och-henry-3748845/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/skymning-41-beraettelsen-om-molly-och-henry-3748845/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>***<br>Vuonna 1939 vastarakastuneet Molly ja Henry kohtaavat sodan, joka muuttaa heidän elämänsä. Näyttelijä Molly lähtee Ruotsiin keräämään rahaa Suomen puolesta, kun Henry taas raportoi rintaman kauhuista, mutta hänen rehelliset tekstinsä jäävät julkaisematta. Esitys, joka perustuu Kjell Westön romaaniin, kertoo sodan vaikutuksista siviileihin sekä rakkaudesta ja moraalista kriisiaikana.</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br> Lipunvälittäjä: Lippupiste Oy<br></p>",
                "sv": "<p>Kjell Westö - Annina Enckell<br><strong>Skymning 41 – berättelsen om Molly och Henry</strong></p><p>Året är 1939 då nyförälskade Molly och Henry förstår att deras lilla nation kommer att hamna i krig. Henry skickas inte till fronten, han är för gammal för att bli inkallad. Ändå förändrar kriget allt. Skådespelerskan Molly åker på turné till Sverige för att samla in pengar för Finlands sak, medan Henry reser till fronten för att skriva reportage om krigets fasor. Henrys texter blir inte publicerade, hans förmän tycker språket är för rått och ärligt. De saknar patriotiska berättelser om den finska soldaten – en hjälte som stålt dör för fosterlandet. Samtidigt måste Molly spela triviala roller i lättsamma komedier då hon egentligen skulle vilja “stå på scenen och gestalta mänskans villkor här i världen”. Molly och Henry försöker hitta tillbaka till livet som det var, men kriget är en gapande käft som slukar åt sig människornas glädje och hopp.</p><p>Föreställningen baserar sig på Kjell Westös roman och den handlar om en nation i krig, om hur retoriken i samhället militariseras och om hur kriget påverkar den civila befolkningen. Det är även en berättelse om kärlek och moral i kristid och om att kämpa för det man tror på.</p><p>Aktörer: Saga Sarkola, Elmer Bäck, Pia Runnakko, Alexander Wendelin, Joachim Wigelius, Antti Timonen</p><p>Regi: David Sandqvist<br>Dramatisering: Annina Enckell<br>Scenografi: Peter Ahlqvist<br>Dräktdesign: Sari Suominen<br>Ljusdesign: Pekka Pitkänen<br>Ljuddesign: Niklas Lundström<br>Maskdesign: Jutta Kainulainen<br>Dramaturgi: Henna Piirto</p>"
            },
            "name": {
                "sv": "Skymning 41 - Berättelsen Om Molly Och Henry"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lilla Teatern"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748845/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65052",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 221216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-13T13:14:13.667356Z",
                    "last_modified_time": "2025-02-13T13:14:13.667369Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763733.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/221216/?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"
                }
            ],
            "created_time": "2025-02-13T13:14:13.641465Z",
            "last_modified_time": "2025-04-24T14:13:16.619898Z",
            "date_published": null,
            "start_time": "2025-05-21T11:00:00Z",
            "end_time": "2025-05-21T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Haluatko vinkkejä ekologisesti kestävämpään arkeen? Helsinki järjestää monipuolisen kiertotaloustapahtuman Stoassa ja Stoan aukiolla.",
                "sv": "Vill du ha tips för en mer ekologiskt hållbar vardag? Helsingfors ordnar ett mångsidigt evenemang om cirkulär ekonomi på Stoa och Stoaplatsen.",
                "en": "Would you like to have tips for a more sustainable everyday life? Helsinki is organising a versatile circular economy event at Stoa and Stoa Square."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9F3B8EC62836B1A6D823BD9B9AC87532/Kaikki_kiertaa_Stoassa_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/9F3B8EC62836B1A6D823BD9B9AC87532/Allt_cirkulerar_pa_Stoa_",
                "en": "http://www.stoa.fi/en/events/event/9F3B8EC62836B1A6D823BD9B9AC87532/Everything_circulates_at_Stoa_"
            },
            "description": {
                "fi": "<p>Haluatko vinkkejä ekologisesti kestävämpään arkeen? Helsinki järjestää monipuolisen kiertotaloustapahtuman Stoassa ja Stoan aukiolla.</p><p>Kaupungin omien toimijoiden ja yhteistyökumppaneiden työpajoissa opitaan hyödyllisiä taitoja pyörien huollosta jätteiden lajitteluun ja vaatteiden korjaamisesta ekologisten tawashi-pesusienien valmistamiseen.</p><p>Tapahtumassa saadaan lisäksi nauttia musiikista, kiertotalousmuotinäytöksistä ja monenlaisesta yllättävästäkin tekemisestä.</p><p><b>Ohjelmassa mm. <br>klo 14–18<br>Neuvontaa sisustustekstiilien valintaan ja hoitoon</b><br>Kuinka pidennät sisustustekstiilien elinkaarta? Esittelyssä myös uudet kierrätysmateriaaleista valmistetut tekstiilit. <br>Paikka: Stoan aukio</p><p><b>klo 14.30 ja 15.45 <br>Kiertotalousmuotinäytös</b><br>Tule ihailemaan kiertotalousmuotinäytöstä!<br>Paikka: Stoan Teatterisali</p><p><b>klo 14–18 <br>T-paidasta kesähuiviksi -työpaja ja Korupaja</b><br>Huivipajassa voit kirjoa kierrätetystä T-paidasta leikatun kolmiohuivin. Halutessasi voit valmistaa huivin myös myös omasta T-paidasta. <br>Korupajassa voit valmistaa korva- tai rannekorun tai riipuksen kierrätyshelmistä ja käytetyistä korunosista. <br>Paikka: Itäkeskuksen kirjasto</p><p><b>klo 14–18<br>Kiertotalouden toimijat palvelukartalla</b><br>Paikka: Stoan Aula</p><p><b> klo 14–18 Kakkakoris ja lajitteluneuvontaa</b><br>Kakkakoris on peli, jossa opitaan leikin kautta, mitä viemäriin saa laittaa ja miten jätteitä lajitellaan. <br>Paikka: Stoan aukio<br>Järj. HSY</p><p><b>klo 14–18 Cleanit Sneaker</b><br>Lenkkareiden puhdistusvinkkejä ja käytettyjen lenkkareiden ostoa ja myyntiä.<br>Paikka: Stoan aukio<br>Järj. Cleanit Sneaker</p><p><b>klo 15–16.50 Yalla Collective, DJ-musiikkia</b><br>Paikka: Stoan aukio</p><p><b>klo 17–17.45 Paneelikeskustelu kestävästä arjesta ja vaikuttamisesta</b><br>Panelistit Jenni Rotonen/Pupulandia, Ami Värtö, Roskapäivä-Eino (Teemu Oinio).<br>Vetäjänä Liisa Uimonen / kirjasto.<br>Paikka: Stoan aukio<br>   <br><b>klo 14–18<br>Verstas-, garage- ja pyörähuolto-opastus ja -esittely</b></p><p><b>klo 14–17 Sukkien uusi elämä: Tawashi-pesusieni</b><br>Oletko miettinyt mitä voi tehdä parittomille sukille tai rikkinäisille sukkahousuille? Tawashi on japania ja tarkoittaa pesusientä. Työpajassa punotaan nollahukkapuhdistussieniä mitä mielikuvituksellisimpia kierrätysmateriaaleja käyttäen. <br>Ohjaaja: Chloé Mahy-Hulkko<br>Ohjauskielet: suomi, ranska ja englanti<br>Paikka: Stoan aukio</p><p><b>klo 14–18 Muoviamo Fashion Lab</b><br>Löydä sisäinen statement couture -muotisuunnittelijasi ja tuunaa vanha T-paita, huppari, college tai kangaskassi kierrätysmuovilla. Muoviamo Fashion Labissa muutat tavalliset muovipussit kollaasitekniikalla persoonallisiksi printeiksi, jotka kuumaprässätään kiinni kankaaseen. Tuo työpajaan oma vaate tai kassi tai osta paikan päältä. Voit myös tuoda puhtaita, visuaalisesti kiinnostavia muovipusseja, joista löytyy merkintä LPDE 04 tai HDPE 02.  Osallistuminen on maksuton 20 ensimmäiselle osallistujalle. Muille hinta on 15 € / osallistuja, sisältäen materiaalit. Ohjauskielet: suomi, italia ja englanti. <br>Paikka: Stoan aukio</p><p><b>klo 14–17 <br>Kierrätyskeskukset tutuksi! </b><br>Stoan aukio</p><p><b>klo 14–18<br>Vaatteidenvaihtotapahtuma</b><br>Tuo itselle turhia, mutta ehjiä, puhtaita, hyväkuntoisia aikuisten ja lasten vaatteita ja vie mennessäsi uusia löytöjä. Otathan vain omaan käyttöösi!<br>Tuo enintään 10 vaatetta, mutta ei kenkiä.<br>Järj. Nuorten palvelut ja Itäluotsi<br>Paikka: Stoan aukio</p><p><b>klo 14–18 Uusix-myynti ja Kierrätystuotemyyntipiste</b><br>Stoan aukio</p><p><b>klo 14–18 Vinkkejä kestävään arkeen</b> <br>Infopisteellä jaetaan monikielisiä esitteitä ja vinkkejä kestävään arkeen. <br>Paikka: Stoan aukio <br>Järj. Ympäristöpalvelut/Kestävä arki -hanke.</p><p><b>klo 17–18 Muodin hupipiste</b><br>Tule luomaan asukokonaisuuksia paperinukeille. Osallistujien kesken arvotaan kirpparilahjakortti. <br>Paikka: Stoan aukio<br>Järj. Keskuspuiston Nuorkauppa-kamari <br> <br><b>klo 15–18 KirppariFest</b><br>ilmoittaudu myyjäksi viimeistään 16.5.<u><a href=\"https://www.stoa.fi/fi/tapahtumat/event/973702EE95BFB265536CBFFAFB9DC01A/KirppariFEST\">Lue lisää</a></u></p>",
                "sv": "<p>Vill du ha tips för en mer ekologiskt hållbar vardag? Helsingfors ordnar ett mångsidigt evenemang om cirkulär ekonomi på Stoa och Stoaplatsen.</p><p>I verkstäder som arrangeras av stadens egna aktörer och samarbetspartner lärs användbara färdigheter ut, från cykelunderhåll till sopsortering och från att reparera kläder till att förbereda ekologiska matlådor.</p><p>Under evenemanget får vi också njuta av musik, modevisningar med tema cirkulär ekonomi och en mängd oväntade aktiviteter. Det kommer också att finnas en plantbytesplats.</p><p>Fritt inträde. Programmet kommer att preciseras ytterligare.</p>",
                "en": "<p>Would you like to have tips for a more sustainable everyday life? Helsinki is organising a versatile circular economy event at Stoa and Stoa Square.</p><p>At workshops organised by the city’s operators and partners, you will learn useful skills from bicycle maintenance to waste sorting and from repairing clothes to making ecological picnic packages.</p><p>In addition, you can enjoy music, circular economy fashion shows and a wide range of unexpected activities. There will also be a seedling exchange point.</p><p>Free admission. The programme will be updated.</p>"
            },
            "name": {
                "fi": "Kaikki kiertää Stoassa!",
                "sv": "Allt cirkulerar på Stoa!",
                "en": "Everything circulates at Stoa!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65052/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:89b048a2-d5a8-4135-ae56-80f93e284e59",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=MKtest_24042025_USER_STORY_643_max-arvon_asettaminen_osallistujamrn_LE-vlilehdell2544473762"
                    },
                    "description": {
                        "fi": "Tosi hyvä hinta:-)"
                    },
                    "price": {
                        "fi": "987654321"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 605933,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-24T12:35:35.509967Z",
                    "last_modified_time": "2025-04-24T12:35:35.509984Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e0c54b7e-c6f9-ef11-bae2-000d3ab0beb8",
                    "name": "Sad Grey bear kuvateksti",
                    "cropping": "",
                    "photographer_name": "kkk",
                    "alt_text": "Sad Grey bear alt-teksti",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/605933/?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:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "created_time": "2025-04-24T11:20:55.011249Z",
            "last_modified_time": "2025-04-24T12:35:37.956742Z",
            "date_published": "2025-04-24T11:14:11Z",
            "start_time": "2025-04-26T06:00:00Z",
            "end_time": "2025-04-26T06:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 32767,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-04-01T08:00:00+03:00",
            "enrolment_end_time": "2025-04-25T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "SHORT DESCRIPTION:\nMKtest 24042025 (USER STORY 643) max-arvon asettaminen osallistujamäärään LE-välilehdellä"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p><strong>LONG DESCRIPTION:</strong><br>MKtest 24042025 (USER STORY 643) max-arvon asettaminen osallistujamäärään LE-välilehdellä</p></div>"
            },
            "name": {
                "fi": "MKtest 24042025 (USER STORY 643) max-arvon asettaminen osallistujamäärään LE-välilehdellä"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Business Helsinki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:89b048a2-d5a8-4135-ae56-80f93e284e59/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65814",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/snoeleopard-3849661/",
                        "sv": "https://www.lippu.fi/artist/stoa/snoeleopard-3849661/",
                        "en": "https://www.lippu.fi/artist/stoa/snoeleopard-3849661/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 17 € / 6 €",
                        "sv": "20 € / 17 € / 6 €",
                        "en": "20 € / 17 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 380316,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-21T12:15:57.123524Z",
                    "last_modified_time": "2025-03-21T12:15:57.123543Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766357.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/380316/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-21T12:15:57.080374Z",
            "last_modified_time": "2025-04-24T12:13:21.407090Z",
            "date_published": null,
            "start_time": "2025-05-15T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Snöleopard-esitys saapuu Suomeen Ruotsista ja tuo Stoan lavalle neljän hengen esiintyvän ryhmän.",
                "sv": "Snöleopard är en vacker, halsbrytande och rolig föreställning om människans villkor, uttryckt i poesi."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/184C735AF89F86A265133B8558F7BFFB/Snoleopard",
                "sv": "http://www.stoa.fi/sv/evenemang/event/184C735AF89F86A265133B8558F7BFFB/Snoleopard",
                "en": "http://www.stoa.fi/en/events/event/184C735AF89F86A265133B8558F7BFFB/Snoleopard"
            },
            "description": {
                "fi": "<p>Snöleopard-esitys saapuu Suomeen Ruotsista ja tuo Stoan lavalle neljän hengen esiintyvän ryhmän.</p><p>Tämä kaunis, hengästyttävä sekä hauska esitys kertoo ihmisen elinolosuhteista. Runous, musiikki ja ilma-akrobatia kutovat yhteen maailman, joka on Tua Forsströmin runojen innoittama.</p><p>Esityksessä esiintyvät Manda Rydman, ilmataiteilija ja sirkustaiteilija, Sannamari Patjas, näyttelijä, sekä muusikot Emeli Jeremias ja Karin Hellqvist.</p><p>Esitys pohjautuu runoilija Tua Forsströmin runoihin ja on ruotsinkielinen.</p><p>Kesto noin 75 min, ei väliaikaa</p>",
                "sv": "<p>Snöleopard är en vacker, halsbrytande och rolig föreställning om människans villkor, uttryckt i poesi.</p><p>Snöleopard är en poetisk föreställning med nykomponerad musik av Emeli Jeremias och Karin Hellqvist. Luftakrobaten Manda Rydman tolkar texten med sin kropp. Orden läses av skådespelaren Sannamari Patjas som också sjunger en del av sångerna.<br>Medverkar gör Manda Rydman, luftakrobat och cirkusartist, Sannamari Patjas, skådespelare, musikerna Emeli Jeremias och Karin Hellqvist.</p><p>Föreställningen bygger på poesi av poeten Tua Forsström.</p><p>Längd ca 75 min, ingen paus</p>"
            },
            "name": {
                "fi": "Snöleopard",
                "sv": "Snöleopard",
                "en": "Snöleopard"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65814/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66040",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 605301,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-24T11:13:11.035145Z",
                    "last_modified_time": "2025-04-24T11:13:11.035161Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770525.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/605301/?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"
                }
            ],
            "created_time": "2025-04-24T11:13:10.960628Z",
            "last_modified_time": "2025-04-24T11:13:11.158421Z",
            "date_published": null,
            "start_time": "2025-05-19T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Minun elämäni, Ukraina! -pienoisesitys on dokumenttiteatteria, laulua, musiikkia, video- ja valokuvaa sekä audiomateriaalia yhdistävä, koskettava esitys."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4BE12CC065A2ADE02ACF7043AD8F5341/OSIRIS_teatteri_Minun_elamani_Ukraina_-pienoisesitys",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4BE12CC065A2ADE02ACF7043AD8F5341/OSIRIS_teatteri_Minun_elamani_Ukraina_-pienoisesitys",
                "en": "http://www.stoa.fi/en/events/event/4BE12CC065A2ADE02ACF7043AD8F5341/OSIRIS_teatteri_Minun_elamani_Ukraina_-pienoisesitys"
            },
            "description": {
                "fi": "<p>Minun elämäni, Ukraina! -pienoisesitys on dokumenttiteatteria, laulua, musiikkia, video- ja valokuvaa sekä audiomateriaalia yhdistävä, koskettava esitys.</p><p>Lavalla nähdään ja kuullaan katkelmia samannimisestä koko illan näyttämöesityksestä.</p><p>Esityksen yhteydessä on yleisökeskustelu, jossa mukana esiintyjät Anna Murtola, Laura Hänninen sekä ohjaaja Liisa Isotalo.</p><p>Kesto keskusteluineen n. 45–55 min.</p><p>Näyttämöllä: Laura Hänninen ja Anna Murtola<br>Tekninen toteutus: Lasse Turunen<br>Valokuvat ja videot: Ahmed Alalousi<br>Ohjaus ja käsikirjoitus sekä yleisökeskustelun ohjaus: Liisa Isotalo</p><p>Hankkeen kiertue-esityksiä on tukenut Opetus- ja kulttuuriministeriö</p><p>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "OSIRIS teatteri: Minun elämäni, Ukraina! -pienoisesitys – Tositarinoita elämästä Ukrainan sodan varjossa",
                "sv": "OSIRIS teatteri: Minun elämäni, Ukraina! -pienoisesitys – Tositarinoita elämästä Ukrainan sodan varjossa",
                "en": "OSIRIS teatteri: Minun elämäni, Ukraina! -pienoisesitys – Tositarinoita elämästä Ukrainan sodan varjossa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66040/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66072",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 604986,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-24T10:13:21.926301Z",
                    "last_modified_time": "2025-04-24T10:13:21.926324Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771232.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/604986/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-24T10:13:21.839550Z",
            "last_modified_time": "2025-04-24T10:13:22.018711Z",
            "date_published": null,
            "start_time": "2025-05-02",
            "end_time": "2025-05-31",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kanneltalon kahvilan vitriineissä on esillä Helena Tahvanaisen akryylimaalauksia."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/451781DD2B474EBB879172F69D2EB78D/Helena_Tahvanainen_Kuvittele_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/451781DD2B474EBB879172F69D2EB78D/Helena_Tahvanainen_Kuvittele_",
                "en": "http://www.kanneltalo.fi/en/events/event/451781DD2B474EBB879172F69D2EB78D/Helena_Tahvanainen_Kuvittele_"
            },
            "description": {
                "fi": "<p>Kanneltalon kahvilan vitriineissä on esillä Helena Tahvanaisen akryylimaalauksia.</p><p>\"Talven pimeinä kuukausina ja median suoltaessa synkkiä uutisia eri puolilta maailmaa on tärkeää pitää huolta omasta ilosta ja mielenrauhasta. Halusin näyttelytöissäni keskittyä elämän pieniin suuriin ihmeisiin. Luonnon vähitellen herätessä näitä ihmeitä alkaa taas nähdä ympärillään. Onneksi meille on myös annettu mielikuvitus, joka pystyy luomaan niitä silloinkin, kun ympärillä on harmaata. <br>  <br>Teokset ovat akryylivärein vesiväripaperille syntyneitä, sattuman ja tarkoituksellisen yhdistelmiä. Toivon teosten tuovan katsojalle samaa iloa, jota koin niitä luodessani.\" <br>    <br>Helena Tahvanainen on kuvataideterapeutti ja lyhytterapeutti, joka jaksaa ihmetellä kaikkea luonnossa ja ihmisessä tapahtuvaa. Taiteen perusopetuksen ohjelman ja lukuisten kurssien jälkeen Helenan lempitekniikoiksi ovat tulleet piirtäminen ja akryylimaalaus, joskin viime aikoina myös erilaiset sekatekniikat ovat alkaneet houkutella.</p><p>Haagan Taideseura ry on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura.</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Helena Tahvanainen: Kuvittele! – Haagan Taideseura",
                "sv": "Helena Tahvanainen: Kuvittele!",
                "en": "Helena Tahvanainen: Kuvittele!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66072/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66033",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 604670,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-24T09:13:11.427893Z",
                    "last_modified_time": "2025-04-24T09:13:11.427909Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770487.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/604670/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-24T09:13:11.340225Z",
            "last_modified_time": "2025-04-24T09:13:11.525326Z",
            "date_published": null,
            "start_time": "2025-05-15T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Minun elämäni, Ukraina! -pienoisesitys on dokumenttiteatteria, laulua, musiikkia, video- ja valokuvaa sekä audiomateriaalia yhdistävä, koskettava esitys."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E79403568FC23C67CB1E796ABF538F1D/OSIRIS_teatteri_Minun_elamani_Ukraina_-pienoisesitys",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E79403568FC23C67CB1E796ABF538F1D/OSIRIS_teatteri_Minun_elamani_Ukraina_-pienoisesitys",
                "en": "http://www.kanneltalo.fi/en/events/event/E79403568FC23C67CB1E796ABF538F1D/OSIRIS_teatteri_Minun_elamani_Ukraina_-pienoisesitys"
            },
            "description": {
                "fi": "<p>Minun elämäni, Ukraina! -pienoisesitys on dokumenttiteatteria, laulua, musiikkia, video- ja valokuvaa sekä audiomateriaalia yhdistävä, koskettava esitys.</p><p>Lavalla nähdään ja kuullaan katkelmia samannimisestä koko illan näyttämöesityksestä.</p><p>Esityksen yhteydessä on yleisökeskustelu, jossa ovat mukana esiintyjät Anna Murtola, Laura Hänninen sekä ohjaaja Liisa Isotalo.</p><p>Kesto keskusteluineen n. 45–55 min</p><p>Näyttämöllä: Laura Hänninen ja Anna Murtola<br>Tekninen toteutus: Lasse Turunen<br>Valokuvat ja videot: Ahmed Alalousi<br>Ohjaus ja käsikirjoitus sekä yleisökeskustelun ohjaus: Liisa Isotalo</p><p>Hankkeen kiertue-esityksiä on tukenut Opetus- ja kulttuuriministeriö</p><p>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "OSIRIS teatteri: Minun elämäni, Ukraina! -pienoisesitys – Tositarinoita elämästä Ukrainan sodan varjossa",
                "sv": "OSIRIS teatteri: Minun elämäni, Ukraina! -pienoisesitys",
                "en": "OSIRIS teatteri: Minun elämäni, Ukraina! -pienoisesitys"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66033/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23b2ie",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-24T08:12:25.299605Z",
            "last_modified_time": "2025-04-24T08:12:25.299622Z",
            "date_published": "2025-04-24T07:33:00Z",
            "start_time": "2025-05-20T13:30:00Z",
            "end_time": "2025-05-20T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tritonus-, Into-, Arco- ja Nauru-kvartetit esiintyvät"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tritonus-, Into-, Arco- ja Nauru-kvartetit esiintyvät</p><p>Opettajat Petja Kainulainen ja Sirkka Kuula</p><p>Händel-Telemann-Mozart-Beethoven-Bartok-Sostakovits</p>"
            },
            "name": {
                "fi": "EMOn jousikvartettien konsertti"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kaija"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b2ie/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}