Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 32757,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=188",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=186"
    },
    "data": [
        {
            "id": "lippupiste:20545946",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3956239/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/peter-pan-helsingin-kaupunginteatteri-20545946/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/peter-pan-helsingin-kaupunginteatteri-20545946/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/peter-pan-helsingin-kaupunginteatteri-20545946/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 1464815,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-11T21:17:17.973325Z",
                    "last_modified_time": "2025-08-11T21:17:17.973343Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/89/16/hktp-tickets_427280_3487629_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1464815/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-11T21:17:20.780722Z",
            "last_modified_time": "2025-12-09T00:15:11.597514Z",
            "date_published": null,
            "start_time": "2025-12-08T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "en": "Chickenshed London - J."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/peter-pan-3956239/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/peter-pan-3956239/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/peter-pan-3956239/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Shedin tämän vuoden joulumusikaalissa komisario Tiikerililja on saanut tutkittavakseen Kultasen perheen sisarusten omituisen katoamistapauksen. Peter Pan, joka ei halua kasvaa aikuiseksi, lentää yöllä sisään lastenhuoneen ikkunasta ja hakee lapset mukaansa ihmeelliseen Mikä-Mikä-Maahan, jossa kadonneet lapset ja merirosvot taistelevat taianomaisen satumaan herruudesta. Asioita kuitenkin sotkevat mustasukkainen keiju, kiero ja vaarallinen merirosvokapteeni Koukku, ja yksi krokotiilikin, joka tikityksen sijaan piipittää!</p><p>Chickenshed-teatterin (UK) versiosta muokattu uusi dramatisointi tuo klassikkosadun lähemmäs tätä päivää. Peter Panista tutut teemat ovat kuitenkin vahvasti läsnä: onko aikuiseksi kasvaminen oikeasti ihan niin tarpeellista kuin usein väitetään? Lapsenmielisyydellä ja lasten mielikuvituksella on aivan erityinen voima! Ja jokainen kaipaa kuitenkin henkilöä, joka pitäisi hänestä huolta.</p><p>Peter Pan on koko perheelle tarkoitettu jännittävä seikkailu, jossa koira on palkattu lapsenvahdiksi ja varjo voi vahingossa irrota omistajastaan. Ja toivottavasti esityksen jälkeen kaikki ovat oppineet, että rannalle jätettyjä vihreäsokerisia kakkuja ei kannata syödä.</p><p><br>Rooleissa: Shed-nuoret ja Helena Haaranen</p><p>Tekstin sovitus ja ohjaus: Jyri Numminen</p><p>Kapellimestari ja musiikin sovitus: Tuomas Kesälä<br>Opettajat: Hanna Nuorala, Saija-Reetta Kotirinta, Pauliina Kiuru, Moona Karhu</p><p>Lavastus: William Iles</p><p>Pukusuunnittelu: Laura Dammert</p><p>Valosuunnittelu: Teppo Saarinen</p><p>Äänisuunnittelu: Jaakko Virmavirta</p><p>Naamioinnin suunnittelu: Henri Karjalainen</p><p>Dramaturgi: Sanna Niemeläinen</p>",
                "en": "<p>Chickenshed London - J. M. Barrie<br><strong>PETER PAN</strong></p>"
            },
            "name": {
                "fi": "Peter Pan"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20545946/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20545939",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3956234/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/project-no-2191-helsingin-kaupunginteatteri-20545939/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/project-no-2191-helsingin-kaupunginteatteri-20545939/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/project-no-2191-helsingin-kaupunginteatteri-20545939/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 1464814,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-11T21:17:08.652841Z",
                    "last_modified_time": "2025-08-11T21:17:08.652861Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/ee/c7/hkt-tickets_427261_3487596_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1464814/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-11T21:17:20.359142Z",
            "last_modified_time": "2025-12-09T00:15:11.469087Z",
            "date_published": null,
            "start_time": "2025-12-08T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Helsinki Dance Company ja kansainvälisesti arvostettu unkarilainen koreografi Adrienn Hód kutsuvat yleisön ainutlaatuiselle liikkeelliselle tutkimusmatkalle ihm"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/project-no-2191-3956234/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/project-no-2191-3956234/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/project-no-2191-3956234/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p><strong>Helsinki Dance Company ja kansainvälisesti arvostettu unkarilainen koreografi Adrienn Hód kutsuvat yleisön ainutlaatuiselle liikkeelliselle tutkimusmatkalle ihmiskehoon ja -mieleen.</strong></p><p>Innovatiivisista teoksissaan tunnettu Hód haastaa kulttuuriset rajat, tavoitteenaan vapauttaa keho tabujen ja ennakkoluulojen otteesta. Näyttämö on Hódille tanssin ja dramaturgisten ratkaisujen leikkikenttä, jossa esiintyjien ja yleisön välille syntyy lukemattomia mahdollisuuksia vuorovaikutukseen sekä yhteyden rakentamiseen.</p><p>Project No. 2191 -teoksen ytimessä on esiintyjien kehoissaan kantama tieto. Pitkien ohjattujen improvisaatioharjoitusten kautta HDC:n valovoimaiset tanssijat tuovat näyttämölle omat ”keholliset arkistonsa”. Yksilölliset esiintymis- ja liikelaadut, historiat, halut ja pelot avautuvat yleisölle kysyen:</p><p>Mitä historiaa kannamme kehoissamme?</p><p>Kuinka yksilöllisiä kokemuksemme todella ovat?</p><p>Miten intohimo syntyy?</p><p>Mikä meitä ajaa eteenpäin?</p><p>Miten voimme antaa tilaa nykyhetkelle?</p><p>Teos näyttäytyy intuition ohjaamana radikaalina leikkinä, joka resonoi myös katsojan kehossa inspiroiden, haastaen ja yllättäen. Tanssijat ja luova työryhmä venyttävät tanssin rajoja ja tutkivat ihmisilmaisun syvyyksiä. Adrienn Hódin sanoin: ”Esityksessä ihmisyys tapahtuu ihmisten edessä.”</p><p>Koreografia: Adrienn Hód<br>Koreografin taiteellinen työpari: Csaba Molnár<br>Sävellys: Áron Porteleki<br>Dramaturgi: Ármin Szabó-Székely<br>Puvut yhdessä työryhmän kanssa: Laura Dammert<br>Äänimestari: Eero Niemi<br>Naamioinnin suunnittelu: Tuula Kuittinen</p>"
            },
            "name": {
                "fi": "Project No. 2191"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20545939/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp6al3hu",
            "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:agggfz65ie/?format=api"
                },
                {
                    "@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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494142,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-12-08T17:56:52.395190Z",
                    "last_modified_time": "2025-12-08T17:56:52.395205Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/fc4fdfb4-6d3f-44c2-8c38-99faf31235a8.jpg",
                    "name": "Lahjapaketti ja pakettikortteja",
                    "cropping": "214,0,1066,853",
                    "photographer_name": "",
                    "alt_text": "Lahjapaketti ja pakettikortteja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494142/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T17:14:50.631499Z",
            "last_modified_time": "2025-12-08T17:57:11.835897Z",
            "date_published": null,
            "start_time": "2025-12-14T10:00:00Z",
            "end_time": "2025-12-14T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jouluista askartelua Sellon kirjaston Pajassa sunnuntaina 14.12.2025 kello 12.00-15.00.",
                "en": "Christmas crafting at Sello Library’s Makerspace on Sunday, 14 December 2025, from 12.00 to 15.00."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule virittäytymään joulutunnelmaan sunnuntaina 14. joulukuuta klo 12.00–15.00, kun askartelemme yhdessä ihania jouluisia juttuja. Teemme muun muassa pakettikortteja ja tarroja – ja ennen kaikkea nautimme rennosta yhdessäolosta.</p><p>Tervetuloa viettämään lämminhenkistä sunnuntaita askartelun merkeissä!</p>",
                "en": "<p>Get into the holiday spirit on Sunday, 14 December from 12.00 to 15.00, as we create a variety of festive crafts together. We’ll be making gift tags, stickers and other Christmas-themed items – all in a cozy, creative atmosphere.</p><p>Welcome to spend a warm and crafty Sunday with us!</p>"
            },
            "name": {
                "fi": "Jouluista askartelua Sellon kirjaston Pajassa",
                "en": "Christmas Crafts at Sello Library’s Makerspace"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sellon kirjaston Paja",
                "en": "Sello Library Makerspace"
            },
            "provider": {
                "fi": "Espoon kaupunginkirjasto ja vapaaehtoinen",
                "en": "Espoo City Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp6al3hu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp5fkkpy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkpki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T15:02:19.222952Z",
                    "last_modified_time": "2025-12-08T15:02:19.222968Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/862f0420-0941-4398-9bd5-0b98ea3d5631.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kissa lumessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T15:07:28.423919Z",
            "last_modified_time": "2025-12-08T15:07:28.423936Z",
            "date_published": null,
            "start_time": "2026-05-27T15:00:00Z",
            "end_time": "2026-05-27T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "name": {
                "fi": "Soturikissaklubi",
                "sv": "Warriorsklubben",
                "en": "Warriors Cat Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkkpy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp5fklfy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkpki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T15:02:19.222952Z",
                    "last_modified_time": "2025-12-08T15:02:19.222968Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/862f0420-0941-4398-9bd5-0b98ea3d5631.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kissa lumessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T15:07:28.279271Z",
            "last_modified_time": "2025-12-08T15:07:28.279288Z",
            "date_published": null,
            "start_time": "2026-05-13T15:00:00Z",
            "end_time": "2026-05-13T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "name": {
                "fi": "Soturikissaklubi",
                "sv": "Warriorsklubben",
                "en": "Warriors Cat Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fklfy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp5fkltq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkpki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T15:02:19.222952Z",
                    "last_modified_time": "2025-12-08T15:02:19.222968Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/862f0420-0941-4398-9bd5-0b98ea3d5631.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kissa lumessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T15:07:28.131182Z",
            "last_modified_time": "2025-12-08T15:07:28.131199Z",
            "date_published": null,
            "start_time": "2026-04-29T15:00:00Z",
            "end_time": "2026-04-29T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "name": {
                "fi": "Soturikissaklubi",
                "sv": "Warriorsklubben",
                "en": "Warriors Cat Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkltq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp5fkl7y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkpki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T15:02:19.222952Z",
                    "last_modified_time": "2025-12-08T15:02:19.222968Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/862f0420-0941-4398-9bd5-0b98ea3d5631.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kissa lumessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T15:07:27.976300Z",
            "last_modified_time": "2025-12-08T15:07:27.976317Z",
            "date_published": null,
            "start_time": "2026-04-15T15:00:00Z",
            "end_time": "2026-04-15T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "name": {
                "fi": "Soturikissaklubi",
                "sv": "Warriorsklubben",
                "en": "Warriors Cat Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkl7y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp5fkmna",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkpki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T15:02:19.222952Z",
                    "last_modified_time": "2025-12-08T15:02:19.222968Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/862f0420-0941-4398-9bd5-0b98ea3d5631.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kissa lumessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T15:07:27.819234Z",
            "last_modified_time": "2025-12-08T15:07:27.819250Z",
            "date_published": null,
            "start_time": "2026-04-01T15:00:00Z",
            "end_time": "2026-04-01T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "name": {
                "fi": "Soturikissaklubi",
                "sv": "Warriorsklubben",
                "en": "Warriors Cat Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkmna/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp5fkm2e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkpki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T15:02:19.222952Z",
                    "last_modified_time": "2025-12-08T15:02:19.222968Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/862f0420-0941-4398-9bd5-0b98ea3d5631.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kissa lumessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T15:07:27.665157Z",
            "last_modified_time": "2025-12-08T15:07:27.665174Z",
            "date_published": null,
            "start_time": "2026-03-18T16:00:00Z",
            "end_time": "2026-03-18T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "name": {
                "fi": "Soturikissaklubi",
                "sv": "Warriorsklubben",
                "en": "Warriors Cat Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkm2e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp5fknh4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkpki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T15:02:19.222952Z",
                    "last_modified_time": "2025-12-08T15:02:19.222968Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/862f0420-0941-4398-9bd5-0b98ea3d5631.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kissa lumessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T15:07:27.514315Z",
            "last_modified_time": "2025-12-08T15:07:27.514332Z",
            "date_published": null,
            "start_time": "2026-03-04T16:00:00Z",
            "end_time": "2026-03-04T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "name": {
                "fi": "Soturikissaklubi",
                "sv": "Warriorsklubben",
                "en": "Warriors Cat Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fknh4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp5fknvq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkpki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T15:02:19.222952Z",
                    "last_modified_time": "2025-12-08T15:02:19.222968Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/862f0420-0941-4398-9bd5-0b98ea3d5631.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kissa lumessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T15:07:27.359534Z",
            "last_modified_time": "2025-12-08T15:07:27.359553Z",
            "date_published": null,
            "start_time": "2026-02-18T16:00:00Z",
            "end_time": "2026-02-18T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "name": {
                "fi": "Soturikissaklubi",
                "sv": "Warriorsklubben",
                "en": "Warriors Cat Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fknvq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp5fkoca",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkpki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T15:02:19.222952Z",
                    "last_modified_time": "2025-12-08T15:02:19.222968Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/862f0420-0941-4398-9bd5-0b98ea3d5631.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kissa lumessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T15:07:27.199039Z",
            "last_modified_time": "2025-12-08T15:07:27.199055Z",
            "date_published": null,
            "start_time": "2026-02-04T16:00:00Z",
            "end_time": "2026-02-04T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "name": {
                "fi": "Soturikissaklubi",
                "sv": "Warriorsklubben",
                "en": "Warriors Cat Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkoca/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp5fkop4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkpki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T15:02:19.222952Z",
                    "last_modified_time": "2025-12-08T15:02:19.222968Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/862f0420-0941-4398-9bd5-0b98ea3d5631.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kissa lumessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T15:07:27.045869Z",
            "last_modified_time": "2025-12-08T15:07:27.045885Z",
            "date_published": null,
            "start_time": "2026-01-21T16:00:00Z",
            "end_time": "2026-01-21T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "name": {
                "fi": "Soturikissaklubi",
                "sv": "Warriorsklubben",
                "en": "Warriors Cat Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkop4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp5fko4y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkpki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T15:02:19.222952Z",
                    "last_modified_time": "2025-12-08T15:02:19.222968Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/862f0420-0941-4398-9bd5-0b98ea3d5631.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kissa lumessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T15:07:26.885033Z",
            "last_modified_time": "2025-12-08T15:07:26.885051Z",
            "date_published": null,
            "start_time": "2026-01-07T16:00:00Z",
            "end_time": "2026-01-07T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "name": {
                "fi": "Soturikissaklubi",
                "sv": "Warriorsklubben",
                "en": "Warriors Cat Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fko4y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp5fkpki",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkkpy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fklfy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkltq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkl7y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkmna/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkm2e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fknh4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fknvq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkoca/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkop4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fko4y/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494138,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T15:02:19.222952Z",
                    "last_modified_time": "2025-12-08T15:02:19.222968Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/862f0420-0941-4398-9bd5-0b98ea3d5631.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kissa lumessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-08T15:07:25.513195Z",
            "last_modified_time": "2025-12-08T15:07:25.513226Z",
            "date_published": null,
            "start_time": "2026-01-07T16:00:00Z",
            "end_time": "2026-05-27T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "name": {
                "fi": "Soturikissaklubi",
                "sv": "Warriorsklubben",
                "en": "Warriors Cat Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp5fkpki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66302",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1211035,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-08T12:12:48.122018Z",
                    "last_modified_time": "2025-07-08T12:12:48.122031Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773298.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1211035/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-08T12:12:48.061691Z",
            "last_modified_time": "2025-12-08T14:13:33.260530Z",
            "date_published": null,
            "start_time": "2025-12-12T14:30:00Z",
            "end_time": "2025-12-12T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suuren suosion saavuttanut koko perheen AnnanHouse -diskotapahtuma valtaa jälleen Annantalon!",
                "sv": "Det enormt populära discoevenemanget för hela familjen, AnnanHouse, övertar Annegården igen!",
                "en": "The highly popular AnnanHouse disco event for the whole family will once again take over Annantalo!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/22F9F18E3047E80AFC48921D87884806/AnnanHouse_Disko_Huurre_ja_jaa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/22F9F18E3047E80AFC48921D87884806/AnnanHouse_Disco_Rimfrost_och_is",
                "en": "http://www.annantalo.fi/en/events/event/22F9F18E3047E80AFC48921D87884806/AnnanHouse_Disco_Frost_and_ice"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttanut koko perheen AnnanHouse -diskotapahtuma valtaa jälleen Annantalon!</p><p>AnnanHouse on elektronisen tanssimusiikin erikoistapahtuma, joka tutustuttaa kävijät diskokulttuurin maailmaan. Tämänkertaisen diskon teemana on huurre ja jää. Tule näyttämään viileimmät tanssiliikkeesi ja jäätävän upeat askelkuviosi. Voit pukeutua teeman mukaisella tyylillä tai hakea Annantalon pukulainaamosta sopivan asun diskoiltaan.</p><p>Musiikista vastaa Annantalon oma dj Nicolas Sebastien, joka tarjoilee huippumusiikkia housesta discoon. Diskoillan aikana voit myös hypätä tanssituokioihin, piipahtaa avoimissa teemaan sopivissa taidetyöpajoissa ja tavata Lumikuningatar ja Jääprinsessa.</p><p><b>Aikataulu</b><br> klo 16.30  Pukulainaamo KUURA aukeaa ja työpajat käynnistyvät.<br> klo 16.30-18.30 Lumikuningattaren ja Jääprinsessan meet&greet<br> klo 17.00 Diskon ovet aukeavat.<br> klo 17.15 ja 18.45 Fiona Fiouh’n (lausutaan Fiuun) tanssituokio ja muut diskohahmot mukana<br> klo 19.30 Diskon ovet sulkeutuvat ja työpajat päättyvät<br> Diskoillan päätteeksi Lumiukko johdattelee diskokansan Annantalon etupihalle</p><p>Työpajat klo 16.30–19.30:</p><p>Talvinen taikasauva <br> Taikasauvatyöpajassa voit tehdä ja koristella juuri sinun taikoihisi sopivan taikasauvan. Millainen taikasauva sinua kutsuu? Onko se lumisen kimalteleva, hopeisen häkäisevä, jäätävän upea vai talviyön tummien taikojen loihtija? Ilmassa on taikaa – tervetuloa!<br> Työpajan toteuttavat Annantalon taidekasvattajat</p><p>Lumipalloilua-aistileikkitila  <br> Talvi tupsahti leikkitilaan! Pujahda lumenvalkoiseen majaan, kurkkaa mitä löytyy lumipallon sisältä, tunnustele, pyörittele ja oleile. Vai istahdatko kesäkeitaaseen värikkäiden pallojen keskelle?<br> Lumipalloilua-tila johdattaa pikkuväen talventuntuiseen tunnelmaan. Majojen ja pallojen lomassa saa lokoilla ja lököillä, tutkia aistikoreja tai ottaa hetken levähdysleikin.<br> Aistileikkitilan inspirointi ja toteutus: Runoropinoita eli Ulla-Maija Vanhala<br> <br>Savimaalaustyöpaja  <br> Tule kokeilemaan maalaamista saviväreillä. Voit maalata oman kortin tai jättää talviterveisesi yhteiseen teokseen. Savimaalit ovat luonnonmukaisia ja myrkyttömiä. Työpajan toteuttaa Savimestari Suveka Kymäläinen<br> <br>Disco-tontun kierrätyskorutyöpaja <br>Tule valmistamaan riemukkaan iloisen Disco-tontun vaatteeseen kiinnitettävä asuste kierrätysmateriaaleista. Valmistamasi pukukorun voit kiinnittää vaatteeseesi ja näin voit säkenöidä tanssin pyörteissä nyt ja läpi talven. Korutyöpajan toteuttaa Marja Koskela<br> <br>Säihkyvät kasvoglitterit <br>Tule hakemaan talven pimeyteen kimallusta! Pyydä itsellesi värikäs ja säihkyvä glittermeikki tai kimmeltävä glittertatuointi. Kimalluksen kasvoillesi loihtii Glitternistit. Kaikki säihke syntyy ekoglitterillä.</p><p>Lumikuningattaren ja jääprinsessan Meet&Greet <br>Tule tapaamaan saduista tutut jään kuninkaalliset ikimuistoisessa tapaamisessa klo 16.30-18.30. Saat tapaamisesta muistoksi kortin nimikirjoituksilla.</p><p>Viimeiset osallistujat otetaan sisään työpajoihin klo 19.15.<br>  <br>Vapaa pääsy, ei ennakkoilmoittautumista.  <br> <br>Diskossa käytetään teatterisavua ja vilkkuvia valoja. Tarjolla on kuulosuojaimia.</p><p>Työpajat ohjataan pääosin suomeksi ja englanniksi. Kaikki ovat tervetulleita kielestä ja kielitaidosta riippumatta. <br> <br>Nähdään tanssilattialla!</p>",
                "sv": "<p>Det enormt populära discoevenemanget för hela familjen, AnnanHouse, övertar Annegården igen!</p><p>AnnanHouse är ett speciellt evenemang med elektronisk dansmusik där besökarna får bekanta sig med discokulturens värld.</p><p>Temat för detta disco är Rimfrost och is. Kom och visa oss dina häftigaste danssteg och supercoola stegsekvenser. Du kan klä dig enligt tema eller söka en till discokvällen lämplig klädsel från Annegårdens kostymutlåning.</p><p>För musiken står Annegårdens egen dj Nicolas Sebastien, som bjuder på allt från house till disco. Under discokvällen kan du också delta i dansstunder, besöka öppna konstworkshoppar som passar temat och delta i en utställningsguidning. Under discokvällen kan du också dansa, ta del av öppna konstverkstäder som passar till temat och träffa Snödrottningen och Isprinsessan.</p><p><b>Tidtabell</b><br> kl. 16.30 Kostymutlåningen KUURA öppnar och verkstäderna drar igång.<br> kl. 16.30–18.30 Meet & Greet med Snödrottningen och Isprinsessan<br> kl. 17.00 Discot öppnar sina dörrar.<br> kl. 17.15 och 18.45 Dans med Fiona Fiouh (utalas Fiuu) och andra discokaraktärer<br> kl. 19.30 Discot stänger sina dörrar och verkstäderna avslutas<br> Som avslutning på discokvällen leder Snögubben discofolket ut på Annegårdens gård</p><p><b>Verkstäder kl. 16.30–19.30:</b><br> De sista deltagarna tas emot till verkstäderna kl. 19.15.<br><b>Vintrig trollstav</b> <br> I trollstavsverkstaden kan du göra och dekorera en trollstav som passar till just din magi. Hurdan trollstav kallar på dig? Glittrar den av snö, skimrar den av silver, är den isigt vacker eller skapar den mörk vinternattsmagi? Det är något magiskt i luften – välkommen!<br> Verkstaden leds av Annegårdens konstpedagoger</p><p><b>Snöbolls- och sinneslekplats</b> <br> Vintern har kommit till lekrummet! Här kan du slinka in i en snövit hydda, kolla vad som finns inne i snöbollen, känna, rulla och bara vara. Eller kanske du vill slå dig ner i en sommaroas bland färgglada bollar?<br> Snöbollsrummet bjuder på vinterstämning för de minsta. Bland kojorna och bollarna kan man ha skoj, utforska sinneskorgar och ta en vilopaus.<br> Inspiration och förverkligande av sinneslekrummet: Runoropinoita, alltså Ulla-Maija Vanhala<br> <br><b>Lermålningsverkstad</b><br> Kom och prova på att måla med lerfärger. Du kan måla ett eget kort eller lämna en vinterhälsning på ett gemensamt verk. Lerfärgerna är naturliga och giftfria. Verkstaden leds av lermästaren Suveka Kymäläinen<br> <br><b>Discotomtens verkstad för återvunna smycken</b> <br> Kom med och gör en accessoar till den glada Discotomtens kläder av återvunnet material. Du kan fästa dräktsmycket som du gjort vid dina kläder och glittra i dansens virvlar nu och hela vintern. Smyckesverkstaden leds av Marja Koskela<br> <br><b>Tindrande ansiktsglitter</b> <br> Kom med och glittra i vintermörkret! Du kan få en färgglad och gnistrande glittersminkning eller en skimrande glittertatuering. Glitternistit får dig att glittra. Allt glitter som används är ekoglitter.</p><p><b>Meet & Greet med Snödrottningen och Isprinsessan</b><br> Kom och träffa sagornas vinterkungligheter vid ett oförglömligt evenemang kl. 16.30–18.30. Du får ett signerat kort som minne av mötet.</p><p>Fritt inträde, ingen förhandsanmälan krävs. <br> <br>På discot används teaterrök och blinkande lampor. Hörselskydd finns tillgängliga. Workshopparna hålls huvudsakligen på finska och engelska. Alla är välkomna, oavsett språk och språkkunskaper. <br> <br>Vi ses på dansgolvet!</p>",
                "en": "<p>The highly popular AnnanHouse disco event for the whole family will once again take over Annantalo!</p><p>AnnanHouse is a special electronic dance music event that introduces visitors to the world of disco culture. The theme of this year's disco is frost and ice (huurre ja jää). Come and show off your coolest dance moves and frostiest steps. You can dress in the style of the theme or pick up an outfit from Annantalo's wardrobe for the disco party.</p><p>Annantalo’s own DJ Nicolas Sebastien will be in charge of the music, spinning top records from house to disco. During the night, you can join dance sessions, pop by open art workshops in the theme of the event and take guided tours of the exhibition.</p><p>During the disco night, you can join dance sessions, pop by open art workshops matching the theme of the event and meet the Snow Queen and Ice Princess.</p><p><b>Schedule</b><br> 16.30 Pukulainaamo KUURA for borrowing outfits is opened and the workshops start.<br> 16.30–18.30 Meet & greet with the Snow Queen and Ice Princess.<br> 17.00 The doors to the disco are opened.<br> 17.15 and 18.45 Dance session with Fiona Fiouh (pronounced Feou) and other disco characters.<br> 19.30 The disco closes and the workshops end.<br> At the end of the disco night, the Snowman will lead the disco crowd to the front yard of Annantalo.</p><p><b>Workshops 16.30–19.30:</b><br> Last entry to the workshops is at 19.15.<br><b>Winter magic wand</b> <br> In the magic wand workshop, you can make and decorate a magic wand that suits your magic. What kind of magic wand is calling out to you? Does it have a snowy sparkle, a silver glow or an icy beauty, or does it conjure up the dark magic of winter nights? There is magic in the air – join us!<br> The workshop is organised by Annantalo’s art educators.</p><p><b>Snowball sensory playground</b> <br> Winter has arrived at the playground! Slip into a snow-white hut, see what is inside a snowball, feel around, roll balls, and hang out. Or will you sit down in the summer oasis, among colourful balls?<br> The Snowball playground allows children to immerse themselves in a wintery atmosphere. Children can lay down and relax among the huts and balls, explore the sensory boxes, or take a moment to rest.<br> The sensory playground is inspired and organised by Runoropinoita, i.e. Ulla-Maija Vanhala.<br> <br><b>Clay painting workshop</b><br> Come and try painting with clay colours. You can paint your own card or leave your winter greetings in a collective work. The clay paints are natural and non-toxic. The workshop is organised by master clay artist Suveka Kymäläinen.<br> <br><b>A disco elf’s upcycled jewellery workshop</b> <br> Come and make an accessory from recycled materials for the outfit of a cheerful disco elf. You can attach the piece of costume jewellery you make to your clothes and shine away when dancing now and through the winter. The jewellery workshop is organised by Marja Koskela.<br> <br><b>Sparkly face glitter</b> <br> Come and find sparkle in the winter darkness! Ask for colourful and sparkly glitter make-up or a glistening glitter tattoo. Glitter service Glitternistit will make the sparkly magic happen. All of the glitter used is eco-friendly.</p><p><b>Meet & greet with the Snow Queen and Ice Princess </b><br> Come and meet the royalty of the ice from fairy tales at an unforgettable meet & greet session from 16.30 to 18.30. You will receive an autographed card as a memento.</p><p>Free entry, no advance registration. <br> <br>The disco will feature fog machines and flashing lights. Ear defenders will be available. The workshops will mostly be held in Finnish and English. Everyone is welcome, regardless of language and language skills. <br> <br>See you on the dance floor!</p>"
            },
            "name": {
                "fi": "AnnanHouse Disko: Huurre ja jää",
                "sv": "AnnanHouse Disco: Rimfrost och is",
                "en": "AnnanHouse Disco: Frost and ice"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66302/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67323",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494135,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T13:13:55.195196Z",
                    "last_modified_time": "2025-12-08T13:13:55.195211Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780961.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494135/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T13:13:55.081261Z",
            "last_modified_time": "2025-12-08T13:13:55.333633Z",
            "date_published": null,
            "start_time": "2026-01-10T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/01920257D12CC9C7B29DAAEC69B0D5AE/Supermarsu_ja_suuri_huijaus_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/01920257D12CC9C7B29DAAEC69B0D5AE/Supermarsu_ja_suuri_huijaus_S_",
                "en": "http://www.malmitalo.fi/en/events/event/01920257D12CC9C7B29DAAEC69B0D5AE/Supermarsu_ja_suuri_huijaus_S_"
            },
            "description": {
                "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Supermarsu ja suuri huijaus (S) – Kino Helios",
                "sv": "Supermarsu ja suuri huijaus (S) – Kino Helios",
                "en": "Supermarsu ja suuri huijaus (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67323/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67317",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494134,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T13:13:54.424744Z",
                    "last_modified_time": "2025-12-08T13:13:54.424765Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780952.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494134/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T13:13:54.319108Z",
            "last_modified_time": "2025-12-08T13:13:54.558632Z",
            "date_published": null,
            "start_time": "2026-01-03T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F11344D54910D8FCA32C6BF303C7E613/Supermarsu_ja_suuri_huijaus",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F11344D54910D8FCA32C6BF303C7E613/Supermarsu_ja_suuri_huijaus",
                "en": "http://www.malmitalo.fi/en/events/event/F11344D54910D8FCA32C6BF303C7E613/Supermarsu_ja_suuri_huijaus"
            },
            "description": {
                "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Supermarsu ja suuri huijaus – Kino Helios",
                "sv": "Supermarsu ja suuri huijaus – Kino Helios",
                "en": "Supermarsu ja suuri huijaus – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67317/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67310",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494133,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T13:13:54.029400Z",
                    "last_modified_time": "2025-12-08T13:13:54.029413Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780921.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494133/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T13:13:53.877908Z",
            "last_modified_time": "2025-12-08T13:13:54.190422Z",
            "date_published": null,
            "start_time": "2026-01-02T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FDEE7839771FE50ACC9DCA6BE167512F/Supermarsu_ja_suuri_huijaus",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/FDEE7839771FE50ACC9DCA6BE167512F/Supermarsu_ja_suuri_huijaus",
                "en": "http://www.malmitalo.fi/en/events/event/FDEE7839771FE50ACC9DCA6BE167512F/Supermarsu_ja_suuri_huijaus"
            },
            "description": {
                "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Supermarsu ja suuri huijaus – Kino Helios",
                "sv": "Supermarsu ja suuri huijaus – Kino Helios",
                "en": "Supermarsu ja suuri huijaus – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67310/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:6c5ec27a-acc4-4b3d-a9a8-f8cc07e6a23b",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p2433/?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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Mirkka_testi_8124219197441"
                    },
                    "description": {
                        "fi": "lapset 6€ oman haravan kanssa"
                    },
                    "price": {
                        "fi": "lapset 6€/aikuiset 10€"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1494132,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-12-08T12:55:57.748510Z",
                    "last_modified_time": "2025-12-08T12:55:57.748535Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/f007fd2d-96bf-f011-bbd3-7ced8d7302b4",
                    "name": "tervetuloa",
                    "cropping": "",
                    "photographer_name": "Mirkka Saari",
                    "alt_text": "kuvassa tie ja aurinko",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494132/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-08T12:55:59.745541Z",
            "last_modified_time": "2025-12-08T12:55:59.745581Z",
            "date_published": "2025-12-08T12:45:11Z",
            "start_time": "2025-12-22T08:00:00Z",
            "end_time": "2025-12-23T14: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": "2025-12-15T08:00:00+02:00",
            "enrolment_end_time": "2025-12-22T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Haravointia kaikille"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Haravointia kaikille osallistuville</p></div>"
            },
            "name": {
                "fi": "Mirkka testi 8.12."
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sitratori"
            },
            "provider": {
                "fi": "Kanneltalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6c5ec27a-acc4-4b3d-a9a8-f8cc07e6a23b/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}