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&keyword=yso%3Ap4354&page=2
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 7319,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=3",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354"
    },
    "data": [
        {
            "id": "espoo_le:agpkxmqdfi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:55.907197Z",
            "last_modified_time": "2026-06-09T08:42:55.907210Z",
            "date_published": null,
            "start_time": "2026-10-12T14:00:00Z",
            "end_time": "2026-10-12T16: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,
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "info_url": null,
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqdfi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqdwa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:55.801760Z",
            "last_modified_time": "2026-06-09T08:42:55.801773Z",
            "date_published": null,
            "start_time": "2026-10-05T14:00:00Z",
            "end_time": "2026-10-05T16: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,
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "info_url": null,
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqdwa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqefm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:55.696561Z",
            "last_modified_time": "2026-06-09T08:42:55.696573Z",
            "date_published": null,
            "start_time": "2026-09-28T14:00:00Z",
            "end_time": "2026-09-28T16: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,
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "info_url": null,
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqefm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqeuy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:55.589754Z",
            "last_modified_time": "2026-06-09T08:42:55.589766Z",
            "date_published": null,
            "start_time": "2026-09-21T14:00:00Z",
            "end_time": "2026-09-21T16: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,
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "info_url": null,
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqeuy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqfea",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:55.483615Z",
            "last_modified_time": "2026-06-09T08:42:55.483627Z",
            "date_published": null,
            "start_time": "2026-09-14T14:00:00Z",
            "end_time": "2026-09-14T16: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,
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "info_url": null,
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqfea/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqfta",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:55.378509Z",
            "last_modified_time": "2026-06-09T08:42:55.378522Z",
            "date_published": null,
            "start_time": "2026-09-07T14:00:00Z",
            "end_time": "2026-09-07T16: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,
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "info_url": null,
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqfta/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqgci",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:55.271869Z",
            "last_modified_time": "2026-06-09T08:42:55.271881Z",
            "date_published": null,
            "start_time": "2026-08-31T14:00:00Z",
            "end_time": "2026-08-31T16: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,
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "info_url": null,
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqgci/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqgrm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:55.164480Z",
            "last_modified_time": "2026-06-09T08:42:55.164492Z",
            "date_published": null,
            "start_time": "2026-08-24T14:00:00Z",
            "end_time": "2026-08-24T16: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,
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "info_url": null,
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqgrm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqhau",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:55.053361Z",
            "last_modified_time": "2026-06-09T08:42:55.053373Z",
            "date_published": null,
            "start_time": "2026-08-17T14:00:00Z",
            "end_time": "2026-08-17T16: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,
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "info_url": null,
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqhau/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqhpu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:54.923544Z",
            "last_modified_time": "2026-06-09T08:42:54.923557Z",
            "date_published": null,
            "start_time": "2026-08-10T14:00:00Z",
            "end_time": "2026-08-10T16: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,
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "info_url": null,
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqhpu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqh6y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmp6re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmp7im/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmp7ye/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqahm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqayi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqbia/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqbxy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqcha/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqcwm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqdfi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqdwa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqefm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqeuy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqfea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqfta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqgci/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqgrm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqhau/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqhpu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:53.439087Z",
            "last_modified_time": "2026-06-09T08:42:53.439104Z",
            "date_published": null,
            "start_time": "2026-08-10T14:00:00Z",
            "end_time": "2026-12-14T17: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,
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "info_url": null,
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69286",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385006,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T08:13:22.424670Z",
                    "last_modified_time": "2026-06-09T08:13:22.424683Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791101.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385006/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:13:22.275573Z",
            "last_modified_time": "2026-06-09T08:13:22.626566Z",
            "date_published": null,
            "start_time": "2026-08-22T07:30:00Z",
            "end_time": "2026-08-22T08:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/429FD1F888270B7B5666FA46E4B583DD/Tanssi-_ja_luontotyopajat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/429FD1F888270B7B5666FA46E4B583DD/Tanssi-_ja_luontotyopajat",
                "en": "http://www.vuotalo.fi/en/events/event/429FD1F888270B7B5666FA46E4B583DD/Tanssi-_ja_luontotyopajat"
            },
            "name": {
                "fi": "Tanssi- ja luontotyöpajat – 5–8-vuotiaille ja heidän lähiaikuisilleen",
                "sv": "Tanssi- ja luontotyöpajat",
                "en": "Tanssi- ja luontotyöpajat"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään kiireetöntä ja vapaata aikaa tanssin, leikin ja lähiluonnon parissa!",
                "sv": "Välkommen till en avkopplande stund med dans, lek och den lokala naturen!",
                "en": "Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!"
            },
            "provider": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään kiireetöntä ja vapaata aikaa tanssin, leikin ja lähiluonnon parissa!</p><p>Arjen keskellä on välillä vaikea löytää hetkiä vain olla yhdessä ja leikkiä tai vaikkapa mennä tutustumaan lähimetsään.</p><p>Työpajat tarjoavat mahdollisuuden aikuisille ja lapsille viettää kiireetöntä ja vapaata aikaa tanssin, leikin ja lähiluonnon parissa. Työpajoissa keskitytään erityisesti leikkimiseen ja yhdessä liikkumiseen tanssillisten tehtävien kautta. Työpajojen aiheet kulkevat mielikuvitus leikeistä tarinoihin, peleihin, metsässä kulkemiseen ja tutkimiseen yhdessä.</p><p>Työpajat ovat osa Koneen säätiön rahoittamaa Helsingin yliopiston Tietämisen taide -hanketta, jossa kehitämme yhteistyössä tutkijoiden ja tanssitaiteilijoiden kanssa demokraattisia ja osallistavia menetelmiä, joissa leikki, kehollisuus ja luonto ovat tärkeitä tietämisen lähteitä.</p><p>Osallistuessasi työpajoihin sinulla on halutessasi mahdollisuus olla mukana tutkimuksessa. Lisätietoja tutkimuksesta: anna.rainio@helsinki.fi.</p><p>Työpajoja ohjaavat tanssitaiteilija tanssipedagogi <b>Jenni Koistinen</b> ja tanssitaiteilija-koreografi <b>Virva Talonen</b>.</p><p><b>KENELLE?</b> Kaikille tanssista, leikistä ja luonnosta kiinnostuneille perheille ja aikuisille lapsen kanssa (äidit, isät, isovanhemmat, tädit, sedät, kummit, ystävät, serkut ja sisaret…). Toivomme osallistujien sitoutuvan koko syyskauden kerroille. Työpajoihin osallistuminen ei vaadi aikaisempaa tanssitaustaa tai -kokemusta. Työpajat ohjataan suomeksi ja tarvittaessa käytämme myös ruotsin ja englannin kieltä.</p><p><b>MISSÄ?</b> Työpajat pidetään Vuotalolla Pikkusalissa sekä Vuosaaren alueen lähimetsissä. Työpajoihin ilmoittautuneet saavat tarkemmat tiedot kokoontumispaikoista ennen kurssin alkua.</p><p><b>MILLOIN?</b> Lauantaisin klo 10.30–11.45<br>Päivämäärät: 22.8., 29.8.,<br>5.9., 12.9., 19.9., 26.9.,<br>3.10., 10.10., 24.10. ja<br>7.11.2026. Ei 17.10.</p><p><b>MITEN ILMOITTAUDUN?</b> Ilmoittautuminen tapahtuu sähköpostitse osoitteeseen <b>artofknowing2025@gmail.com</b>. Ilmoittautumisen yhteydessä kerro:</p><p>• Osallistujien nimi / nimet <br>• Puhelinnumero <br>• Ryhmä, johon osallistutaan (<b>5–8-vuotiaat aikuisineen</b> / 3.–6.-luokkalaiset / Nuoret ja aikuiset)</p><p><b>MISTÄ LISÄTIETOJA?</b> Vuotalon kulttuurituottaja Salla Fornaro: 0405371520</p>",
                "sv": "<p>Välkommen till en avkopplande stund med dans, lek och den lokala naturen!</p><p>Mitt i vardagen kan det vara svårt att hitta stunder för att bara vara tillsammans och leka eller gå på upptäcktsfärd i den lokala skogen. Verkstäderna erbjuder en möjlighet för personer i olika åldrar, vuxna och barn, att umgås fritt och utan stress, dansa, leka och njuta av den lokala naturen.</p><p>I verkstäderna fokuserar vi särskilt på lek och att röra oss tillsammans genom dansuppgifter. Verkstädernas teman rör sig från fantasilekar till berättelser, spel, promenader i naturen och gemensamt utforskande.</p><p>Verkstäderna ingår i Helsingfors universitets projekt Tietämisen taide, som finansieras av Kone-stiftelsen och där vi utvecklar kroppsliga, intuitiva och tänkta sätt att veta i samarbete med forskare och danskonstnärer. Projektet utvecklar demokratiska och inkluderande metoder där lek, kroppslighet och natur är viktiga källor till kunskap.</p><p>När du deltar i verkstäderna har du möjlighet att delta i forskningsprojektet om du vill. Mer information om forskningsprojektet: anna.rainio@helsinki.fi</p><p>Verkstäderna leds av danskonstnären och -pedagogen Jenni Koistinen samt danskonstnären och koreografen Virva Talonen.</p>",
                "en": "<p>Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!</p><p>In the busyness of everyday life, it can be hard to find moments to just be together and play, or perhaps go explore the local forest. These workshops offer an opportunity for people of all ages, adults and children alike, to spend some unhurried and free time together, dancing, playing and enjoying the local nature.</p><p>The workshops will focus particularly on playing and moving together through dance-related activities. The workshop themes range from imagination play to stories, games, walking in the woods and exploring things together.</p><p>The workshops are part of the University of Helsinki’s Art of Knowing project, funded by the Kone Foundation, in which we work with researchers and dance artists to develop bodily, intuitive and imaginary ways of knowing. The project develops democratic and participatory methods in which play, bodiliness and nature are important sources of knowing.</p><p>If you participate in the workshops, you can also take part in a survey if you wish. For more information on the survey, please contact: anna.rainio@helsinki.fi</p><p>The workshops are instructed by dance artist and educator Jenni Koistinen and dance artist and choreographer Virva Talonen.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69286/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69284",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384993,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T07:13:23.909731Z",
                    "last_modified_time": "2026-06-09T07:13:23.909749Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791077.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384993/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-09T07:13:23.709689Z",
            "last_modified_time": "2026-06-09T08:13:20.840875Z",
            "date_published": null,
            "start_time": "2026-08-20T13:30:00Z",
            "end_time": "2026-08-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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8C55F897B60D15CD90971A00047FA054/Tanssi-_ja_luontotyopajat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8C55F897B60D15CD90971A00047FA054/Tanssi-_ja_luontotyopajat",
                "en": "http://www.vuotalo.fi/en/events/event/8C55F897B60D15CD90971A00047FA054/Tanssi-_ja_luontotyopajat"
            },
            "name": {
                "fi": "Tanssi- ja luontotyöpajat – 3.–6. luokkalaisille",
                "sv": "Tanssi- ja luontotyöpajat",
                "en": "Tanssi- ja luontotyöpajat"
            },
            "short_description": {
                "fi": "Kivaa yhdessäoloa tanssin ja luonnon parissa!"
            },
            "provider": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kivaa yhdessäoloa tanssin ja luonnon parissa!</p><p>Työpajoissa pääset tutustumaan erilaisiin tapoihin tanssia ja liikkua omalla tavallasi sisällä ja ulkona. Pääset tekemään omia tansseja sekä pieniä esityksiä erilaisista aiheista yksin ja yhdessä muiden kanssa.</p><p>Syksyn aikana työpajoissa vierailevat myös tutkijat <b>Anna Rainio</b> ja <b>Tuija Kasa</b>, joiden kanssa keskustelemme työpajoissa syntyneistä aiheista. Työpajat ovat osa Koneen säätiön rahoittamaa Helsingin yliopiston Tietämisen taide -hanketta, jossa kehitämme yhteistyössä tutkijoiden ja tanssitaiteilijoiden kanssa demokraattisia ja osallistavia menetelmiä, joissa leikki, kehollisuus ja luonto ovat tärkeitä tietämisen lähteitä.</p><p>Osallistuessasi työpajoihin sinulla on halutessasi mahdollisuus olla mukana tutkimuksessa. <br>Lisätietoja tutkimuksesta: anna.rainio@helsinki.fi.</p><p>Työpajoja ohjaavat tanssitaiteilija tanssipedagogi <b>Jenni Koistinen</b> ja tanssitaiteilija-koreografi <b>Virva Talonen</b>. Mukana keskusteluissa myös tutkijat Anna Rainio ja Tuija Kasa.</p><p><b>KENELLE?</b> Kaikille tanssista, esiintymisestä ja luonnosta kiinnostuneille 3.–6. luokkalaisille. Toivomme osallistujien sitoutuvan osallistumaan syyskauden kerroille. Työpajoihin osallistuminen ei vaadi aikaisempaa tanssitaustaa tai -kokemusta. Työpajat ohjataan suomeksi ja tarvittaessa käytämme myös ruotsin ja englannin kieltä.</p><p><b>MISSÄ?</b> Työpajat pidetään Vuotalolla Pikkusalissa sekä Vuosaaren alueen lähimetsissä. Työpajoihin ilmoittautuneet saavat tarkemmat tiedot kokoontumispaikoista ennen kurssin alkua.</p><p><b>MILLOIN?</b> Torstaisin klo 16.30–17.30. <br>Päivämäärät: 20.8, 27.8, <br>3.9, 10.9, 17.9, 24.9, <br>1.10, 8.10, 22.10, 29.10 ja <br>5.11.2026. Ei syyslomaviikon torstaina 15.10.</p><p><b>MITEN ILMOITTAUDUN?</b> Ilmoittautuminen tapahtuu sähköpostitse osoitteeseen <b>artofknowing2025@gmail.com</b> Ilmoittautumisen yhteydessä kerro:</p><p>• Osallistujan nimi ja puhelinnumero <br>• Huoltajan nimi ja puhelinnumero <br>• Ryhmä, johon osallistutaan (5–8-vuotiaat aikuisineen / <b>3.–6.-luokkalaiset</b> / Nuoret ja aikuiset)</p><p><b>MISTÄ LISÄTIETOJA?</b> Vuotalon kulttuurituottaja Salla Fornaro: 0405371520</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69284/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69268",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p2625/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384988,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-08T13:13:49.275393Z",
                    "last_modified_time": "2026-06-08T13:13:49.275408Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793679.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384988/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-08T13:13:49.173328Z",
            "last_modified_time": "2026-06-08T13:13:49.416016Z",
            "date_published": null,
            "start_time": "2026-08-20T15: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/5BFBF9C456AF8BE34968F4128564C546/Teatteri_Qo_Niitty",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5BFBF9C456AF8BE34968F4128564C546/Teatteri_Qo_Niitty",
                "en": "http://www.stoa.fi/en/events/event/5BFBF9C456AF8BE34968F4128564C546/Teatteri_Qo_Niitty"
            },
            "name": {
                "fi": "Teatteri Qo: Niitty – Stoan Elojuhla | Taiteiden yö",
                "sv": "Teatteri Qo: Niitty",
                "en": "Teatteri Qo: Niitty"
            },
            "short_description": {
                "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!"
            },
            "provider": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p>Taiteiden yönä, torstaina 20.8. Stoassa vietetään Elojuhlaa. Elojuhlan klo 17.00 ja 18.00 Niitty-esityksiin jaetaan vapaalippuja klo 16 alkaen Stoan aulassa – nouda omasi ajoissa!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69268/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69267",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p2625/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384987,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-08T13:13:48.832940Z",
                    "last_modified_time": "2026-06-08T13:13:48.832954Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793678.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384987/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-08T13:13:48.711098Z",
            "last_modified_time": "2026-06-08T13:13:49.056704Z",
            "date_published": null,
            "start_time": "2026-08-20T14: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4DDB625525B0583E2281FBF21A7873EE/Teatteri_Qo_Niitty",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4DDB625525B0583E2281FBF21A7873EE/Teatteri_Qo_Niitty",
                "en": "http://www.stoa.fi/en/events/event/4DDB625525B0583E2281FBF21A7873EE/Teatteri_Qo_Niitty"
            },
            "name": {
                "fi": "Teatteri Qo: Niitty – Stoan Elojuhla | Taiteiden yö",
                "sv": "Teatteri Qo: Niitty",
                "en": "Teatteri Qo: Niitty"
            },
            "short_description": {
                "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!"
            },
            "provider": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p>Taiteiden yönä, torstaina 20.8. Stoassa vietetään Elojuhlaa. Elojuhlan klo 17.00 ja 18.00 Niitty-esityksiin jaetaan vapaalippuja klo 16 alkaen Stoan aulassa – nouda omasi ajoissa!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69267/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69264",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p2625/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384986,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-08T12:13:48.883324Z",
                    "last_modified_time": "2026-06-08T12:13:48.883339Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793675.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384986/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-08T12:13:48.764016Z",
            "last_modified_time": "2026-06-08T12:13:49.253393Z",
            "date_published": null,
            "start_time": "2026-08-19T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B77D3D46E6379CE4C98E7D6F52AE9D7F/Teatteri_Qo_Niitty",
                "sv": "http://www.stoa.fi/sv/evenemang/event/B77D3D46E6379CE4C98E7D6F52AE9D7F/Teatteri_Qo_Niitty",
                "en": "http://www.stoa.fi/en/events/event/B77D3D46E6379CE4C98E7D6F52AE9D7F/Teatteri_Qo_Niitty"
            },
            "name": {
                "fi": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille",
                "sv": "Teatteri Qo: Niitty",
                "en": "Teatteri Qo: Niitty"
            },
            "short_description": {
                "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!"
            },
            "provider": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p><b>Liput ja ilmoittautuminen:</b><br>Keskiviikkoaamupäivän 19.8. klo 9.15 ja 10.30 esitykset järjestetään varhaiskasvatusryhmille. <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\"><u>Voit ilmoittaa ryhmäsi mukaan osoitteessa kultus.hel.fi alkaen 3.8. klo 10.</u></a></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69264/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69263",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p2625/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384985,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-08T12:13:48.377102Z",
                    "last_modified_time": "2026-06-08T12:13:48.377119Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793674.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384985/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-08T12:13:48.237179Z",
            "last_modified_time": "2026-06-08T12:13:48.637757Z",
            "date_published": null,
            "start_time": "2026-08-19T06:15: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A07D5C75A1E5F8D7B6113F78D1730A4D/Teatteri_Qo_Niitty",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A07D5C75A1E5F8D7B6113F78D1730A4D/Teatteri_Qo_Niitty",
                "en": "http://www.stoa.fi/en/events/event/A07D5C75A1E5F8D7B6113F78D1730A4D/Teatteri_Qo_Niitty"
            },
            "name": {
                "fi": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille",
                "sv": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille",
                "en": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille"
            },
            "short_description": {
                "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!"
            },
            "provider": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p><b>Liput ja ilmoittautuminen:</b><br>Keskiviikkoaamupäivän 19.8. klo 9.15 ja 10.30 esitykset järjestetään varhaiskasvatusryhmille. <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\"><u>Voit ilmoittaa ryhmäsi mukaan osoitteessa kultus.hel.fi alkaen 3.8. klo 10.</u></a></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69263/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68713",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1994114,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-06T10:14:10.696083Z",
                    "last_modified_time": "2026-05-06T10:14:10.696174Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786208.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1994114/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-05-06T10:14:10.328417Z",
            "last_modified_time": "2026-06-08T09:13:44.932806Z",
            "date_published": null,
            "start_time": "2026-06-12T06:30:00Z",
            "end_time": "2026-06-12T18: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3974A7009DB309C2C7AFACFB09839CCB/Helsinki-paiva_Annantalossa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/3974A7009DB309C2C7AFACFB09839CCB/Helsingforsdagen_pa_Annegarden",
                "en": "http://www.annantalo.fi/en/events/event/3974A7009DB309C2C7AFACFB09839CCB/Helsinki_Day_at_Annantalo"
            },
            "name": {
                "fi": "Helsinki-päivä Annantalossa",
                "sv": "Helsingforsdagen på Annegården",
                "en": "Helsinki Day at Annantalo"
            },
            "short_description": {
                "fi": "Annantalon Helsinki-päivä tarjoaa musiikkia, teatteria ja taidetta koko perheelle aamusta iltaan.",
                "sv": "Helsingforsdagen på Annegården bjuder på musik, teater och konst för hela familjen från morgon till kväll.",
                "en": "Helsinki Day at Annantalo offers music, theatre and art for the whole family from dawn till dusk."
            },
            "provider": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Annantalon Helsinki-päivä tarjoaa musiikkia, teatteria ja taidetta koko perheelle aamusta iltaan.</p><p>Tervetuloa viettämään koko perheen Helsinki päivää Annantaloon! Luvassa on musiikkia, teatteria, taidepajoja ja yhdessäoloa aamusta iltaan. Kaikkiin tapahtumiin on vapaa pääsy.</p><p><b>Aikataulu</b><br>klo 9.30 & 10.45 Päistikka -orkesterin konsertti (A.-lava / sateella Annansali)<br>klo 10–15 Avoin taidepaja: Elävä Helsinki (etupiha / sateella sisällä)<br>klo 12–12.30 Piknikkonsertti: Valtuutetut- duo (A.-lava)<br>klo 15.30 & 18.00 Stella Polaris: Maaginen matka<br>klo 19–21 Downtown Open Mic (A.-lava)</p><p><b>Päistikka-orkesterin konsertti<br>klo 9.30 ja klo 10.45, Annantalon A.-lava</b><br>(Sateella Annansalissa, jolloin paikka kannattaa varata ennakkoon)<br>Päistikka-orkesterin riemukkaassa konsertissa syöksytään seikkailuihin ja mielikuvituksen maailmaan. On aika tanssia robottidiskossa tai ryhtyä hirviöhippaan! Musiikin ja tarinoiden täyttämä show kutsuu myös yleisön mukaan osallistumaan.</p><p>Esiintyjät:<br>Tuukka Martiskainen, laulu, ukulele, samplet<br>Elina Vehkaoja, laulu, koskettimet<br>Erno Kettunen – kitara, trumpetti<br>Juhani Saari – basso</p><p>Kesto: 30 min<br>Ikäsuositus: 1+<br>Kieli: suomi<br>Paikkavaraukset (jos sade yllättää): annantalo.fi, 12.5. klo 8 alkaen</p><p><b>Avoin taidepaja: Elävä Helsinki<br>klo 10–15 — Annantalon etupiha</b><br>(Sateella sisätiloissa)<br>Mikä se siellä vipeltää, sukkelasti sujahtaa? Työpajassa tutkitaan Annantalon lähiluontoa, kurkistetaan vaikka kiven alle. Havainnoidaan pienistä pienintä ja vähän isompaakin.<br>Eliökunnan manifestin innoittamana maalataan ihmeellisillä luonnon väreillä. Manifestiin voi tutustua Annantalon aulassa.<br>Suurennuslasi matkaan ja pensseli käteen!<br>Ohjaajat: Marjut Maristo ja Heli Niska<br>Maksuton ja avoin kaikenikäisille.</p><p><b>Piknikkonsertti: Valtuutetut -duo<br>klo 12–12.30, A.-lava</b><br>Helsingin kaupunginvaltuutetut Nora Grotenfelt ja Antti Vuorela esittävät lastenlauluja ruotsiksi ja suomeksi. Luvassa on tarinoita, nostalgiaa ja hyväntuulista yhteisöllisyyttä.<br>Omat eväät ja piknikviltit mukaan!</p><p><b>Stella Polaris: Maaginen matka<br>klo 15.30 ja klo 18.00</b><br>Stella Polariksen improvisoidussa koko perheen näytelmässä lapset pääsevät vaikuttamaan tarinan kulkuun ja hahmoihin. Näyttelijät, muusikko ja valosuunnittelija loihtivat esityksen yleisön ehdotusten pohjalta – jokainen kerta on täysin uudenlainen.<br>Tulkaa mukaan ihmettelemään, kuinka kokonainen näytelmä syntyy silmien edessä täynnä yllätyksiä, hauskuutta ja hulvattomia käänteitä!<br>Ikäsuositus: 6+<br>Kesto: noin 45 min<br>Kieli: suomi<br>Paikkavaraukset: annantalo.fi, 12.6.2026 klo 8 alkaen</p><p><b>Downtown Open Mic<br>klo 19–21, A.-lava</b><br>Downtown Open Mic tapahtuu Annantalon A-lavalla Helsinki-päivänä 12.6. klo19–21! Tervetuloa esiintymään ja nauttimaan lämpimästä tunnelmasta juontajan Pyry Aallon kanssa. Lavalta löytyy mikit, kosketinsoittimet ja kytkentä kitaralle. Meillä on myös paikan päällä DJ, joka voi soittaa taustanauhoja. Voit hakea esiintyjäksi ennakkoon. Esiintyjien ilmoittautumiset aukeavat toukokuun lopulla.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Ilmoittaudu Open Mic -esiintyjäksi tästä!</a></u></p><p>Nähdään Annantalolla!</p>",
                "sv": "<p>Helsingforsdagen på Annegården bjuder på musik, teater och konst för hela familjen från morgon till kväll.</p><p>Välkommen till Annegården för att fira Helsingforsdagen med hela familjen! Det blir musik, teater, konstverkstäder och samvaro från morgon till kväll. Alla evenemang har fritt inträde.</p><p><b>Tidtabell</b><br>kl. 9.30 & 10.45 Konsert med orkestern Päistikka (A-scenen/vid regn i Annesalen)<br>kl. 10–15 Öppen konstverkstad: Ett levande Helsingfors (gården på framsidan/vid regn inomhus)<br>kl. 12–12.30 Picknickkonsert: Duon Valtuutetut (A-scenen)<br>kl. 15.30 & 18.00 Stella Polaris: Maaginen matka<br>kl. 19–21 Downtown Open Mic (A-scenen)</p><p><b>Konsert med orkestern Päistikka<br>kl. 9.30 och kl. 10.45, Annegårdens A-scen</b><br>(Om det regnar, inne i Annesalen, så boka gärna plats i förväg)<br>I Päistikka-orkesterns glada konsert dyker vi ner i äventyrens och fantasins värld. Det är dags att dansa robotdisco eller leka monstertafatt! Den här showen, fylld av musik och berättelser, bjuder också in publiken att vara med.</p><p>På scenen:<br>Tuukka Martiskainen – sång, ukulele, samples<br>Elina Vehkaoja – sång, keyboard<br>Erno Kettunen – kitara, trumpetti<br>Juhani Saari – basso<br>Längd: 30 minuter<br>Åldersrekommendation: 1+<br>Språk: finska<br>Platsbokningar (om det regnar): annantalo.fi, från 12.6 kl. 8</p><p><b>Öppen konstverkstad: Ett levande Helsingfors<br>kl. 10–15, Gården framför Annegården</b><br>(Inomhus vid regn)<br>Vad är det som snabbt ilar förbi? I verkstaden utforskar vi naturen i närheten av Annegården, till exempel genom att titta under stenar. Vi upptäcker de minsta av de minsta och även sådana som är lite större.<br>Vi målar med fantastiska naturfärger och med inspiration från organismernas manifest. Du kan ta del av manifestet i Annegårdens entré.<br>Ta med dig ett förstoringsglas och en pensel!<br>Ledare: Marjut Maristo och Heli Niska<br>Kostnadsfritt och öppet för alla åldrar.</p><p><b>Picknickkonsert: Duon Valtuutetut<br>kl. 12–12.30, A-scenen</b><br>Nora Grotenfelt och Antti Vuorela från Helsingfors stadsfullmäktige framför barnvisor på finska och svenska.. Det utlovas berättelser, nostalgi och god stämning.<br>Ta med egen matsäck och picknickfilt!</p><p><b>Stella Polaris Maaginen matka (en magisk resa)<br>kl. 15.30 och kl. 18.00</b><br>I improvisationsduon Stella Polaris föreställning för hela familjen får barnen påverka berättelsen och karaktärerna. Skådespelarna, musikern och ljusdesignern trollar fram en föreställning utifrån publikens förslag – och den blir helt ny varje gång.<br>Kom med och förundras över hur en hel föreställning full av överraskningar, skoj och fantastiska vändningar skapas framför dina ögon!<br>Åldersrekommendation: 6+<br>Längd: cirka 45 min.<br>Språk: finska<br>Platsbokning i Annesalen: annantalo.fi, från 12.6.2026 kl. 8</p><p><b>Downtown Open Mic<br>kl. 19–21, A-scenen</b><br>Downtown Open Mic ordnas på Annegårdens A-scen på Helsingforsdagen 12.6 kl. 19–21! Välkommen att uppträda och njuta av den varma stämningen med programledaren Pyry Aalto. På scenen finns mikrofoner, keyboard och en anslutning för gitarr. Vi har också en DJ på plats, som kan spela bakgrundsmusik. <br>Du kan ansöka om att få uppträda i förväg. Anmälningarna för uppträdanden öppnar i slutet av maj på annantalo.fi.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Open Mic anmälningsblankett (på finska)</a></u></p><p>Vi ses på Annegården!</p>",
                "en": "<p>Helsinki Day at Annantalo offers music, theatre and art for the whole family from dawn till dusk.</p><p>Welcome to Annantalo to celebrate Helsinki Day with the whole family! There will be music, theatre, art workshops and socialising from dawn till dusk. Entry to all of the events is free of charge.</p><p><b>Schedule</b><br>9.30 & 10.45 Päistikka orchestra concert (A stage / Annansali if it rains)<br>10.00–15.00 Open art workshop: Elävä Helsinki (Living Helsinki) (front yard / inside if it rains)<br>12.00–12.30 Picnic concert: The Valtuutetut duo (A stage)<br>15.30 & 18.00 Stella Polaris: Maaginen matka (‘A magical journey’)<br>19.00–21.00 Downtown Open Mic (A stage)</p><p><b>Concert by the Päistikka orchestra 9.30 and 10.45, Annantalo A stage</b><br>(If it rains, the concert will be held in Annansali; book in advance to avoid disappointment)<br>In this exhilarating concert, the audience will plunge into a world of adventure and imagination. It's time to dance in a robot disco or chase monsters! Filled with music and stories, the show also invites the audience to get involved.</p><p>Performers:<br>Tuukka Martiskainen – vocals, ukulele, samples<br>Elina Vehkaoja – vocals, keyboards<br>Erno Kettunen – kitara, trumpetti<br>Juhani Saari – basso</p><p>Duration: 30 min<br>Recommended age: 1+<br>Language: Finnish<br>Reservations (in case of rain): annantalo.fi, 12 June from 8.00 onwards</p><p><b>Open art workshop: Elävä Helsinki (‘Living Helsinki’)<br>10.00–15.00, Annantalo front yard</b><br>(Indoors if it rains)<br>What's that dashing there, shooting around? The workshop explores the nature around Annantalo, even peering under rocks. We will observe the smallest of the small and take a look at bigger things.<br>Inspired by the Eliökuntalaisten manifesti (‘A Manifesto for the Living World’), we paint in the wondrous colours of nature. You can read the manifesto in the Annantalo lobby.<br>Bring a magnifying glass and grab a paintbrush!<br>Instructors: Marjut Maristo and Heli Niska<br>Free of charge and open to all ages.</p><p><b>Picnic concert: Valtuutetut duo<br>12.00–12.30, A stage</b><br>Helsinki City Councillors Nora Grotenfelt and Antti Vuorela perform Children songs fin Finnsh and Swedish. There will be stories, nostalgia and good-humoured community spirit.<br>Bring your own picnic and blankets!</p><p><b>Stella Polaris: Maaginen matka (‘A magical journey’)<br>15.30 and 18.00</b><br>In Stella Polaris' improvised play for the whole family, children get to influence the story and the characters. The actors, musician and lighting designer will create the show based on suggestions from the audience – the performance will be different every time.<br>Come along and see a whole play unfold before your eyes, full of surprises, fun and hilarious twists and turns!<br>Recommended age: 6+<br>Duration: approximately 45 min<br>Language: Finnish<br>Seat reservations for Annansali: annantalo.fi, 12 June 2026 from 8.00 onwards</p><p><b>Downtown Open Mic<br>19.00–21.00, A stage</b><br>Downtown Open Mic takes place at Annantalo's A stage on Helsinki Day 12 June at 19.00–21.00! Come and enjoy the warm atmosphere with host Pyry Aalto. On stage you'll find mics, keyboards and a plug for the guitar. The event will also have an on-site DJ who can play backing tracks. <br>You can apply to be a performer in advance. Registrations for performers will open at the end of May on annantalo.fi.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Open Mic registration form (in Finnish)</a></u></p><p>See you at Annantalo!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68713/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69262",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384984,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-08T07:13:58.136340Z",
                    "last_modified_time": "2026-06-08T07:13:58.136356Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784172.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384984/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-08T07:13:57.975478Z",
            "last_modified_time": "2026-06-08T07:13:58.411713Z",
            "date_published": null,
            "start_time": "2026-11-06T16: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7E7F772ECC404D08C1705B9BFBD05491/Opera_Box_Giellavealgu_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/7E7F772ECC404D08C1705B9BFBD05491/Opera_Box_Giellavealgu_",
                "en": "http://www.vuotalo.fi/en/events/event/7E7F772ECC404D08C1705B9BFBD05491/Opera_Box_Giellavealgu_"
            },
            "name": {
                "fi": "Opera Box: Giellavealgu – Svenska Dagen i Nordhuset",
                "sv": "Opera Box: Giellavealgu – Svenska Dagen i Nordhuset",
                "en": "Opera Box: Giellavealgu – Svenska Dagen i Nordhuset"
            },
            "short_description": {
                "fi": "Ruotsalaisuuden päivää juhlistetaan Vuotalossa monikielisellä oopperaesityksellä!",
                "sv": "Svenska Dagen firas med mångspråkig barnopera i Nordhuset!"
            },
            "provider": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ruotsalaisuuden päivää juhlistetaan Vuotalossa monikielisellä oopperaesityksellä!</p><p>Giellavealgu (Kielenvaihtaja) on tammikuussa 2026 ensi-iltansa saanut Opera Boxin tuottama, 3–12-vuotiaille suunnattu monikielinen lastenooppera. Teos käsittelee pohjoisen luontoa, ystävyyttä ja kieltä naalin, sinirinnan ja tunturipöllön etsiessä yhteistä ääntä. Oopperan ovat ohjanneet ja käsikirjoittaneet <b>Isa Kortekangas</b> ja <b>Ville Salonen</b> ja sen Lapin luontoon pohjautuvan, etno-vaikutteisen ja viulun säestämän musiikin ovat säveltäneet <b>Pessi Jouste</b> ja <b>Elias Nieminen</b>.</p><p>Ooppera korostaa pohjoisten kielten ja kulttuurien merkitystä ja on osa laajempaa kotimaisten<br>kielten teemavuotta. Sen keskeisiä teemoja ovat saamelaisuus, identiteetti, luonnon monimuotoisuus ja tasa-arvoinen ystävyys.</p><p>Ooppera esitettiin ensimmäistä kertaa 13.1.2026 Helsingissä, Aleksanterin teatterissa.</p><p>Esityskielet: pohjoissaame, suomi, ruotsi, somali, arabia, ukraina ja swahili<br>Kesto: noin 35 minuuttia</p>",
                "sv": "<p>Svenska Dagen firas med mångspråkig barnopera i Nordhuset!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69262/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhu2jm",
            "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: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:p2901/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhu5ge/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824296,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-30T07:28:00.424700Z",
                    "last_modified_time": "2026-04-30T07:28:00.424717Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ff9580cd-e62c-4d00-9f09-9607601ba31f.jpg",
                    "name": "",
                    "cropping": "106,0,534,427",
                    "photographer_name": "Kuva Niek Verlaan Pixabaystä",
                    "alt_text": "Kuvassa on ihminen käyttämässä tablettia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824296/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-25T10:08:26.213042Z",
            "last_modified_time": "2026-06-08T04:19:13.825290Z",
            "date_published": null,
            "start_time": "2026-06-08T10:00:00Z",
            "end_time": "2026-06-08T12: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,
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "info_url": null,
            "name": {
                "fi": "Alakoululaisten elokuvakerho",
                "sv": "Filmklubb för grundskoleelever",
                "en": "Movie Club for Primary School Students"
            },
            "short_description": {
                "fi": "Alakoululaisten elokuvakerho",
                "sv": "Filmklubb för grundskoleelever",
                "en": "Movie Club for Primary School Students"
            },
            "provider": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Talven aikana alakoululaiset saivat ehdottaa ja äänestää, mihin tämän kirjaston Toimintatonni-budjetti käytettäisiin. Meidän kirjastomme äänestyksen voitti: Elokuvat.</p><p>Lasten toiveesta aloitamme alakoululaisten elokuvakerhon, joka kokoontuu 4.5-15.6 välisenä aikana maanantaisin klo 13-15.30. Kerhoon voi tulla mukaan mihin aikaan tahansa. Paikalla ei tarvitse olla heti klo 13. Kerhossa katsellaan elokuvia, tehdään omia lyhytelokuvia ja animaatioita. Aikaisempaa kokemusta ei tarvita. Tarkempi kerhon sisältö rakentuu osallistujien toiveiden mukaan. Tervetuloa.</p>",
                "sv": "<p>Under vintern fick grundskoleeleverna lägga fram förslag och rösta om hur bibliotekets Toimintatonni-budget skulle användas. Vinnaren i vår biblioteksomröstning blev: Filmer</p><p>På barnens önskemål startar vi en filmklubb för grundskoleelever, som träffas måndagar kl. 13–15.30 under perioden 4 maj–15 juni. Man kan komma med i klubben när som helst. Man behöver inte vara på plats redan kl. 13. I klubben tittar vi på filmer och gör egna kortfilmer och animationer. Tidigare erfarenhet krävs inte. Klubbens innehåll utformas utifrån deltagarnas önskemål. Välkommen!</p>",
                "en": "<p>This winter primary school students got to suggest and vote on what kind of activities this library’s Toimintatonni-budget would be spent on. In our library the winning activity is: Movies</p><p>At the children’s request, we are starting a film club for elementary school students, which will meet on Mondays from 1:00 p.m. to 3:30 p.m. between May 4 and June 15. You can join the club at any time. You don’t have to be there right at 1:00 PM. In the club, we’ll watch movies and make our own short films and animations. No prior experience is necessary. The specific activities will be based on the participants’ wishes. Welcome!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhu2jm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}