Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 7049,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=63",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=61"
    },
    "data": [
        {
            "id": "espoo_le:agocq23w5q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-13T10:15:33.026588Z",
            "last_modified_time": "2025-11-13T10:15:33.026607Z",
            "date_published": null,
            "start_time": "2025-11-30T09:00:00Z",
            "end_time": "2025-11-30T10: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,
            "provider": {
                "fi": "POC-lukupiiri",
                "sv": "POC- läscircel",
                "en": "POC reading circle"
            },
            "short_description": {
                "fi": "Tervetuloa Sellon kirjastoon \ntutustumaan yhdessä moninaisiin lasten- ja nuortenkirjoihin, \njoissa näkyy mustia ja ruskeita lapsia ja perheitä. ",
                "sv": "Ta med hela familjen till Sello Biblioteket för att utforska ett brett utbud av barn- och ungdomsböcker med svarta och bruna barn och familjer. ",
                "en": "Bring the whole family to Sello Library to explore a wide range of children's and young adult books featuring black and brown children and families. "
            },
            "description": {
                "fi": "<p>Tapahtuma on maksuton ja ihan kaikille avoin!&nbsp;</p><p>Tarjolla on myös pientä purtavaa.&nbsp;</p><p>POC-lukupiirin Aracelis ja Téri saapuvat Sellon kirjaston&nbsp;</p><p>Lastenmaan Jaminurkkaan jakamaan perheille kirjavinkkejä POCkirjailijoilta&nbsp;( POC = People of Color =&nbsp;</p><p>mustat ja ruskeat ihmiset&nbsp;)</p><p>ja lukemaan ääneen lastenkirjoja.&nbsp;</p><p>Tervetuloa koko perheen voimin on Sellon kirjastoon&nbsp;</p><p>tutustumaan yhdessä moninaisiin lasten- ja nuortenkirjoihin,&nbsp;</p><p>joissa näkyy mustia ja ruskeita lapsia ja perheitä&nbsp;</p><p>POC-lukupiiri pyrkii nostamaan POC-kirjailijoiden teoksia esiin ja&nbsp;</p><p>vaikuttamaan siihen, että saisimme nauttia monimuotoisemmasta&nbsp;</p><p>representaatiosta kirjallisuudessa.&nbsp;</p><p>Tapahtumassa pääsee selailemaan ja lainaamaan kotiin lasten- ja&nbsp;</p><p>nuortenkirjoja, joissa seikkailee mustia ja ruskeita hahmoja!</p><p><br></p>",
                "sv": "<p>Ta med hela familjen till Sello Biblioteket för att utforska ett brett utbud av barn- och ungdomsböcker med svarta och bruna barn och familjer.&nbsp;</p>",
                "en": "<p>Bring the whole family to Sello Library to explore a wide range of children's and young adult books featuring black and brown children and families.&nbsp;</p><p>The POC ( People of color) reading circle aims to highlight the works of POC authors and influence the literature world to offer more diverse representation.</p><p>At the event, you can browse and borrow children's and young adult books featuring black and brown characters!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "POC-lukupiirin lukuhetki  lapsiperheille ",
                "sv": "POC-läscirkel för familjer med barn ",
                "en": "POC reading circle reading time for families with children "
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23w5q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agncxi2fzi",
            "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:p11406/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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:agncxi2glq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491217,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-28T15:11:22.134895Z",
                    "last_modified_time": "2025-10-28T15:11:22.134911Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "lapsia tekemässä läksyjä yhdessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-28T15:22:31.965426Z",
            "last_modified_time": "2025-11-13T08:01:25.646202Z",
            "date_published": null,
            "start_time": "2025-11-18T13:30:00Z",
            "end_time": "2025-11-18T14: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,
            "provider": null,
            "short_description": {
                "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!",
                "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.",
                "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!"
            },
            "description": {
                "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>",
                "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>",
                "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Kirjastokerho",
                "sv": "Biblioteksklubb",
                "en": "Library club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2fzi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agncxi2fti",
            "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:p11406/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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:agncxi2glq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491217,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-28T15:11:22.134895Z",
                    "last_modified_time": "2025-10-28T15:11:22.134911Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "lapsia tekemässä läksyjä yhdessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-28T15:22:32.290902Z",
            "last_modified_time": "2025-11-13T08:01:25.590728Z",
            "date_published": null,
            "start_time": "2025-11-25T13:30:00Z",
            "end_time": "2025-11-25T14: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,
            "provider": null,
            "short_description": {
                "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!",
                "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.",
                "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!"
            },
            "description": {
                "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>",
                "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>",
                "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Kirjastokerho",
                "sv": "Biblioteksklubb",
                "en": "Library club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2fti/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agncxi2fnm",
            "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:p11406/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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:agncxi2glq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491217,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-28T15:11:22.134895Z",
                    "last_modified_time": "2025-10-28T15:11:22.134911Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "lapsia tekemässä läksyjä yhdessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-28T15:22:32.519867Z",
            "last_modified_time": "2025-11-13T08:01:25.537672Z",
            "date_published": null,
            "start_time": "2025-12-02T13:30:00Z",
            "end_time": "2025-12-02T14: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,
            "provider": null,
            "short_description": {
                "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!",
                "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.",
                "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!"
            },
            "description": {
                "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>",
                "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>",
                "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Kirjastokerho",
                "sv": "Biblioteksklubb",
                "en": "Library club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2fnm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agncxi2fhq",
            "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:p11406/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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:agncxi2glq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491217,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-28T15:11:22.134895Z",
                    "last_modified_time": "2025-10-28T15:11:22.134911Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "lapsia tekemässä läksyjä yhdessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-28T15:22:32.782744Z",
            "last_modified_time": "2025-11-13T08:01:25.485475Z",
            "date_published": null,
            "start_time": "2025-12-09T13:30:00Z",
            "end_time": "2025-12-09T14: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,
            "provider": null,
            "short_description": {
                "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!",
                "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.",
                "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!"
            },
            "description": {
                "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>",
                "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>",
                "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Kirjastokerho",
                "sv": "Biblioteksklubb",
                "en": "Library club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2fhq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agncxi2fb4",
            "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:p11406/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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:agncxi2glq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491217,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-28T15:11:22.134895Z",
                    "last_modified_time": "2025-10-28T15:11:22.134911Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "lapsia tekemässä läksyjä yhdessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-28T15:22:32.935757Z",
            "last_modified_time": "2025-11-13T08:01:25.435310Z",
            "date_published": null,
            "start_time": "2025-12-16T13:30:00Z",
            "end_time": "2025-12-16T14: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,
            "provider": null,
            "short_description": {
                "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!",
                "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.",
                "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!"
            },
            "description": {
                "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>",
                "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>",
                "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Kirjastokerho",
                "sv": "Biblioteksklubb",
                "en": "Library club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2fb4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agncxi2e4a",
            "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:p11406/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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:agncxi2glq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491217,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-28T15:11:22.134895Z",
                    "last_modified_time": "2025-10-28T15:11:22.134911Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "lapsia tekemässä läksyjä yhdessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-28T15:22:33.082513Z",
            "last_modified_time": "2025-11-13T08:01:25.383153Z",
            "date_published": null,
            "start_time": "2026-01-13T13:30:00Z",
            "end_time": "2026-01-13T14: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,
            "provider": null,
            "short_description": {
                "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!",
                "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.",
                "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!"
            },
            "description": {
                "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>",
                "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>",
                "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Kirjastokerho",
                "sv": "Biblioteksklubb",
                "en": "Library club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2e4a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:dbb3a64f-e47b-4f79-aa07-c10bd995e648",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=LE_Kuvatestausta_111125_EK2609131549"
                    },
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1493780,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-12T07:13:04.947986Z",
                    "last_modified_time": "2025-11-12T07:13:04.948000Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/f007fd2d-96bf-f011-bbd3-7ced8d7302b4",
                    "name": "Puu",
                    "cropping": "",
                    "photographer_name": "Testi testaaja",
                    "alt_text": "Puu ja aurinko",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493780/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-11-11T10:58:53.997916Z",
            "last_modified_time": "2025-11-12T14:20:27.269652Z",
            "date_published": "2025-11-11T10:49:52Z",
            "start_time": "2025-11-14T09:00:00Z",
            "end_time": "2025-11-14T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 100,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-11-14T08:00:00+02:00",
            "enrolment_end_time": "2025-11-14T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Annantalo (KYMP)",
                "sv": "Annantalo (KYMP)"
            },
            "short_description": {
                "fi": "Lyhyt kuvaus",
                "sv": "Kuvaus SV"
            },
            "description": {
                "fi": "<div><p>Tarkka kuvaus tässä&nbsp;</p></div>",
                "sv": "<div><p>Tarkka kuvaus SV</p></div>"
            },
            "info_url": null,
            "name": {
                "fi": "LE Kuvatestausta 11.11.25 EK",
                "sv": "SV Otsikko"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:dbb3a64f-e47b-4f79-aa07-c10bd995e648/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnhpunbhq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@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-11-12T10:23:07.169018Z",
            "last_modified_time": "2025-11-12T10:23:07.169036Z",
            "date_published": null,
            "start_time": "2025-11-29T12:00:00Z",
            "end_time": "2025-11-29T15: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,
            "provider": null,
            "short_description": {
                "fi": "Tutustu meksikolaiseen perinteeseen!",
                "en": "Discover the beauty of Mexican traditions"
            },
            "description": {
                "fi": "<p>Tule mukaan värikkääseen ja lämminhenkiseen Kuolleiden Päivän juhlaan!</p><p>Tutustu meksikolaiseen perinteeseen, joka juhlistaa elämää, muistoja ja rakkautta käsitöiden ja tarinoiden kautta.</p><p>&nbsp;Ohjelma:</p><p>14:00–14:10 Tervetulosanat ja esittely</p><p>14:10–15:30 Työpaja: Tee oma Kuolleiden Päivän alttari ja paperisia kehäkukkia</p><p>15:40–17:00 Elokuvanäytös: Coco (2017)</p><p>&nbsp;✨ Vapaa pääsy | Koko perheen tapahtuma | Sopii kaikenikäisille ✨</p><p>&nbsp;Yhteistyössä:</p><p>KulttuuriEspoo | Espoon kaupunki | Meksikon suurlähetystö Suomessa | HELMET-kirjastot</p>",
                "en": "<p>Join us for a colourful and heartwarming Day of the Dead celebration!</p><p> Discover the beauty of Mexican traditions through crafts, colours, and stories that honour life and memory.</p><p>&nbsp;Program:</p><p> 14:00–14:10 Welcome and introduction</p><p> 14:10–15:30 Workshop: Create your own Day of the Dead altar and paper marigold flowers</p><p> 15:40–17:00 Movie screening: Coco (2017)</p><p>&nbsp;Free entry | Family event | Suitable for all ages</p><p>&nbsp;In collaboration with:</p><p> KulttuuriEspoo | City of Espoo | Embassy of Mexico in Finland | HELMET Libraries</p><p>&nbsp;💀 Come and experience an afternoon full of colour, creativity, and cultural joy!</p><p> Bring your family and friends — everyone is welcome! 🌼</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Kuolleiden Päivän juhla",
                "en": "Day of the Dead Celebration"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhpunbhq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnfteh7oe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-11-06T14:16:42.483808Z",
            "last_modified_time": "2025-11-12T08:29:06.028710Z",
            "date_published": null,
            "start_time": "2025-11-22T09:00:00Z",
            "end_time": "2025-11-22T14:15: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,
            "provider": {
                "fi": "Musiikkikoulu Demo",
                "sv": "Musiikkikoulu Demo",
                "en": "Musiikkikoulu Demo"
            },
            "short_description": {
                "fi": "Musiikkikoulu Demon syksyisessä matineapäivässä kuullaan laulu- ja piano-oppilaiden valmistelemia esityksiä. ",
                "sv": "Matinéer med av sång- och pianostudenter ",
                "en": "Students’ matinees by singing and piano students"
            },
            "description": {
                "fi": "<p><strong>Musiikkikoulu Demon oppilaskonsertit&nbsp;la 22.11.</strong></p><p>Musiikkikoulu Demon&nbsp;syksyisessä&nbsp;matineapäivässä kuullaan&nbsp;laulu- ja&nbsp;piano-oppilaiden valmistelemia esityksiä. Matineat alkavat klo 11, klo 12.30, klo 14&nbsp;sekä&nbsp;klo 15.30&nbsp;ja kestävät noin&nbsp;45&nbsp;min. Tervetuloa kuuntelemaan!&nbsp;&nbsp;</p><p><br></p><p><a href=\"https://musiikkikouludemo.fi/ \">Musiikkikoulu Demo tarjoaa opetusta kaikenikäisille.</a></p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p><strong>Musikskolan Demos elevkonserter</strong></p><p>Under Musikskolan Demos höstmatinédag får vi höra sång- och pianostudenter förberedda uppträdanden. Matinéerna börjar kl. 11, 12.30, 14 och 15.30 och varar cirka 45 minuter. Välkommen att lyssna!</p><p><a href=\"https://musiikkikouludemo.fi\">Musikskolan Demo erbjuder undervisning för alla åldrar. </a></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p><strong>Demo Music School Student Concerts</strong></p><p>During Demo Music School’s autumn matinee day, you’ll hear performances prepared&nbsp;by singing and piano students. The matinees begin at 11, 12:30, 14, and 15:30, each lasting about 45 minutes. Welcome to listen!</p><p><a href=\"https://musiikkikouludemo.fi\">Demo Music School offers lessons for all ages. </a></p><p><br></p><p>#HelloEspoo</p>"
            },
            "info_url": {
                "fi": "https://musiikkikouludemo.fi/",
                "sv": "https://musiikkikouludemo.fi/",
                "en": "https://musiikkikouludemo.fi/"
            },
            "name": {
                "fi": "Musiikkikoulu Demon oppilaskonsertit",
                "sv": "Elevkonsert med musikskolan Demo",
                "en": "Student concert by Demo Music School"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Estradi",
                "sv": "Estradi",
                "en": "Estradi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfteh7oe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66301",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1201889,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T08:17:45.550061Z",
                    "last_modified_time": "2025-07-07T08:17:45.550079Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773287.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1201889/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T08:17:45.448146Z",
            "last_modified_time": "2025-11-11T14:13:26.201289Z",
            "date_published": null,
            "start_time": "2025-11-22T09:00:00Z",
            "end_time": "2025-11-22T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tässä tapahtumassa toteutetaan lasten toiveet! Tule mukaan juhlimaan Lapsen oikeuksien viikkoa Annantalolle.",
                "sv": "Under det här evenemanget uppfyller vi barnens drömmar! Kom med och fira barnrättsveckan på Annegården.",
                "en": "This event makes children’s wishes come true! Come and celebrate the Children’s Rights Week at Annantalo."
            },
            "description": {
                "fi": "<p>Tässä tapahtumassa toteutetaan lasten toiveet! Tule mukaan juhlimaan Lapsen oikeuksien viikkoa Annantalolle.</p><p>Lasten oma päivä rakentuu erilaisista työpajoista ja ohjelmanumeroista, joita lapset ovat itse toivoneet edellisen vuoden Lasten päivä -tapahtumassa. Lapset toivoivat mm. legopajaa, ruusujen askartelua, tiikeritanssia ja karkkiämpäriä. <br> <br>Työpajapisteitä saa kierrellä omassa tahdissaan. Voit saapua ja lähteä silloin kun haluat.   <br>Ohjelma on pääosin suomeksi ja englanniksi, mutta kaikki kielet ja kielitaidot ovat lämpimästi tervetulleita mukaan. <br> <br>Tapahtuma on maksuton ja on suunniteltu koko perheelle.   <br>Tervetuloa mukaan Lasten ikiomaan päivään!</p><p>Aikataulu:<br>Klo 11:00 Työpajat käynnistyvät: loikkaa pupuleikkiin, tee poniajeluun päähine ja kiidä laukkaradalle, valmista ruusuja ja kisaa legojen rakennuksessa. Herkutteluun saat infosta minikarkkiämpärin (toivonut Aapo 8v ja Enni 5v)</p><p>Pupuleikki: klo 11:15 / 11:45 / 12:45 ja 13:15<br>Muut työpajat: klo 11-14. Ratsutyöpaja+Laukkarata, Ruusutyöpaja, Lego-työpaja.<br>Klo 14:00 Työpajat sulkeutuvat. <br>Klo 14:05 Päätämme tapahtumapäivän liittymällä mukaan tiikerien ohjaamaan Lapsella on oikeus -tanssiin!</p><p>Ohjelma:</p><p>PUPULEIKKI<br>(toivonut Oona 6v)</p><p>Porkkana sentään! Pupun poikanen on sairastunut syysflunssaan ja tarvitsee apua talvivaraston täydennykseen. Vauhdikkaassa pajassa lapsi pääsee kokemaan liikkumisen iloa ja rentouttavan satuhieronnan oman aikuisen kanssa.</p><p>Leikkituokiot klo 11:15 / 11:45 / 12:45 ja 13:15 (kesto: 20min)<br>Varaa paikkasi hakemalla infosta molemmille osallistujille lipuke<br>Ohjaajana: Noora-pupu Puranen</p><p>Avoimet nonstop-työpajat klo 11-14</p><p>PONIAJELU ja HEVOSPÄÄHINEET -työpaja<br>(Toivonut Enja 4v)</p><p>Ihahaa! Tässä työpajassa tehdään päähineitä poniajeluun tai omaksi iloksi.</p><p>Issikka, mustangi vai yksisarvinen?<br>Minkälaisesta ratsusta olet aina haaveillut? Naamioi oma aikuisesti unelmien hevoseksi, hyppää selkään ja tartu suitsiin. Laukkarata kutsuu kaikkia leikkimielisiä poniajelulle!</p><p>Toteuttajina: Annantalon taidekasvattajat</p><p>RUUSUTYÖPAJA<br>(Toivonut Sandra 4v)</p><p>Työpajassa pääsee valmistamaan silkki- ja kreppipaperista persoonallisen, oman näköisen ruusun. Tämän itse tehdyn paperiruusun voi antaa lahjaksi ilahduttamaan vaikkapa parhaan kaverin, mummon, naapurin tai miksei myös omaa päivää. Ja mikä parasta, nämä kukkaset eivät taatusti kuihdu maljakossa!</p><p>Toteuttajana: Pohjois-Helsingin kuvataidekoulun opettajat</p><p>PALIKKAMESTARIT - Lego-työpaja <br>(Toivoneet Kuisma 6v ja tuntematon toivoja)</p><p>Tule mukaan haastamaan mielikuvituksesi leikkimieliseen legokisaan. Edessäsi on valikoima peruspalikoita. Sinun on rakennettava niistä tietyssä rajatussa ajassa ennakkoon arvottu aihe.</p><p>Pajaan mahtuu 6 rakentajaa kerrallaan<br>Vetäjänä: Annantalosta ja TV:stä tuttu Heidi Puumalainen</p><p>Muuta tutustuttavaa:<br>Piilossa-näyttely 1.krs. galleria<br>Echoes Through Light Years -näyttely 2.krs. Etelägalleria<br>Jouluvitriinit: 2.krs. käytävä</p><p>Tapahtuman päätös:<br>TIIKERITANSSI  ja popcornia<br>(Toivoneet Oliver 6v ja Frida 5v)</p>",
                "sv": "<p>Under det här evenemanget uppfyller vi barnens drömmar! Kom med och fira barnrättsveckan på Annegården.</p><p>Barnens egen dag byggs upp av olika workshoppar och programnummer, som barnen själva önskade under Barnens dag förra året. Barnen önskade sig bland annat legoworkshop, rospyssel, tigerdans och godishinkar. <br> <br>Du kan gå runt bland workshopparna i din egen takt. Du kan komma och gå som det passar dig.   <br>Programmet är främst på finska och engelska, men alla språk och språkkunskaper är varmt välkomna med. <br> <br>Evenemanget är avgiftsfritt och avsett för hela familjen.   <br> <br>Mer information om programmet kommer närmare evenemanget. <br> <br>Välkommen med på barnens egen dag!</p>",
                "en": "<p>This event makes children’s wishes come true! Come and celebrate the Children’s Rights Week at Annantalo.</p><p>Children’s Day comprises a variety of workshops and programmes that children themselves wished for at the previous year’s Children’s Day event. The children wished for activities such as a Lego workshop, crafting roses, tiger dancing and a bucket of sweets. <br> <br>Visitors are welcome to tour these workshops at their own pace. You can come and go as you please.   <br>The programme is mostly in Finnish and English, but people from all language backgrounds and language skill levels are warmly welcomed!</p><p>The event is free of charge and has been designed with the whole family in mind.   <br> <br>A more detailed programme will be published closer to the event. <br> <br>Come along to celebrate Children’s Day!</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7CB8564E5F8D3F9F282C09674DDAD0B5/Lasten_oma_paiva",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/7CB8564E5F8D3F9F282C09674DDAD0B5/Barnens_egen_dag_",
                "en": "http://www.annantalo.fi/en/events/event/7CB8564E5F8D3F9F282C09674DDAD0B5/Children_s_Day"
            },
            "name": {
                "fi": "Lasten oma päivä – Unelmien tapahtumapäivä Annantalolla",
                "sv": "Barnens egen dag – Drömmarnas evenemangsdag på Annegården",
                "en": "Children’s Day – An event day of your dreams at Annantalo"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66301/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67211",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491202,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T13:13:27.348502Z",
                    "last_modified_time": "2025-10-27T13:13:27.348517Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778243.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491202/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T13:13:27.257553Z",
            "last_modified_time": "2025-11-10T16:13:07.337215Z",
            "date_published": null,
            "start_time": "2025-12-10T08:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. ESITYS ON TÄYTEEN VARATTU!"
            },
            "description": {
                "fi": "<p>Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. ESITYS ON TÄYTEEN VARATTU!</p><p>Esitys perustuu Charles Perrault'n tunnettuun satuun, jossa neuvokas kissa auttaa myllärinpoikaa seikkailuissaan. Tämä kiehtova esitys tempaa mukaansa niin pienet kuin suuretkin katsojat! <br>Esitys on viehättävän lämmin ja kotoisa. Esityksen lavastus ja puvut ovat virkkaustaiteen taidonnäyte.</p><p>Esiintyjät: Ritva Sorvali ja Helena Ryti <br>Lavasteiden ja pukujen suunnittelu ja virkkaus: Tarja Kopperi</p><p>Kesto: 25 min. Esityksen jälkeen yleisö voi tutustua näyttämöön.<br>Ikäsuositus: yli 3-vuotiaille <br>Kieli: Suomi</p><p>Maksuton, paikkavaraukset: kultus.fi 9.11 klo 8 alkaen</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/08EF8699C1C7E2F7453904DD8A2F309B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/08EF8699C1C7E2F7453904DD8A2F309B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "en": "http://www.annantalo.fi/en/events/event/08EF8699C1C7E2F7453904DD8A2F309B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa"
            },
            "name": {
                "fi": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "sv": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "en": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67211/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67210",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491201,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T13:13:26.972992Z",
                    "last_modified_time": "2025-10-27T13:13:26.973007Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778241.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491201/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T13:13:26.881053Z",
            "last_modified_time": "2025-11-10T16:13:07.149750Z",
            "date_published": null,
            "start_time": "2025-12-10T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. ESITYS ON TÄYTEEN VARATTU!"
            },
            "description": {
                "fi": "<p>Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. ESITYS ON TÄYTEEN VARATTU!</p><p>Esitys perustuu Charles Perrault'n tunnettuun satuun, jossa neuvokas kissa auttaa myllärinpoikaa seikkailuissaan. Tämä kiehtova esitys tempaa mukaansa niin pienet kuin suuretkin katsojat! <br>Esitys on viehättävän lämmin ja kotoisa. Esityksen lavastus ja puvut ovat virkkaustaiteen taidonnäyte.</p><p>Esiintyjät: Ritva Sorvali ja Helena Ryti <br>Lavasteiden ja pukujen suunnittelu ja virkkaus: Tarja Kopperi</p><p>Kesto: 25 min. Esityksen jälkeen yleisö voi tutustua näyttämöön.<br>Ikäsuositus: yli 3-vuotiaille <br>Kieli: Suomi</p><p>Maksuton, paikkavaraukset: kultus.fi 9.11 klo 8 alkaen</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4178EF31744C135B42063F77D839FDB7/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/4178EF31744C135B42063F77D839FDB7/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "en": "http://www.annantalo.fi/en/events/event/4178EF31744C135B42063F77D839FDB7/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa"
            },
            "name": {
                "fi": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "sv": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "en": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67210/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67209",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491200,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T13:13:26.600107Z",
                    "last_modified_time": "2025-10-27T13:13:26.600123Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778239.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491200/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T13:13:26.510967Z",
            "last_modified_time": "2025-11-10T16:13:06.964002Z",
            "date_published": null,
            "start_time": "2025-12-09T08:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. Esitys on täyteen varattu!"
            },
            "description": {
                "fi": "<p>Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. Esitys on täyteen varattu!</p><p>Esitys perustuu Charles Perrault'n tunnettuun satuun, jossa neuvokas kissa auttaa myllärinpoikaa seikkailuissaan. Tämä kiehtova esitys tempaa mukaansa niin pienet kuin suuretkin katsojat!</p><p>Esitys on viehättävän lämmin ja kotoisa. Esityksen lavastus ja puvut ovat virkkaustaiteen taidonnäyte.</p><p>Esiintyjät: Ritva Sorvali ja Helena Ryti <br>Lavasteiden ja pukujen suunnittelu ja virkkaus: Tarja Kopperi</p><p>Kesto: 25 min. Esityksen jälkeen yleisö voi tutustua näyttämöön.<br>Ikäsuositus: yli 3-vuotiaille <br>Kieli: Suomi</p><p>Maksuton, paikkavaraukset: kultus.fi 9.11 klo 8 alkaen</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9FFF9338D6F392ED3B79FC13B638998B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9FFF9338D6F392ED3B79FC13B638998B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "en": "http://www.annantalo.fi/en/events/event/9FFF9338D6F392ED3B79FC13B638998B/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa"
            },
            "name": {
                "fi": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "sv": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "en": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67209/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67208",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491199,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T13:13:26.218472Z",
                    "last_modified_time": "2025-10-27T13:13:26.218487Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778238.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491199/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T13:13:26.107557Z",
            "last_modified_time": "2025-11-10T16:13:06.791725Z",
            "date_published": null,
            "start_time": "2025-12-09T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. Esitys on täyteen varattu!"
            },
            "description": {
                "fi": "<p>Satuooppera Saapasjalkakissa tuo lavalle Kaj Chydeniuksen riimittelemän ja säveltämän version rakastetusta klassikosta. Esitys on täyteen varattu!</p><p>Esitys perustuu Charles Perrault'n tunnettuun satuun, jossa neuvokas kissa auttaa myllärinpoikaa seikkailuissaan. Tämä kiehtova esitys tempaa mukaansa niin pienet kuin suuretkin katsojat!</p><p>Esitys on viehättävän lämmin ja kotoisa. Esityksen lavastus ja puvut ovat virkkaustaiteen taidonnäyte.</p><p>Esiintyjät: Ritva Sorvali ja Helena Ryti <br>Lavasteiden ja pukujen suunnittelu ja virkkaus: Tarja Kopperi</p><p>Kesto: 25 min. Esityksen jälkeen yleisö voi tutustua näyttämöön.<br>Ikäsuositus: yli 3-vuotiaille <br>Kieli: Suomi</p><p>Maksuton, paikkavaraukset: kultus.fi 9.11 klo 8 alkaen</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B01A6F613FE54CE51F9E7D407738551A/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/B01A6F613FE54CE51F9E7D407738551A/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa",
                "en": "http://www.annantalo.fi/en/events/event/B01A6F613FE54CE51F9E7D407738551A/Chydenius_Ryti_Sorvali_Satuooppera_Saapasjalkakissa"
            },
            "name": {
                "fi": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "sv": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa",
                "en": "Chydenius, Ryti&Sorvali: Satuooppera Saapasjalkakissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67208/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66581",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490980,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-02T07:13:38.065458Z",
                    "last_modified_time": "2025-10-02T07:13:38.065472Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775032.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490980/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-02T07:13:37.949393Z",
            "last_modified_time": "2025-11-10T14:12:29.209749Z",
            "date_published": null,
            "start_time": "2025-11-22T11:00:00Z",
            "end_time": "2025-11-22T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Lapsen oikeuksien viikon perhepäivässä on luvassa valloittavaa nukketeatteria ja musiikin pyörteitä niin pienille kuin isommillekin!",
                "sv": "Familjedagen under Veckan för barnens rättigheter kommer att bjuda på fängslande dockteater och musikaliska virvelvindar för både stora och små!",
                "en": "This day of art for the whole family in Children's Rights Week features captivating puppetry and captivating music for young and old alike!"
            },
            "description": {
                "fi": "<p>Lapsen oikeuksien viikon perhepäivässä on luvassa valloittavaa nukketeatteria ja musiikin pyörteitä niin pienille kuin isommillekin!</p><p>Nyt juhlitaan lapsen oikeuksia! Tehdas teatteri tuo eläinmaailman ihmeet perheen pienimpien ulottuville, ja We Jazz kutsuu kaiken ikäiset jammailemaan hyvän musiikin tahdissa. Uulun sanattomassa muskarissa päästään itsekin musisoimaan, ja Stoan aulasta löytyy hauska miniperhe-työpaja. Taitavat kasvomaalaajamme loihtivat kävijöille eläimellistä ilmettä.</p><p><b>Päivän ohjelma:</b><br>klo 13 ja 15 Tehdas teatteri: Eläköön eläimet pienille (ennakkoilmoittautuminen, ks. tapahtuma)<br>klo 14 We Jazz: Mattsson / Herrala / Kallio <br>klo 13.15 Sanaton muskari<br>klo 13-16 Miniperhe -työpaja<br>Klo 13-16 Satumetsän varjoissa -työpaja<br>klo 13-15.45 Kasvomaalausta</p><p><b>We Jazz -lastenkonsertti</b><br>Nuoren polven saksofonistilahjakkuus Oona Mattsson kohtaa Suomen jazzkentän veteraanikompin, basisti Ville Herralan ja rumpali Mika Kallion.<br>Kesällä debytoineen Mattsson / Herrala / Kallio -trion ohjelmisto koostuu tarkoin valituista jazzhistorian helmistä, herkästi ja vapaasti tulkittuina.</p><p><b>Eläköön eläimet! pikkuisille</b><br>Oletko ihmetellyt, miten kastemato voi kuulla ilman korvia? Tai tiesitkö, että laiskiainen laskeutuu alas puusta vain kakatakseen?<br>ELÄKÖÖN ELÄIMET! vastaa kysymyksiisi vallattomilla faktoilla, sydämellisellä huumorilla ja taidokkailla nukkehahmoillaan. <br>Taaperoille sovitetussa versiossa ihastellaan ja ihmetellään eläimiä pehmeiltä nurmimatoilta, joilla voi loikoilla ihan muina matoina tai kainaloisena kanana. Jokainen pieni katsoja saa mukaansa myös turvamadon, jonka kanssa eläytyä esitykseen.<br>Kesto: 30 min<br>Näytös on akustisesti lempeä, eikä täyttä pimeyttä tule.<br>Suunnattu 1 - 3-vuotiaille<br>Kieli: suomi<br>Mukaan mahtuu noin 20 taaperoa ja saman verran aikuisia. HUOM! Ei vauvoille.<br>Maksuton. Ennakkoilmoittautuminen esityksen kohdalta 11.11. alkaen.</p><p><b>Sanaton muskari</b><br>Sanaton muskari on esitys, jossa lapset ja perheet voivat kokea monipuolisesti musiikkia. Pedagogiikka perustuu sanattomiin lauluihin ja loruihin, eli toiminta soveltuu kaikille äidinkielestä riippumatta.</p><p>Sanaton muskari sopii myös heille, joilla on kehitysvaikeuksia tai haasteita motoriikan kanssa. Tässä pedagogiikassa musiikkia opitaan kuin äidinkieltä - ensin kuunnellaan, sitten kokeillaan. Musiikkia ja rytmiä aistitaan yhdessä liikkumalla, toistamalla ja vertaamalla ryhmässä.</p><p>Ohjaaja: Paloma Català Parga, Uulu<br>Ikäsuositus 0–10 vuotta, pienimmät aikuisen seurassa.<br>Mukaan mahtuu max 25 lasta, lisäksi heidän aikuisensa.<br>Kesto 40 min.</p><p><b>Miniperhe-työpaja</b><br>Perheitä on erilaisia, ja jokainen perheenjäsen on aivan omanlaisensa.  Millaisia hassuja, värikkäitä tai ihania tyyppejä kuuluu sinun perheeseesi? Tule luomaan oma miniatyyriperhe! Nuket syntyvät puutikuista, liimasta, kierrätyslangoista ja mielikuvituksesta. <br>Ohjaaja: Chloé Mahy-Hulkko<br>Kielet: suomi, ranska, englanti</p><p><b>Satumetsän varjoissa -työpaja</b><br>Työpajassa tutkitaan varjoja ja piirretään niiden avulla mielikuvituksellisia otuksia ja metsän asukkaita. <br>Ohjaaja: Juho Hellsten</p><p><b>Eläin-kasvomaalauksia</b><br>Tule ja muutu eläimeksi taidokkaiden kasvomaalaajiemme käsissä.</p><p>Puotinkylän Valtti pitää Stoan aulassa herkkukioskia, josta löytyy herkkuja pientä korvausta vastaan.</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Familjedagen under Veckan för barnens rättigheter kommer att bjuda på fängslande dockteater och musikaliska virvelvindar för både stora och små!</p><p>Familjedagen under Veckan för barnens rättigheter kommer att bjuda på fängslande dockteater och musikaliska virvelvindar för både stora och små!</p><p>Låt oss fira barnens rättigheter! Tehdas teatteri har med sig djurvärldens underverk till de små i familjen och We Jazz bjuder in alla åldrar att jamma loss till bra musik. Du kan själv skapa musik i Uulus ordlösa musiklekskola, och det finns en rolig mini-familjeverkstad i Stoas aula. Våra duktiga ansiktsmålare målar djurliga bilder på besökarna.</p><p>Dagens program<br>kl. 13 och 15 Tehdas teatteri: Eläköön eläimet (föranmälan, se evenemang)<br>14:00 We Jazz: Mattsson / Herrala / Kallio <br>kl. 13.15 Ordlös musiklekskola<br>kl. 13–16 mini-familjeverkstad<br>kl. 13–15.45 Ansiktsmålning</p><p>Ordlös musiklekskola<br>Den ordlösa musiklekskolan är en föreställning där barn och familjer kan uppleva musik på olika sätt. Pedagogiken bygger på icke-verbala sånger och berättelser, vilket innebär att aktiviteterna passar alla, oavsett modersmål.</p><p>Men ordlösa musiklekskolan är också lämplig för personer med utvecklingsstörning eller motoriska utmaningar. Denna pedagogik lär ut musik som ett modersmål – först lyssnar du, sedan försöker du. Musik och rytm upplevs tillsammans genom att man rör sig, upprepar och jämför i en grupp.</p><p>Regi: Paloma Català Parga<br>Rekommenderad ålder 0–10 år, de yngsta tillsammans med en vuxen.<br>Det finns en maximal kapacitet på 25 barn, plus deras vuxna.<br>Längd 40 min.</p><p>Mini-familjeverkstad<br>Familjer är olika och alla familjemedlemmar är olika. Vad finns det för roliga, färgstarka eller underbara människor i din familj? Kom och skapa din egen minifamilj! Dockorna är tillverkade av träfibrer, lim, återvunnet garn och fantasi.</p><p>Regi: Chloé Mahy-Hulkko<br>Språk: finska, franska, engelska</p><p>Puotinkylän Valtti har ett delikatesstånd i lobbyn på Stoa, där du kan köpa godsaker för en liten slant.</p><p>Fritt inträde.</p>",
                "en": "<p>This day of art for the whole family in Children's Rights Week features captivating puppetry and captivating music for young and old alike!</p><p>Let's celebrate the rights of the child! Independent theatre Tehdas Teatteri introduces the littlest audience members to the wonders of the animal world, while We Jazz invites people of all ages to jam out to good music. Culture Cooperative Uulu’s wordless music playschool lets children make music themselves, and there will also be a fun mini-family workshop in the Stoa lobby. Participants looking for a more animalistic look can turn to our skilled face painters.</p><p>The day’s programme:<br>13.00 and 15.00 Tehdas Teatteri: Eläköön eläimet (Hooray for animals) (advance registration, see event)<br>14.00 We Jazz: Mattsson / Herrala / Kallio<br>13.15 Wordless music playschool<br>13.00–16.00 Mini-family workshop<br>13.00–15.45 Face painting</p><p>Wordless music playschool<br>The wordless music playschool is a performance that allows children and families to experience music in a variety of ways. The pedagogy is based on wordless songs and rhymes, which means that the activities are suitable for everyone, regardless of their mother tongue.</p><p>The wordless music playschool is also suitable for those with developmental disabilities or motor challenges. This pedagogy teaches music like a mother tongue – first you listen, then you try it yourself. Music and rhythm are sensed together by moving, repeating and comparing in a group.</p><p>Instructor: Paloma Català Parga<br>Age recommendation: 0–10 years; the youngest participants should be accompanied by an adult.<br>Maximum capacity: 25 children, plus their adults.<br>Duration: 40 min</p><p>Mini-family workshop<br>There are different kinds of families, and each family member is also different. What kind of funny, colourful or lovely people are in your family? Come and create your own miniature family! The miniatures are made with wooden sticks, glue, recycled yarn and imagination.</p><p>Instructor: Chloé Mahy-Hulkko<br>Languages: Finnish, French, English</p><p>Puotinkylän Valtti will be running a kiosk in the Stoa lobby, where you can purchase treats for a small fee.</p><p>Free entry.</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/E0A32708B8DFF3B97D6B59F403C76FF4/Koko_perheen_taidepaiva_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/E0A32708B8DFF3B97D6B59F403C76FF4/Hela_familjens_konstdag",
                "en": "http://www.stoa.fi/en/events/event/E0A32708B8DFF3B97D6B59F403C76FF4/A_day_of_art_for_the_whole_family"
            },
            "name": {
                "fi": "Koko perheen taidepäivä – Lapsen oikeuksien viikko",
                "sv": "Hela familjens konstdag – Veckan för barnets rättigheter",
                "en": "A day of art for the whole family – Children’s Rights Week"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66581/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agne666cxy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?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:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-11-04T14:40:29.288604Z",
            "last_modified_time": "2025-11-07T13:43:33.323998Z",
            "date_published": null,
            "start_time": "2025-11-22T10:00:00Z",
            "end_time": "2025-11-22T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa koko perheen tapahtumaan!",
                "sv": "Hela familjen är välkommen att delta i vår familjedag!",
                "en": "The whole family is welcome to enjoy our family day."
            },
            "description": {
                "fi": "<p><strong>Tervetuloa Sellon kirjaston perhepäivään, joka järjestetään yhteistyössä Espoolaisten toimijoiden kanssa Lasten viikonlopun lauantaina! Luvassa on erilaisia työpajoja, musiikkia, klovni ja hauskaa yhdessä tekemistä. Tule mukaan koko perheen voimin.</strong></p><p><br></p><p><strong>Ohjelma:</strong></p><p><strong>Lastenorkesteri Rypsi ja Rapsi klo 14</strong></p><p><strong>Klovni MokaBella klo 15</strong></p><p><br></p><p><strong>Kasvomaalausta klo 12-14</strong></p><p><strong>Peliturnaus klo 12-14.30</strong></p><p><strong>Satumaalaustuokiot klo 13, klo 14 ja klo 15</strong></p><p><br></p><p><strong>klo 13-16</strong></p><ul><li><strong>Espoon kuvataidekoulun pinssipaja</strong></li></ul><p><br></p><ul><li><strong>Espoon Tapioiden temppurata</strong></li></ul><p><br></p><ul><li><strong>Lasten kulttuurikeskus Aurora/ Onnenmetsä -työpaja&nbsp;</strong></li></ul><p><strong>&nbsp;</strong></p>",
                "sv": "<p>Välkommen till Sello-bibliotekets familjedag, som anordnas i samarbete med Espoo-baserade organisationer under barnhelgen på lördag! Det kommer att finnas olika workshops, musik, en clown och roliga aktiviteter att göra tillsammans. Ta med hela familjen.</p><p><br></p><p><strong>Program</strong></p><p><br></p><p><strong>Barnorkestern Rypsi ja Rapsi kl. 14.00</strong></p><p><br></p><p><strong>Clownen MokaBella kl. 15.00</strong></p><p><br></p><p><strong>Ansiktsmålning kl. 12.00–14.00</strong></p><p><br></p><p><strong>Spelturnering kl. 12–14.30</strong></p><p><br></p><p><strong> Sagomålningssessioner kl. 13, kl. 14 och kl. 15</strong></p><p><br></p><p><br></p><p><br></p><p><strong>Kl. 13–16</strong></p><p><br></p><p><strong>Espoo konstskolas badge-workshop</strong></p><p><br></p><p><strong>Espoo Tapios hinderbana</strong></p><p><br></p><p><strong>Aurora barnkulturcenter/Onnenmetsä-workshop&nbsp;</strong></p><p><br></p>",
                "en": "<p>Welcome to Sello Library's Family Day, organized in collaboration with Espoo-based organizations on Children's Weekend Saturday! There will be various workshops, music, a clown, and fun activities to do together. Bring the whole family along.</p><p><br></p><p><strong>Program</strong></p><p><br></p><p><strong>Children's orchestra Rypsi ja Rapsi at 2 p.m.</strong></p><p><br></p><p><strong>Clown MokaBella at 3 p.m.</strong></p><p><br></p><p><br></p><p><strong>Face painting from 12 noon to 2 p.m.</strong></p><p><br></p><p><strong>Game tournament at 12-2:30 p.m.</strong></p><p><br></p><p><strong>Fairy tale painting sessions at 1 pm, 2pm and 3pm</strong></p><p><br></p><p><br></p><p><br></p><p><strong>1-4 p.m</strong></p><p><br></p><p><strong>Espoo Art School pin workshop</strong></p><p><br></p><p><strong>Espoo Tapio obstacle course</strong></p><p><br></p><p><strong>Children's Cultural Center Aurora/ Onnenmetsä workshop&nbsp;</strong></p><p><br></p>"
            },
            "info_url": null,
            "name": {
                "fi": "Perhepäivä Sellon kirjastossa",
                "sv": "Familjedag i Sello bibliotek",
                "en": "Family day in Sello Library"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne666cxy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnf5nzuoi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-11-07T13:25:33.962469Z",
            "last_modified_time": "2025-11-07T13:25:33.962521Z",
            "date_published": null,
            "start_time": "2025-11-23T12:00:00Z",
            "end_time": "2025-11-23T12:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tule kuuntelemaan hiiren seikkailusta ja tapaamaan uuden MI-NÄ LU-EN -lastenkirjasarjan tekijät sunnuntaina 23.11. klo 14 alkaen."
            },
            "description": {
                "fi": "<p>Tule kuuntelemaan hiiren seikkailusta ja tapaamaan uuden MI-NÄ LU-EN -lastenkirjasarjan tekijät! Satunäytelmän lisäksi tiedossa musiikkia ja mukavaa puuhaa lapsille! Tervetuloa!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "MI-NÄ LU-EN! Satunäytelmä Lippulaivan kirjastossa!"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf5nzuoi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22x6si",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490286,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-28T06:52:31.443870Z",
                    "last_modified_time": "2025-12-01T12:27:50.707924Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg",
                    "name": "",
                    "cropping": "280,0,1000,720",
                    "photographer_name": "",
                    "alt_text": "satumainen puutarha",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-28T06:57:29.704880Z",
            "last_modified_time": "2025-11-07T12:23:12.305981Z",
            "date_published": null,
            "start_time": "2025-11-14T15:00:00Z",
            "end_time": "2025-11-14T16: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,
            "provider": null,
            "short_description": {
                "fi": "Täällä voit kokeilla, kuvitella ja näyttää.",
                "sv": "Här kan du prova, fantisera, visa och experimentera.",
                "en": " Here you can try, fantasize, show, experiment. "
            },
            "description": {
                "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>",
                "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>",
                "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>"
            },
            "info_url": null,
            "name": {
                "fi": "PERUTTU: Ukrainalainen lasten teatterikerho Naamiot",
                "sv": "AVBRUTEN: Ukrainska barnteaterklubben Masker",
                "en": "CANCELLED: Ukrainian Children's Theater Masks"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x6si/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnc7bagqi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-29T09:34:14.088232Z",
            "last_modified_time": "2025-11-07T12:13:57.271393Z",
            "date_published": null,
            "start_time": "2025-11-22T11:30:00Z",
            "end_time": "2025-11-22T15: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,
            "provider": null,
            "short_description": {
                "fi": "Kierrätysaskartelua  "
            },
            "description": {
                "fi": "<p>Romupajassa askarrellaan ja rakennetaan erilaisesta kierrätysmateriaaleista vain oma mielikuvitus rajana. Käytössä rakenteluun on kuumaliima eli voi tehdä isojakin teoksia. Teokset voi myös maalata. Pajassa on kaksi romukattausta; ensimmäinen paja on klo 13.30-15 ja toinen paja klo 15.30-17.</p><p>Jo viidettä kertaa järjestettävä Lasten viikonloppu ilahduttaa vuoden pimeimpään aikaan, marraskuun lopulla 21.–23.11.2025. Luvassa on viime vuosien tapaan jälleen täyttä lastenkulttuurin juhlaa ympäri Espoota. Lasten viikonlopun ohjelma julkaistaan syksyn alkupuolella. Löydät kaikki Espoon Lasten viikonlopun tapahtumat osoitteesta espoo.fi/lastenviikonloppu(ulkoinen linkki, avautuu uuteen ikkunaan).</p><p>Lasten viikonlopussa ovat mukana Espoon kulttuurikeskus, Sellosali, Näyttelykeskus WeeGee, Kannusali, Lasten kulttuurikeskus Aurora, Vindängen, Espoon kaupunginkirjasto sekä Espoonlahden kulttuuri.</p><p>Espoon Lasten viikonloppu toteutetaan osana Lasten oikeuksien viikon ohjelmaa.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Lasten viikonloppu: Romupaja"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lippulaivan paja"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnc7bagqi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}