Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 7231,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=273&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=271&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:63363",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/city/helsinki-22/venue/stoa-22786/",
                        "sv": "https://www.lippu.fi/city/helsinki-22/venue/stoa-22786/",
                        "en": "https://www.lippu.fi/city/helsinki-22/venue/stoa-22786/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150599,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T08:12:51.811469Z",
                    "last_modified_time": "2024-04-16T08:12:51.811484Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749206.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150599/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-16T08:12:51.787561Z",
            "last_modified_time": "2024-04-16T08:12:51.866226Z",
            "date_published": null,
            "start_time": "2024-04-20T12: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": "Yksi opettaja. Viisi oppilasta. Viisi pulpettia. Intensiivisen tarkka fyysisen teatterin esitys oikeaoppisuudesta.",
                "sv": "En lärare. Fem elever. Fem pulpeter. En intensivt noggrann fysisk teaterföreställning om renlärighet.",
                "en": "One teacher. Five students. Five desks. A powerfully compelling physical theatre show about dogma."
            },
            "name": {
                "fi": "Kauri Honkakoski Company: PULPETTI",
                "sv": "Kauri Honkakoski Company: PULPET",
                "en": "Kauri Honkakoski Company: THE DESK"
            },
            "description": {
                "fi": "<p>Yksi opettaja. Viisi oppilasta. Viisi pulpettia. Intensiivisen tarkka fyysisen teatterin esitys oikeaoppisuudesta.</p><p>PULPETTI on pakottavan terävä kuvaus ryhmäajattelun, vallankäytön ja perimmäisen Totuuden vetovoimasta. Se paljastaa hengellisten ja poliittisten lahkojen universaalit valtarakenteet taidokkaan kehollisen ilmaisun kautta. Teos pohjaa ohjaaja Kauri Honkakosken henkilökohtaiseen kokemukseen.</p><p>Yleisöjen ja kriitikoiden ylistämä PULPETTI sai ensi-illan Helsingissä 2017. Vuonna 2019 se palkittiin Scotsman Fringe First Award sekä Summerhall Lustrum Award palkinnoilla Edinburgh Fringe festivaalilla.</p><p>Nyt teoksen voi taas nähdä Suomessa!</p><p><i>’World-class physical theatre.'</i> (The Wee Review)<br><i>’Powerful and hypnotizing throughout.’ </i>(The Voice Magazine)<br><i>’Vibrates with meaning and emotion.’</i> (The Scotsman)<br><i>’Brilliant piece of wordless storytelling.’</i> (The List)<br><i>’Ilmaisun vapauden tarkkaa valtakuntaa.’</i> (Hanna Helavuori, Tinfo)<br><i>’Förtjäner en eloge.’</i> (Hufvudstadsbladet)<br><i>‘Juuri tällaista teatteria olen kaivannut kipeästi: aikamme trendien ja hahmojen tuolle puolen kurottavaa kuvausta siitä mitä on olla ihminen.’</i> (Mimesis&Mumina)</p><p>Kauri Honkakoski Company on helsinkiläinen fyysisen teatterin ryhmä. Ryhmän esitykset käsittelevät yleisinhimillisiä teemoja rikkaan liikekielen ja kuvallisten metaforien kautta. PULPETISSA esiintyy taitava fyysisen teatterin ensemble.</p><p>Ohjaus, dramaturgia: Kauri Honkakoski<br>Esiintyjät: Karina Degaspari, Kauri Honkakoski, Sonja Järvisalo, Josefin Karlsson, Liv Meijer Nordgren, Freia Stenbäck<br>Valosuunnittelu: Sisu Nojonen<br>Äänisuunnittelu: Tuuli Kyttälä<br>Traileri: Jonathan Rankle, Tuuli Kyttälä<br>Kuvat: Michaela Bodlovic, Noomi Ljungdell</p><p>Kesto: 60 min<br>Teos ei sisällä puhetta <br>Ikäsuositus: 7+</p>",
                "sv": "<p>En lärare. Fem elever. Fem pulpeter. En intensivt noggrann fysisk teaterföreställning om renlärighet.</p><p>PULPET är en tvingande skarp beskrivning av grupptänkandets, maktutövandets och den ultimata Sanningens dragningskraft. Den avslöjar de andliga och politiska sekternas universella maktstrukturer genom ett skickligt kroppsligt uttryck. Verket baserar sig på regissören Kauri Honkakoskis personliga erfarenhet.</p>",
                "en": "<p>One teacher. Five students. Five desks. A powerfully compelling physical theatre show about dogma.</p><p>Director Kauri Honkakoski mines their personal lived experience of a cult in this meticulous ensemble piece about the seductive power of discipline, hierarchy, mind control and the search for an ultimate Truth.</p><p>Praised by audiences and critics alike for their mastery of physical expression, Kauri Honkakoski Company exposes the universal mechanics of power in political and spiritual cults. Expect sharp, strong and poignant ensemble work.</p><p>The Desk opened in Helsinki 2017. In 2019 it won The Scotsman Fringe First Award and Summerhall Lustrum Award at Edinburgh Fringe Festival.</p><p>Now you can see the show in Finland again!<br><i><br>’World-class physical theatre.'</i> (The Wee Review, UK)<br><i>’Powerful and hypnotizing throughout.’</i>  (The Voice Magazine, UK)<br><i>’Vibrates with meaning and emotion.’</i>  (The Scotsman, UK)<br><i>’Brilliant piece of wordless storytelling.’</i>  (The List, UK)<br><i>’Deep associations in a realm of precise expression.’</i>  (Theatre Info Finland)<br><i>’Worthy of high praise.’</i>  (Hufvudstadsbladet)<br><i>’Exactly the kind of theatre I have longed for.'</i>  (Mimesis&Mumina)</p><p>Kauri Honkakoski Company is a Helsinki-based physical theatre company. Their shows explore universal human themes through rich physical expression and visual metaphors. The Desk is performed by a strong ensemble of physical theatre actors.</p><p>Director, dramaturg: Kauri Honkakoski<br>Performers: Karina Degaspari, Kauri Honkakoski, Sonja Järvisalo, Josefin Karlsson, Liv Meijer Nordgren, Freia Stenbäck<br>Lighting Design: Sisu Nojonen<br>Sound Design: Tuuli Kyttälä<br>Trailer: Jonathan Rankle, Tuuli Kyttälä<br>Photos: Michaela Bodlovic, Noomi Ljungdell<br> <br>Non-verbal<br>Length: 60 min<br>Age recommendation: 7+</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/02E3284A1299D146C8303B3C447B91F3/Kauri_Honkakoski_Company_PULPETTI",
                "sv": "http://www.stoa.fi/sv/evenemang/event/02E3284A1299D146C8303B3C447B91F3/Kauri_Honkakoski_Company_PULPET",
                "en": "http://www.stoa.fi/en/events/event/02E3284A1299D146C8303B3C447B91F3/Kauri_Honkakoski_Company_THE_DESK_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63363/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61905",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/city/helsinki-22/venue/stoa-22786/",
                        "sv": "https://www.lippu.fi/city/helsinki-22/venue/stoa-22786/",
                        "en": "https://www.lippu.fi/city/helsinki-22/venue/stoa-22786/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7170,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-15T08:14:17.024165Z",
                    "last_modified_time": "2024-02-06T13:23:35.945237Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739255.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7170/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-15T08:14:16.999721Z",
            "last_modified_time": "2024-04-16T08:12:51.634966Z",
            "date_published": null,
            "start_time": "2024-04-19T16: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": "Yksi opettaja. Viisi oppilasta. Viisi pulpettia. Intensiivisen tarkka fyysisen teatterin esitys oikeaoppisuudesta.",
                "sv": "En lärare. Fem elever. Fem pulpeter. En intensivt noggrann fysisk teaterföreställning om renlärighet.",
                "en": "One teacher. Five students. Five desks. A powerfully compelling physical theatre show about dogma."
            },
            "name": {
                "fi": "LOPPUUNMYYTY Kauri Honkakoski Company: PULPETTI",
                "sv": "SLUTSÅLD Kauri Honkakoski Company: PULPET",
                "en": "SOLD OUT Kauri Honkakoski Company: THE DESK"
            },
            "description": {
                "fi": "<p>Yksi opettaja. Viisi oppilasta. Viisi pulpettia. Intensiivisen tarkka fyysisen teatterin esitys oikeaoppisuudesta.</p><p>PULPETTI on pakottavan terävä kuvaus ryhmäajattelun, vallankäytön ja perimmäisen Totuuden vetovoimasta. Se paljastaa hengellisten ja poliittisten lahkojen universaalit valtarakenteet taidokkaan kehollisen ilmaisun kautta. Teos pohjaa ohjaaja Kauri Honkakosken henkilökohtaiseen kokemukseen.</p><p>Yleisöjen ja kriitikoiden ylistämä PULPETTI sai ensi-illan Helsingissä 2017. Vuonna 2019 se palkittiin Scotsman Fringe First Award sekä Summerhall Lustrum Award palkinnoilla Edinburgh Fringe festivaalilla.</p><p>Nyt teoksen voi taas nähdä Suomessa!</p><p><i>’World-class physical theatre.'</i> (The Wee Review)<br><i>’Powerful and hypnotizing throughout.’ </i>(The Voice Magazine)<br><i>’Vibrates with meaning and emotion.’</i> (The Scotsman)<br><i>’Brilliant piece of wordless storytelling.’</i> (The List)<br><i>’Ilmaisun vapauden tarkkaa valtakuntaa.’</i> (Hanna Helavuori, Tinfo)<br><i>’Förtjäner en eloge.’</i> (Hufvudstadsbladet)<br><i>‘Juuri tällaista teatteria olen kaivannut kipeästi: aikamme trendien ja hahmojen tuolle puolen kurottavaa kuvausta siitä mitä on olla ihminen.’</i> (Mimesis&Mumina)</p><p>Kauri Honkakoski Company on helsinkiläinen fyysisen teatterin ryhmä. Ryhmän esitykset käsittelevät yleisinhimillisiä teemoja rikkaan liikekielen ja kuvallisten metaforien kautta. PULPETISSA esiintyy taitava fyysisen teatterin ensemble.</p><p>Ohjaus, dramaturgia: Kauri Honkakoski<br>Esiintyjät: Karina Degaspari, Kauri Honkakoski, Sonja Järvisalo, Josefin Karlsson, Liv Meijer Nordgren, Freia Stenbäck<br>Valosuunnittelu: Sisu Nojonen<br>Äänisuunnittelu: Tuuli Kyttälä<br>Traileri: Jonathan Rankle, Tuuli Kyttälä<br>Kuvat: Michaela Bodlovic, Noomi Ljungdell</p><p>Kesto: 60 min<br>Teos ei sisällä puhetta <br>Ikäsuositus: 7+</p>",
                "sv": "<p>En lärare. Fem elever. Fem pulpeter. En intensivt noggrann fysisk teaterföreställning om renlärighet.</p><p>PULPET är en tvingande skarp beskrivning av grupptänkandets, maktutövandets och den ultimata Sanningens dragningskraft. Den avslöjar de andliga och politiska sekternas universella maktstrukturer genom ett skickligt kroppsligt uttryck. Verket baserar sig på regissören Kauri Honkakoskis personliga erfarenhet.</p>",
                "en": "<p>One teacher. Five students. Five desks. A powerfully compelling physical theatre show about dogma.</p><p>Director Kauri Honkakoski mines their personal lived experience of a cult in this meticulous ensemble piece about the seductive power of discipline, hierarchy, mind control and the search for an ultimate Truth.</p><p>Praised by audiences and critics alike for their mastery of physical expression, Kauri Honkakoski Company exposes the universal mechanics of power in political and spiritual cults. Expect sharp, strong and poignant ensemble work.</p><p>The Desk opened in Helsinki 2017. In 2019 it won The Scotsman Fringe First Award and Summerhall Lustrum Award at Edinburgh Fringe Festival.</p><p>Now you can see the show in Finland again!<br><i><br>’World-class physical theatre.'</i> (The Wee Review, UK)<br><i>’Powerful and hypnotizing throughout.’</i>  (The Voice Magazine, UK)<br><i>’Vibrates with meaning and emotion.’</i>  (The Scotsman, UK)<br><i>’Brilliant piece of wordless storytelling.’</i>  (The List, UK)<br><i>’Deep associations in a realm of precise expression.’</i>  (Theatre Info Finland)<br><i>’Worthy of high praise.’</i>  (Hufvudstadsbladet)<br><i>’Exactly the kind of theatre I have longed for.'</i>  (Mimesis&Mumina)</p><p>Kauri Honkakoski Company is a Helsinki-based physical theatre company. Their shows explore universal human themes through rich physical expression and visual metaphors. The Desk is performed by a strong ensemble of physical theatre actors.</p><p>Director, dramaturg: Kauri Honkakoski<br>Performers: Karina Degaspari, Kauri Honkakoski, Sonja Järvisalo, Josefin Karlsson, Liv Meijer Nordgren, Freia Stenbäck<br>Lighting Design: Sisu Nojonen<br>Sound Design: Tuuli Kyttälä<br>Trailer: Jonathan Rankle, Tuuli Kyttälä<br>Photos: Michaela Bodlovic, Noomi Ljungdell<br> <br>Non-verbal<br>Length: 60 min<br>Age recommendation: 7+</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/3BA99B6BA51A352AA768D09E8B59C0D0/LOPPUUNMYYTY_Kauri_Honkakoski_Company_PULPETTI",
                "sv": "http://www.stoa.fi/sv/evenemang/event/3BA99B6BA51A352AA768D09E8B59C0D0/SLUTSALD_Kauri_Honkakoski_Company_PULPET",
                "en": "http://www.stoa.fi/en/events/event/3BA99B6BA51A352AA768D09E8B59C0D0/SOLD_OUT_Kauri_Honkakoski_Company_THE_DESK_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61905/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63113",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11070,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-27T12:14:38.975662Z",
                    "last_modified_time": "2024-02-27T12:14:38.975683Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745043.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11070/?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": "2024-02-27T12:14:38.943254Z",
            "last_modified_time": "2024-04-15T12:13:31.929079Z",
            "date_published": null,
            "start_time": "2024-04-20T10:00:00Z",
            "end_time": "2024-04-20T13: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": "HELsign tulee taas! Koko perheen viittomakielinen kulttuuritapahtuma järjestetään nyt Kanneltalossa. Ohjelmassa on sekä lapsille sopivia aktiviteetteja että lavaesityksiä.",
                "sv": "HELsign återvänder! Kulturevenemanget på teckenspråk för hela familjen arrangeras nu på Gamlasgården. Programmet innefattar både aktiviteter för barn och scenföreställningar.",
                "en": "HELsign is back! This time, the sign language culture event for the whole family will be arranged at Cultural Centre Kanneltalo. The programme includes activities suitable for children and stage shows."
            },
            "name": {
                "fi": "HELsign 2024 – Viittomakielinen kulttuuritapahtuma",
                "sv": "HELsign 2024 – Kulturevenemang på teckenspråk",
                "en": "HELsign 2024 – A sign language culture event"
            },
            "description": {
                "fi": "<p>HELsign tulee taas! Koko perheen viittomakielinen kulttuuritapahtuma järjestetään nyt Kanneltalossa. Ohjelmassa on sekä lapsille sopivia aktiviteetteja että lavaesityksiä.</p><p>Kuurojen Liitto, Humak ja Helsingin kulttuurikeskus järjestävät lauantaina 20. huhtikuuta 2024 perheiden viittomakielisen kulttuuritapahtuman, HELsignin, jossa pääsee nauttimaan viittomakielisistä esityksistä, askartelusta ja muusta mukavasta puuhailusta – HELsign-tapahtumaan ovat tervetulleita kaikenikäiset, kuurot ja kuulevat!</p><p>Runsaaseen ohjelmaan kuuluu mm. Miguelin ja Silvan tähdittämä lauluesitys \"Rakas\", Teatteri Totin ”Pelle Pitko” ja Ursa Minorin lastenteatteri ”Valokalat”. Esitysten välissä on aikuisille suunnattu keskusteluohjelma \"Kuurot taiteilijat”, jota vetää Kuurojen Taiteilijakilta.</p><p>Tapahtumassa on viittomakielen tulkkaus suomeksi.</p><p>Järjestäjinä yhteistyössä Humanistinen ammattikorkeakoulu, Kuurojen liitto ja Helsingin kulttuurikeskus.</p><p>Vapaa pääsy</p>",
                "sv": "<p>HELsign återvänder! Kulturevenemanget på teckenspråk för hela familjen arrangeras nu på Gamlasgården. Programmet innefattar både aktiviteter för barn och scenföreställningar.</p><p>Inträdet är gratis till hela HELsign-evenemanget.</p>",
                "en": "<p>HELsign is back! This time, the sign language culture event for the whole family will be arranged at Cultural Centre Kanneltalo. The programme includes activities suitable for children and stage shows.</p><p>HELsign is free of charge in its entirety.</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4D961DC03A2FF181B40F65731E767663/HELsign_2024",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4D961DC03A2FF181B40F65731E767663/HELsign_2024",
                "en": "http://www.kanneltalo.fi/en/events/event/4D961DC03A2FF181B40F65731E767663/HELsign_2024"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63113/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4okyu",
            "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: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:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/entressenkirjasto?locale=fi_FI",
                    "language": "fi"
                }
            ],
            "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": "2024-04-15T09:00:22.685071Z",
            "last_modified_time": "2024-04-15T11:45:27.427819Z",
            "date_published": "2024-04-15T07:37:00Z",
            "start_time": "2024-04-15T08:37:00Z",
            "end_time": "2024-05-05T15: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": "Outi Ruottisen taidenäyttely \"High vibes\" Entressen kirjaston Valatori-seinällä 15.4.-5.5.2024.",
                "sv": "Outi Ruottinens utställning \"HIgh vibes\" i Entressebiblioteket under tiden 15.4.-5.5.2024. ",
                "en": "Art exhibition \"High vibes\" by Outi Ruottinen in Entresse Library during 15.4.-5.5.2024."
            },
            "name": {
                "fi": "Outi Ruottinen: High vibes 15.4.-5.5.2024",
                "sv": "Outi Ruottinen: High vibes 15.4.-5.5.2024",
                "en": "Outi Ruottinen: High vibes 15.4.2024"
            },
            "description": {
                "fi": "<p>\"High vibes\" näyttelyn teema on positiivinen energia. Meissä kaikissa virtaa energiaa. Näyttely herättelee katsojaansa tutkimaan omia tuntemuksia. Mitä tämä teos saa minussa tuntemaan? Miksi?</p><p>Outi Ruottinen (s.1989) on taiteilija Art by OuOu.n takana. Hän on kasvanut yhdessä taiteensa kanssa ja ilmaisee itseään piirtäen ja maalaten. Inspiraatiota teoksiinsa hän löytää luonnosta, väreistä sekä tunteista. Intuitiivinen ote näkyy työskennellessä kankaalla. Ennen kaikkea työtä ohjaa tunteiden ikuistaminen kankaalle. Ruottiselle on tärkeää välittää tunteita teoksensa kautta katsojille. Teoksia tehdessään parhaimmillaan hän löytää flow-tilan jossa teos itse ohjaa itseään eteenpäin. Ruottinen maalaa akryylimaaleilla sekä sekatekniikalla.</p><p>“Taiteilijana ja ihmisenä haluan jakaa hyvää eteenpäin. Koen sen olevan taiteeni tehtävä. Tuoda ihmisille hyvää mieltä, herättää tunteita. En ole hyvä puhumaan, itse asiassa aivan surkea. Taiteeni sen sijaan osaa puhutella yleisöä tavalla johon sanoja ei tarvita.”<br></p>",
                "sv": "<p>Välkommen att besöka Outi Ruottinens utställning \"HIgh vibes\" i Entressebiblioteket under tiden 15.4.-5.5.2024. Utställningen kan ses under bibliotekets öpettider. </p>",
                "en": "<p>Art exhibition \"High vibes\" by Outi Ruottinen in Entresse Library during 15.4.-5.5.2024. Welcome!</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4okyu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63200",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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": 12337,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T09:19:03.701768Z",
                    "last_modified_time": "2024-03-14T09:19:03.701791Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745337.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12337/?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": "2024-03-14T09:19:03.676198Z",
            "last_modified_time": "2024-04-14T10:13:01.537477Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T11: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": "Tuo taaperosi pomppimaan!"
            },
            "name": {
                "fi": "Pomppulinna – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Tuo taaperosi pomppimaan!</p><p>Pehmeitä pyllähdyksiä, värikästä vilinää ja iloisia pomppuja. Pienperheyhdistys mahdollistaa Vaippakarnevaalien pomppulinnan, joka riemastuttaa takuulla jokaista liikehtivää taaperoa.</p><p>Pomppiminen on tehokasta liikehdintää, joka vahvistaa lasten lihaksia ja kehittää motorisia taitoja, samalla kun se tarjoaa iloa ja hauskuutta lapsen liikkeeseen. Pomppulinnassa temmeltäessä askel on kevyt ja ilmava, ja myös uusia kavereita voi löytää!</p><p>Pomppulinna löytyy Malmitalon kokoushuone 2:sta.</p><p>Vapaa pääsy</p><p>Pomppulinnan Vaippikseen tarjoaa Pienperheyhdistys.</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B36C9C577BD370B624D2BAB5F452C028/Pomppulinna"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63200/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63196",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/#calendar-start=2024-04",
                        "sv": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/#calendar-start=2024-04",
                        "en": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/#calendar-start=2024-04"
                    },
                    "price": {
                        "fi": "5 € per työpaja / esitys, sis. lapsi + aikuinen",
                        "sv": "5 € per työpaja / esitys, sis. lapsi + aikuinen",
                        "en": "5 € per työpaja / esitys, sis. lapsi + aikuinen"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12147,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T14:14:03.091503Z",
                    "last_modified_time": "2024-03-13T14:14:03.091522Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745863.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12147/?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": "2024-03-13T14:14:03.047526Z",
            "last_modified_time": "2024-04-14T07:13:01.540226Z",
            "date_published": null,
            "start_time": "2024-04-14",
            "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": "Vaippakansan karnevaali eli Vaippis, vauvojen ja taaperoiden oma festari, saapuu jälleen!",
                "sv": "Barnens och småbarnens egen festival, Blöjfolkets karneval, kommer igen!",
                "en": "Babies and toddlers’ very own Carnival for Diaper People is back!"
            },
            "name": {
                "fi": "Vaippakansan karnevaali",
                "sv": "Blöjfolkets karneval",
                "en": "Carnival for Diaper People"
            },
            "description": {
                "fi": "<p>Vaippakansan karnevaali eli Vaippis, vauvojen ja taaperoiden oma festari, saapuu jälleen!</p><p>Malmitalo saa taaperot tanssimaan ja kannustaa kurottelemaan kohti kulttuuria, kun talo täyttyy vauvaikäisille suunnatuista työpajoista, musiikista, esityksistä ja muusta vauvaikäisille sopivasta ohjelmasta.</p><p>Nappaa siis pienokaiset kainaloon, olalle tai kantoon ja rullaa rattaasi huhtikuussa Malmitalolle! Ohjelmaa on tarjolla myös maksuttomana.</p><p>Tämän vuoden Vaippiksen teemana on kiehtova vedenalainen maailma, jossa vedelliset aistimukset tervehtivät pienokaisiasi, samalla ohjaten heidät taiteen maailmaan erilaisten aktiviteettien ja ohjelman kautta. Talosta löydät myös värikkään pomppulinnan, joka kutsuu pieniä pomppimaan ja nauttimaan liikkeestä.</p><p>Ei huolta, jos nälkä yllättää tai tarvitset pientä hengähdystaukoa tällä seikkailullasi! Ravintola Zoppa palvelee koko tapahtuman ajan ja tarjoaa herkullista ruokaa niin aikuisille kuin taaperoillekin. Löydät Zoppasta runsaan lounasvalikoiman ja pientä purtavaa monenlaiseen nälkään.</p><p>Huom! Lastenvaunut ja rattaa tulee jättää Malmitalon edustalla sijaitsevaan vartioituun vaunuparkkiin. Varaathan mukaasi kantovälineen tarvittaessa.</p><p><b>Vaippiksen ohjelma klo 10-14</b></p><p>klo 10:15<br>Veden äärellä - Lammikon tohinaa taaperoille -runoesitys<br>Kirjaston monitoimitila, vapaa pääsy</p><p>klo 11 <br>Veden äärellä - Runopulahdus vauvoille -runoesitys <br>Kirjaston monitoimitila, vapaa pääsy</p><p>klo 10–14<br>Vedenalainen maailma: tehdään vesiotuksia tiskirättiin<br>Nonstop-työpaja, vapaa pääsy</p><p>klo 10–13<br>Keltainen hihitys -aistitila<br>Kokoushuone 3<br>Ohjatut taidetuokiot klo 10, 10:40, 11:20, 11:40, 12  ja 12:40<br>Vapaa pääsy, ilmaislippuja jaetaan klo 9:45 alkaen</p><p>klo 10–14<br>Pomppulinna<br>Kokoushuone 2, vapaa pääsy</p><p>klo 10–14<br>Lastentarvikekirppis<br>Malmitalon aula, vapaa pääsy<br>Vaippakansan karnevaalien kirpputoria koordinoi Mannerheimin Lastensuojeluliiton Malmin yhdistys. Vanhempaintoimikunnat ovat tervetulleita myymään. Vanhempaintoimikunnat voivat ottaa yhteyttä Elina Lappalaiseen WhatsAppin tai puhelimen välityksellä 0503552778.</p><p>klo 10–14<br>Onni on olla -näyttely ja leikkitila<br>Malmitalon galleria, vapaa pääsy</p><p>klo 11 ja klo 13<br>Lastenmusiikkiorkesteri Leimu: ”Pidä lujasti kiinni!”<br>Malmisali, vapaa pääsy</p><p>klo 11 ja 13.30<br>AEIOU: Vedet<br>Pieni sali, lippu 5 € (sis. lapsi + aikuinen-pari)</p><p><b>Työpajat</b></p><p>klo 10, 11, 12, 13<br>Vauvojen värikylvyt<br>Taideluokka 3<br>Ikäsuositukset: klo 10 ja klo 13 värikylvyt: 6-18 kk lapsille,<br>klo 11 ja 12 värikylvyt: 18-24 kk lapsille<br>Pajan kesto 45 min<br>Liput 5 € (sis. lapsi + aikuinen)</p><p>klo 10, 11, 12:15 ja 13:15<br>Vauva- ja taaperosirkustyöpajat<br>Tanssisali, liput 5 € (sis. lapsi + aikuinen)</p><p>klo 10 ja 11<br>Muskarit<br>Musiikkiluokka<br>Ikäsuositus: 6-18 kk lapsille aikuisen kanssa<br>Muskarin kesto noin 30 min<br>Lippu 5 €  (sis. lapsi + aikuinen)</p>",
                "sv": "<p>Barnens och småbarnens egen festival, Blöjfolkets karneval, kommer igen!</p><p>På Malms kulturhus får vi småbarnen att dansa och sträcka sig mot kulturen, då huset fylls av workshoppar, musik, föreställningar och annat lämpligt program som riktar sig till bebisar.</p><p>Ta småttingarna med och styr barnvagnen mot Malms kulturhus i april! Även avgiftsfritt program erbjuds.</p><p>Årets tema är den fascinerande undervattensvärlden. I huset hittar du även en färgglad hoppborg, som lockar de små att hoppa och njuta av rörelse.</p><p>Restaurang Zoppa betjänar under hela evenemanget och bjuder på läcker mat både för vuxna och småbarn. I Zoppa hittar du ett rikligt utbud av lunchmåltider och litet tilltugg för olika nivåer av hunger.</p><p><b>Program kl 10-14</b></p><p>kl. 10<br>Vid vattnet – Dammens sus-diktföreställning för småbarn<br>Dikterna framförs på finska.<br>Plats: Bibliotekets allaktivitetslokal, fritt inträde</p><p>kl. 11<br>Vid vattnet – Diktdykning för bebisar-diktföreställning<br>Dikterna framförs på finska.<br>Plats: Bibliotekets allaktivitetslokal, fritt inträde</p><p>kl. 10–14<br>Undervattensvärlden: vi skapar underliga vattendjur i en disktrasa<br>Skapa en skojig disktrasa med vattendjur på äventyr tillsammans med din småtting. <br>8 småbarn-vuxenpar får plats på en gång i workshoppen och man kommer i turen genom att köa på plats.<br>Plats: Balkongen i Malms kulturhus<br>Fritt inträde</p><p>kl. 10–13<br>Sinnesutrymmet Keltainen hihitys (Det gula fnittret)<br>Sinnesutrymmet Keltainen hihitys leder hela familjen till färgernas och lekens glädje! Får gult dig att hoppa? Var bor det gula?<br>Nonstop-workshopp med 20 minuters mellanrum<br>Avgiftsfri, gratisbiljetter till workshopparna delas ut från kl. 9:45.<br>Plats: Mötesrum 3</p><p>kl. 10–14<br>Hoppborg<br>Stegen är lätta och luftiga då vi tumlar om i hoppborgen, och kanske man även hittar nya kompisar!<br>Plats: Mötesrum 2, fritt inträde</p><p>kl. 10–14<br>Loppis för barntillbehör<br>Foajén i Malms kulturhus, fritt inträde</p><p>kl. 10–14<br>Utställningen Onni on olla (Lyckan att vara) och lekutrymme<br>Galleriet i Malms kulturhus, fritt inträde</p><p>kl. 11 och kl. 13<br>Barnmusikorkestern Leimu: ”Pidä lujasti kiinni!” (Håll hårt i)<br>På konserten åker vi på äventyr i en varmluftsballong omkring världen och bekantar oss med olika djur och deras kunskaper.<br>Malmsalen, fritt inträde</p><p>kl. 11 och 13.30<br>AEIOU: Vedet (Vatten)<br>Vedet är levande musik, dockteater och cirkus. Föreställningen sker ovan om och omkring publiken, och är icke-verbal.<br>Lilla salen, biljett 5 € (per barn+vuxen)</p><p><b>Workshoppar</b><br>kl. 10, 11, 12, 13 <br>Färgbad för bebisar<br>Kom med och bada i färger och lär din baby fler sätt att uttrycka sig själv på ett skapande och lekfullt sätt!<br>Färgbad för bebisar varje heltimme, det vill säga kl. 10, 11, 12 och 13.</p><p>Åldersrekommendationer: <br>workshopparna kl. 10 och 13 lämpar sig bäst för 6–18 mån. gamla barn<br>workshopparna kl. 11 och 12 lämpar sig bäst för 18–24 mån. gamla barn</p><p>Workshoppens längd 45 min<br>Plats: Konstklass 3<br>Biljetter 5 € / barn + vuxen</p><p>kl. 10, 11, 12:15 och 13:15<br>Cirkusworkshoppar för bebisar och småbarn<br>Kom med och upplev cirkuskonstens tjusning med din baby eller ditt småbarn!</p><p>Cirkusworkshoppar i danssalen vid Malms kulturhus kl. 10, 11, 12:15 och 13:15</p><p>Åldersrekommendationer:<br>workshopparna kl. 10 och 13:15 lämpar sig bäst för 6–18 mån. gamla barn<br>workshopparna kl. 11 och 12:15: lämpar sig bäst för 18–24 mån. gamla barn</p><p>Workshoppens längd är 45 min<br>Plats: Danssalen<br>Biljetter 5 € (inklusive barn + vuxen)</p><p>kl. 10 och 11<br>Musikskola för bebisar<br>I musikklassen klingar sångerna och barnen får utforska musikens förtrollande värld tillsammans med en musiklärare.<br>Åldersrekommendation: 6–18 mån. gamla barn i sällskap av en vuxen<br>Musikskolans längd är cirka 30 min.<br>Plats: Musikklassen<br>Biljetter 5 € (inklusive barn + vuxen)</p><p>kl. 10–14<br>Utställningen Onni on olla (Lyckan att vara) och lekutrymme<br>Onni on olla är en utställning och ett lekutrymme för 2–8-åringar. Utställningen baserar sig på Sanna Pelliccionis bildboksserie ONNI som utkom år 2007.</p><p>Plats: Galleriet i Malms</p>",
                "en": "<p>Babies and toddlers’ very own Carnival for Diaper People is back!</p><p>Malmitalo gets toddlers to dance and reach for culture, when the cultural centre fills up with young children’s workshops, music, performances and other programming for young children.<br>So, grab your little ones and roll your pram up to Malmitalo in April!</p><p>We have events that are free of charge, as well.<br>This year’s theme is the fascinating underwater world. We also have a colourful bouncy castle for the little ones to bounce around and enjoy some physical activity.</p><p>Restaurant Zoppa will be open for the entire event with delicious food for both the adults and toddlers. Zoppa sells a wide variety of lunches as well as snacks when you’re feeling peckish.</p><p><b>Programme at 10 am to 2 pm</b></p><p>10 am<br>Veden äärellä - Lammikon tohinaa (poetry reading for toddlers)<br>Poetry reading session for toddlers, in Finnish.<br>Place: The library's multifunctional space, free of charge</p><p>11 am<br>Veden äärellä - Runopulahdus (poetry reading for babies)<br>Poetry reading session for babies, in Finnish.<br>Place: The library's multifunctional space, free of charge</p><p>10 am–2 pm<br>Underwater world: imprinting water creatures on dishrags<br>Make a fun dishrag that has water creatures on it with your toddler.  The workshop has spaces for 8 adult-child pairs at once, line up for a ticket at the entrance.<br>Place: Malmitalo gallery<br>Free of charge</p><p>10 am–1 pm<br>Keltainen hihitys sensory space<br>The Keltainen hihitys sensory space introduces the whole family to the joy of colours and play! Does the colour yellow make you bounce? Where does yellow live?<br>Nonstop workshop, every 20 minutes<br>Admission is free, workshop tickets are given out from 9:45 am<br>Place: Meeting room 3</p><p>10 am–2 pm<br>Bouncy castle<br>Lighten your steps and catch some air at the bouncy castle – maybe even find new friends!<br>Place: Meeting room 2, free of charge</p><p>10 am–2 pm<br>Flea market for children’s accessories<br>Malmitalo lobby, free of charge</p><p>10 am–2 pm<br>Onni on olla (Happiness is to Be) exhibition and playroom<br>Malmitalo art gallery, free of charge</p><p>11 am–13 pm<br>Children's music orchestra Leimu: “Pidä lujasti kiinni!” (Children’s music)<br>This concert is all about going on an adventure on a hot-air balloon and getting to know various animals and their skills.<br>Malmisali, free of charge</p><p>11 am and 1:30 pm<br>AEIOU: Vedet<br>Vedet (Water) is a live music, puppet theatre and circus performance. This non-verbal show happens above and around the audience.<br>Small hall, tickets €5 (for an adult + child pair)</p><p><b>Workshops</b><br>10 am, 11 am, 12 noon and 1 pm <br>Colour baths for babies<br>Bathe in colour and teach your baby more ways of playful and creative expression!</p><p>Colour baths every hour at. 10 am, 11 am, 12 noon, and 1 pm.<br>Age recommendations: <br>Workshops at 10 am and 1 pm are suited for children aged 6–18 months<br>Workshops at 11 am and 12 noon are suited for children aged 18–24 months</p><p>Workshop duration: 45 min<br>Place: Art room 3<br>Tickets €5 / adult + child</p><p>10 am, 11 am, 12:15 pm and 1:15 pm<br>Circus workshops for babies and toddlers<br>Experience enchanting circus art with your baby or toddler!</p><p>Circus workshops at the Malmitalo dance hall at 10 am, 11 am, 12:15 pm and 1:15 pm</p><p>Age recommendations:<br>Workshops at 10 am and 1:15 pm are suited for children aged 6–18 months<br>Workshops at 11 am and 12:15 pm are suited for children aged 18–24 months</p><p>Workshop duration: 45 min<br>Place: Dance hall<br>Tickets €5 (incl.  adult + child)</p><p>10 am and 11 am<br>Music playschool for babies<br>In the music classroom, children get to listen to songs and explore the magical world of music with a music teacher.<br>Age recommendation: For children aged 6–18 months with an adult<br>Music playschool duration approx. 30 min<br>Place: Music classroom<br>Tickets €5 (incl.  adult + child)</p><p>10 am–2 pm<br>Onni on olla (Happiness is to Be) exhibition and playroom<br>Happiness is to Be is an exhibition and play space for children aged 2 to 8 years. It is based on Sanna Pelliccioni’s Onni picture book series that ha</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/03DB535DCE8BED78EC3DD1BB75355C3D/Vaippakansan_karnevaali",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/03DB535DCE8BED78EC3DD1BB75355C3D/Blojfolkets_karneval",
                "en": "http://www.malmitalo.fi/en/events/event/03DB535DCE8BED78EC3DD1BB75355C3D/Carnival_for_Diaper_People"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63196/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63354",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/kurdiartisti-dilniya-rezazin-konsertti-3631848/"
                    },
                    "price": {
                        "fi": "33,50 € / 28,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 131897,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-12T13:13:01.948609Z",
                    "last_modified_time": "2024-04-12T13:13:01.948626Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746554.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/131897/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-12T13:13:01.902755Z",
            "last_modified_time": "2024-04-12T13:13:02.002137Z",
            "date_published": null,
            "start_time": "2024-04-19T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Korkeatasoisesta musiikista tunnettu kurdiartisti Dilniya Rezazî saapuu Suomeen ensimmäistä kertaa."
            },
            "name": {
                "fi": "Kurdiartisti Delniya Rezazin konsertti – Kurdimusiikkia huipulta!"
            },
            "description": {
                "fi": "<p>Korkeatasoisesta musiikista tunnettu kurdiartisti Dilniya Rezazî saapuu Suomeen ensimmäistä kertaa.</p><p>Konsertin ohjelmassa on sekä perinteistä että uutta kurdimusiikkia. Ohjelma juonnetaan suomeksi ja kurdiksi. Lämpimästi tervetuloa mukaan!</p><p>Kesto noin 3h. 45 min, väliaika on</p><p>Järj. Suomen Kurdiliitto</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2B645D730E126AA8987A8EFAD696F04D/Kurdiartisti_Delniya_Rezazin_konsertti"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63354/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4omgy",
            "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:agggfz66i4/?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:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omaa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omdq/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-04-12T12:37:55.166518Z",
            "last_modified_time": "2024-04-12T12:37:55.166632Z",
            "date_published": "2024-04-12T12:55:17.114000Z",
            "start_time": "2024-04-26T13:00:00Z",
            "end_time": "2024-05-03T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Kirjoitusklubi on nuorten järjestämä, 7-14-vuotiaille nuorille tarkoitettu kerho.\n\nKielinä suomi ja englanti.",
                "sv": "Skrivklubb är en klubb för ungdomar i åldern 7-14 år, organiserad av ungdomar.\n\nSpråken är finska och engelska.",
                "en": "The Writing Club is a club for young people aged 7-14, organised by young people.\n\nThe languages are Finnish and English."
            },
            "name": {
                "fi": "Nuorten kirjoitusklubi",
                "sv": "Skrivklubb för unga",
                "en": "Youth writing club"
            },
            "description": {
                "fi": "<p>Klubissa kirjoitetaan itse omia tarinoita ja luetaan niitä toisille, piirretään, askarrellaan ja pelataan.</p><p>Kielinä suomi ja englanti.<br></p>",
                "sv": "<p>I klubben skriver vi våra egna berättelser och läser dem för andra, ritar, pysslar och spelar spel.</p><p>Språken är finska och engelska.<br></p>",
                "en": "<p>We write our own stories and read them to others, draw, do arts and crafts and play games.</p><p>The languages are Finnish and English.<br></p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omgy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:aghnd7rrg4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:22/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:9/?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:p16485/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null,
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "kultus:6",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:56/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:58/?format=api"
                }
            ],
            "created_time": "2024-04-12T11:08:00.712031Z",
            "last_modified_time": "2024-04-12T12:20:53.577385Z",
            "date_published": null,
            "start_time": "2024-04-12T12:20:47.325000Z",
            "end_time": "2024-04-14T12: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": "2024-04-12T14:10:00+03:00",
            "enrolment_end_time": "2024-04-14T12:21:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Testijonotustapahtuma 2024-04-10",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Testijonotustapahtuma 2024-04-10",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Testijonotustapahtuma 2024-04-10</p>\n",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.example.org/testikuva/",
                "sv": "",
                "en": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aghnd7rrg4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63199",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 12320,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T08:13:59.837479Z",
                    "last_modified_time": "2024-03-14T08:13:59.837507Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745334.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12320/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T08:13:59.785325Z",
            "last_modified_time": "2024-04-12T08:13:40.685431Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T10: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": "Keltainen hihitys -aistitila johdattaa koko perheen värien ja leikin riemuun! Saako keltainen sinut pomppimaan? Missä keltainen asustaa?"
            },
            "name": {
                "fi": "Keltainen hihitys -aistitila – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Keltainen hihitys -aistitila johdattaa koko perheen värien ja leikin riemuun! Saako keltainen sinut pomppimaan? Missä keltainen asustaa?</p><p>Keltaisen riemukkaissa rytmeissä liikutaan, lorutellaan ja leikitään. Suristaan kuin ampiaiset, pompitaan kuin banaanit, hihitellään kuin aurinko! Sujahda aurinkovarjon alle ja ihmettele valojen säihkettä! Kuti kuti kutisee, kainalosta varpaaseen! Mistä kurkkaa keltainen? Nappaa mukaasi pieni ilon pilkahdus, tervetuloa!</p><p>Keltainen hihitys on ohjattu taidetuokio perheille, yhden tuokion kesto on noin 20 min.</p><p>Ohjatut taidetuokiot alkavat klo 10:00, 10:40, 11:20, 11:40, 12:00 ja 12:40.</p><p>Vapaa pääsy, ilmaislippuja jaetaan klo 9.45 alkaen kokoushuone 3 edustalla.</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/966EF551550886369BCCCA65133ADD90/Keltainen_hihitys_-aistitila"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63199/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63210",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/"
                    },
                    "price": {
                        "fi": "5 € (lapsi+aikuinen)"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12377,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T11:14:03.382896Z",
                    "last_modified_time": "2024-03-14T11:14:03.382914Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745330.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12377/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T11:14:03.357914Z",
            "last_modified_time": "2024-04-11T13:14:03.993718Z",
            "date_published": null,
            "start_time": "2024-04-14T10: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": "Vedet on elävää musiikkia, nukketeatteria ja sirkusta."
            },
            "name": {
                "fi": "LOPPUUNMYYTY AEIOU: Vedet – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Vedet on elävää musiikkia, nukketeatteria ja sirkusta.</p><p>Vedet on moniaistinen esitys lasten ajatuksista vedestä: sateesta, jäästä, meristä, uimisesta, suihkuista, virvokkeista, pastan keitinvedestä ja lirahduksesta.</p><p>Esitys tapahtuu yleisön yllä ja ympärillä ja se on sanaton.</p><p>Esitys huomioi vauvojen erityispiirteet yleisönä, mutta puhuttelee myös laajempaa yleisöä. Taiteellisen työryhmän rinnalla esityssisällöstä vastaa Kulttuurikeskus PiiPoon 5–8-vuotiaista koostuva Väriläiskä-asiantuntijaryhmä.</p><p>Vedet-esitys klo 11 ja 13.30<br>Kesto 30 min<br>Liput 5 € (lapsi+aikuinen)</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7FB671986173B24721818C5A4860B841/LOPPUUNMYYTY_AEIOU_Vedet"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63210/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63209",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/"
                    },
                    "price": {
                        "fi": "5 € (lapsi+aikuinen)"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12375,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T11:14:03.113657Z",
                    "last_modified_time": "2024-03-14T11:14:03.113674Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745329.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12375/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T11:14:03.088768Z",
            "last_modified_time": "2024-04-11T13:14:03.829397Z",
            "date_published": null,
            "start_time": "2024-04-14T08: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": "Vedet on elävää musiikkia, nukketeatteria ja sirkusta."
            },
            "name": {
                "fi": "LOPPUUNMYYTY AEIOU: Vedet – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Vedet on elävää musiikkia, nukketeatteria ja sirkusta.</p><p>Vedet on moniaistinen esitys lasten ajatuksista vedestä: sateesta, jäästä, meristä, uimisesta, suihkuista, virvokkeista, pastan keitinvedestä ja lirahduksesta.</p><p>Esitys tapahtuu yleisön yllä ja ympärillä ja se on sanaton.</p><p>Esitys huomioi vauvojen erityispiirteet yleisönä, mutta puhuttelee myös laajempaa yleisöä. Taiteellisen työryhmän rinnalla esityssisällöstä vastaa Kulttuurikeskus PiiPoon 5–8-vuotiaista koostuva Väriläiskä-asiantuntijaryhmä.</p><p>Vedet-esitys klo 11 ja 13.30<br>Kesto 30 min<br>Liput 5 € (lapsi+aikuinen)</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BB36D27E4A87F9FFAF8E052E6AA9A49C/LOPPUUNMYYTY_AEIOU_Vedet"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63209/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63204",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/"
                    },
                    "price": {
                        "fi": "5 € (lapsi + aikuinen)"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12339,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T09:19:03.910822Z",
                    "last_modified_time": "2024-03-14T09:19:03.910840Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745352.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12339/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T09:19:03.894911Z",
            "last_modified_time": "2024-04-11T13:14:03.598172Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T08: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 mukaan muskariin, jossa nauru raikaa, laulut soivat ja lapset pääsevät tutkimaan yhdessä musiikkiopen kanssa musiikin taianomaista maailmaa!"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Vauvamuskarit – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Tule mukaan muskariin, jossa nauru raikaa, laulut soivat ja lapset pääsevät tutkimaan yhdessä musiikkiopen kanssa musiikin taianomaista maailmaa!</p><p>6–18 kuukauden ikäisille lapsille soveltuva musiikkityöpaja tutustuttaa perheen pienokaiset musiikin ihastuttavaan maailmaan ja saa heidät soittamaan ja laulamaan yhdessä lasten musiikkikasvatukseen perehtyneen ammattilaisen kanssa.</p><p>Muskarin tarkoituksena on opettaa lapsille luovaa itseilmaisua ja kehittää lasten kiinnostusta musikaalisuutta kohtaan. Ryhmässä musisoiminen opettaa taaperoille myös yhteistyötä ja vuorovaikutustaitoja samalla kun se rakentaa pienokaisen ilmaisutaitoa.</p><p>Vauvamuskarit järjestetään klo 10 ja 11</p><p>Ikäsuositus: 6-18 kk lapsille aikuisen kanssa</p><p>Muskarin kesto noin 30 min</p><p>Liput 5 €  (lapsi + aikuinen)</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/43B77058A7361A33508BF60FB1ED2542/LOPPUUNMYYTY_Vauvamuskarit"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63204/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63203",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/"
                    },
                    "price": {
                        "fi": "5 € (lapsi+aikuinen)"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12371,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T11:14:02.465066Z",
                    "last_modified_time": "2024-03-14T11:14:02.465089Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745344.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12371/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T11:14:02.425552Z",
            "last_modified_time": "2024-04-11T13:14:03.518251Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T10: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 värikkääseen ja iloiseen sirkustyöpajaan, jossa pienokaiset pääsevät tutustumaan sirkuksen lumoavaan maailmaan!"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Vauva- ja taaperosirkustyöpajat – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Tervetuloa värikkääseen ja iloiseen sirkustyöpajaan, jossa pienokaiset pääsevät tutustumaan sirkuksen lumoavaan maailmaan!</p><p>Pukinmäen sirkuskoulun opettajat ohjaavat taaperoita innostavien sirkusaktiviteettien äärellä.</p><p>Sirkustyöpajassa lapset saavat nauttia liikkeen riemusta, kokea värien lumoa ja osallistua vuorovaikutteisiin leikkeihin. Tärkeintä on ilo ja hauskuus, jotka rohkaisevat pienokaisia liikkumaan ja oppimaan uusia asioita.</p><p>Tule mukaan kokemaan sirkustaiteen lumo taaperosi kanssa!</p><p>Sirkustyöpajat Malmitalon tanssisalissa klo 10, 11, 12:15 ja 13:15</p><p>Ikäsuositukset:<br>klo 10 ja 13:15 työpajat soveltuvat parhaiten 6-18 kk ikäisille lapsille klo 11 ja 12:15: työpajat soveltuvat parhaiten 18-24 kk ikäisille lapsille</p><p>Työpajan kesto on 45 min</p><p>Lippu 5 € (lapsi + aikuinen)</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1E0F1CB0CA517EBDC688BD3D20B2607D/LOPPUUNMYYTY_Vauva-_ja_taaperosirkustyopajat"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63203/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63201",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/"
                    },
                    "price": {
                        "fi": "5 € (lapsi + aikuinen)"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12338,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T09:19:03.815415Z",
                    "last_modified_time": "2024-03-14T09:19:03.815435Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745339.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12338/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T09:19:03.801567Z",
            "last_modified_time": "2024-04-11T13:14:03.404052Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T10: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": "Tule mukaan kylpemään väreissä ja opeta vauvallesi lisää tapoja ilmaista itseään luovasti ja leikkisästi!"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Vauvojen värikylvyt – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Tule mukaan kylpemään väreissä ja opeta vauvallesi lisää tapoja ilmaista itseään luovasti ja leikkisästi!</p><p>Pohjois-Helsingin kuvataidekoulun järjestämät moniaistilliset värikylvyt ovat vauvoille suunnattu elämyksellinen tapa tutustua kuvataiteen maailmaan. Värien, materiaalien ja sävyjen rikkaus avautuu perheen pienimmille taiteellisessa työpajassa.</p><p>Työpajan aikana vauvat saavat kokea värejä monin eri tavoin, kun heidän aistinsa ja sormensa kylpevät kirkkaissa ja eloisissa sävyissä. Vanhemmat voivat osallistua toimintaan yhdessä vauvojensa kanssa.</p><p>Vauvojen värikylvyt aina tasatunnein eli klo 10, 11, 12 ja 13.</p><p>Ikäsuositukset: <br>klo 10 ja 13 olevat työpajat sopivat parhaiten 6-18 kk ikäisille lapsille<br>klo 11 ja 12 olevat työpajat sopivat parhaiten 18-24 kk ikäisille lapsille</p><p>Työpajan kesto 45 min<br>Paikka: Taideluokka 3<br>Liput 5 € / lapsi + aikuinen</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5385D3121389138A2678757B60492A68/LOPPUUNMYYTY_Vauvojen_varikylvyt"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63201/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63195",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/aloha-night-2024-3614151/",
                        "sv": "https://www.lippu.fi/eventseries/aloha-night-2024-3614151/",
                        "en": "https://www.lippu.fi/eventseries/aloha-night-2024-3614151/"
                    },
                    "price": {
                        "fi": "20 €",
                        "sv": "20 €",
                        "en": "20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 125328,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-11T12:13:44.540994Z",
                    "last_modified_time": "2024-04-11T12:13:44.541019Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745862.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/125328/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-11T12:13:44.517194Z",
            "last_modified_time": "2024-04-11T12:13:44.602275Z",
            "date_published": null,
            "start_time": "2024-05-25T13: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": "Tutustu Tyynenmeren saarten kulttuuriin värikkäiden tanssiesitysten saattelemana!",
                "en": "Come and enjoy the music and dances of Polynesia!"
            },
            "name": {
                "fi": "Aloha Night – Polynesian Dance Show",
                "sv": "Aloha Night – Polynesian Dance Show",
                "en": "Aloha Night – Polynesian Dance Show"
            },
            "description": {
                "fi": "<p>Tutustu Tyynenmeren saarten kulttuuriin värikkäiden tanssiesitysten saattelemana!</p><p>Ukulelen soinnut, hypnoottiset rummut ja kaislahameiden kahina vievät mielen paratiisisaarille palmujen katveeseen.</p><p>Aloha Nightissa näet perinteisiä tansseja mm. Havaijilta, Tahitilta, Cookin saarilta, Tongalta ja Samoalta.</p><p>Tanssitapahtumalla kerätään varoja kehitysprojektia varten.</p><p>Järjestäjä: PIFS: Tyynenmeren Saarten Ystävyysseura ry</p>",
                "en": "<p>Come and enjoy the music and dances of Polynesia!</p><p>Our “Aloha Night” is the only event that showcases the exotic, hypnotic and colourful dances from the Pacific Islands such as Cook Islands, Hawaii, Samoa, Tahiti and Tonga. It is our fund-raising event for our future Development Project in the Pacific.</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9BE58BAD9E63834CBE79E3AFF1BD7A72/Aloha_Night",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9BE58BAD9E63834CBE79E3AFF1BD7A72/Aloha_Night",
                "en": "http://www.malmitalo.fi/en/events/event/9BE58BAD9E63834CBE79E3AFF1BD7A72/Aloha_Night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63195/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4om7q",
            "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:agggfz66i4/?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:agggfz67wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omqm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omtu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omxm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4om3q/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-04-11T09:49:02.188528Z",
            "last_modified_time": "2024-04-11T09:49:02.188558Z",
            "date_published": "2024-04-11T10:00:47.639000Z",
            "start_time": "2024-04-24T06:30:00Z",
            "end_time": "2024-05-29T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Mannerheimin lastensuojeluliitto, Soukan yhdistys"
            },
            "short_description": {
                "fi": "Tervetuloa Lippulaivan perhekahvilaan keskiviikkoisin klo 9.30 - 11.00!"
            },
            "name": {
                "fi": "MLL-perhekahvila"
            },
            "description": {
                "fi": "<p>Tervetuloa Lippulaivan perhekahvilaan!<br>MLL:n perhekahvilassa voit tutustua oman alueen vanhempiin, löytää<br>lapselle leikkiseuraa ja ihan vain hengähtää hetken.<br>MLL Soukan yhdistys käynnistää uuden perhekahvilan Lippulaivan<br>kirjaston perhetilassa 17.4. klo 9.30 - 11.00 alkaen joka keskiviikko.<br>Keväälle suunniteltu mm. kirjaston loruhetki 22.5.<br>Tarjolla pientä purtavaa.</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Perhealue"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4om7q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63115",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://web.lippu.fi/palautus/"
                    },
                    "price": {
                        "fi": "28,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11098,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-28T10:14:03.998662Z",
                    "last_modified_time": "2024-02-28T10:14:03.998684Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745007.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11098/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-28T10:14:03.956582Z",
            "last_modified_time": "2024-04-11T09:12:54.213653Z",
            "date_published": null,
            "start_time": "2024-04-13T15: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": {
                "fi": "Baltimex Events"
            },
            "short_description": null,
            "name": {
                "fi": "Visa - Karim Gharbi – TAPAHTUMA ON PERUTTU!"
            },
            "description": {
                "fi": "<p><b>La 13.4.2024 Visa - Karim Gharbi -esitys Savoy-teatterissa on peruttu.</b></p><p>Jo maksetuista lipuista tulee hakea rahanpalautusta sunnuntaihin 21.4.2024 mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelu- tai toimitusmaksuja.</p><p>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/<br> <br>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br> <br>Tapahtumajärjestäjä Baltimex Events sekä Savoy-teatteri ja Lippupiste pahoittelevat peruuntumisesta aiheutuvaa harmia.</p><p>****</p><p>Arabiankielinen stand up show</p><p>Ikäsuositus: 4+</p><p>Kesto n. 2 h, ei väliaikaa</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2517B5833773F976BC7C7366F0E830B8/Visa_-_Karim_Gharbi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63115/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4onhe",
            "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:p13084/?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:p2771/?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:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4or2y/?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": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T13:10:53.160249Z",
            "last_modified_time": "2024-04-11T05:47:31.371274Z",
            "date_published": "2024-03-19T23:00:00Z",
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T15: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": "Kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta.",
                "sv": "Ett intressant och underhållande program om en mer hållbar livsstil.",
                "en": "An interesting and entertaining program about a more sustainable lifestyle. "
            },
            "name": {
                "fi": "Espoon kirjastojen Ympäristökevät",
                "sv": "Esbobibliotekens Miljövår",
                "en": "The Espoo libraries' Environmental Spring"
            },
            "description": {
                "fi": "<p>Toista kertaa toteutettava Espoon kirjastojen Ympäristökevät sisältää taas kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta. Esitysten sisällöistä vastaavat HSY, Omnia, Luontoliitto, Kestävän kehityksen osaamiskeskus, Villa Elfvik sekä Espoon ympäristöyhdistys. Ohjelma sijoittuu viiteen kirjastoon. </p><p>Entresse </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat Entressen kirjastoon yhteisnäyttelyn. Näyttelyssä kerrotaan hulevedestä ja siitä, miten se liittyy Itämeren roskaantumiseen. Omnia esittelee huleveden hyödyntämistä pihoissa ja puutarhoissa. Toinen osa näyttelystä kertoo typpikuormasta, eli kuinka liiallinen proteiinin syönti rehevöittää Itämerta. Omnian opiskelijat esittelevät proteiinipitoisten kasvien kaupunkiviljelyä. Näyttely on esillä Entressen kirjastossa 8.-29.4. </p><p>Lumoudu kaupunkiluonnosta -näyttely. 8. - 14.4. Järjestää Villa Elfvik. Lumoudu kaupunkiluonnosta -näyttely esittelee luontotekoja, joiden avulla voit auttaa luonnonkirjoa säilyttämään loistonsa. Pysäytetään yhdessä luontokato! </p><p>Tunnista pörriäiset. Ti 9.4. klo 17. Esityksen Entressen kirjaston Estradilla järjestää Espoon ympäristöyhdistys. Opitaan tunnistamaan  kimalaiset ja muutkin kukissa pörräävät ötökät. </p><p>Luontoliiton Kevätseuranta ja tutustumista lepakonpönttöihin. Ke 10.4. klo 13-18. Kevätseuranta on tutkimusmatka kasvi- ja eläinlajien avulla kevään ihmeisiin. Kevätseurannan teemana vuonna 2024 on muuttuva metsä. Tule tutustumaan lähikirjastollesi Kevätseurannan lajeihin ja osallistumaan keväisiin haasteisiin. Järjestämme kirjastolla lisäksi lepankonpönttöihin tutustumista yhdessä Omnian kanssa. Tiesitkö, että Suomessa elää yhteensä yhdeksän eri lepakkolajia, jotka kaikki ovat rauhoitettuja. </p><p>Hulevesi- ja roskakävely. Ke 10.4. klo 17.00 lähdemme liikkeelle Entressen kirjastosta. Tule mukaan hulevesi- ja roskakävelylle!  Kävelylle nappaamme mukaan roskienkeruuvälineet. Matkan varrella kuulemme ja keskustelemme yleisesti hulevedestä, sen hallinnasta ja laadusta, sekä siitä, miten hulevesi liittyy roskiin ja vesistöjen roskaantumiseen. Kävelemme Entressestä kohti Espoonjokea keräten samalla roskia. Kävelyn kesto on noin 1,5 tuntia. Tapahtuman järjestää HSY yhteistyössä Espoon kaupungin kanssa. </p><p>Lippulaiva </p><p>Energiakiertokävelyt Lippulaivassa ti 9.4. klo 12–13 ja ke 10.4. klo 16–17. Ilmoittaudu mukaan https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Espoon kaupungin energiailtama<br>ke 10.4. klo 17–19.30. Katso lisätiedot ja tarkempi ohjelma https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p><br>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 10. - 24.6. </p><p>Sello </p><p>Energiakiertokävelyt Sellossa to 11.4. klo 12–13.30 ja 16–17.30.<br>Ilmoittaudu mukaan:https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 24.6. - 15.7. </p><p>Iso Omena </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 29.4.-18.5. </p><p>Tapiola </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 20.5. - 10.6. </p>",
                "sv": "<p>Esbobibliotekens Miljövår, som hålls för andra gången, innehåller återigen ett intressant och underhållande program om en mer hållbar livsstil. HRM, Omnia, Luontoliitto, Centrum för hållbar utveckling, Villa Elfvik och Esbo Miljöförening ansvarar för innehållet i presentationerna. Programmet äger rum på fem bibliotek.</p><p>Entresse</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med en gemensam utställning till Entresse bibliotek. Utställningen berättar om dagvatten och hur det är relaterat till nedskräpningen av Östersjön. Omnia presenterar användningen av dagvatten i gårdar och trädgårdar. Den andra delen av utställningen berättar om kvävebelastningen, det vill säga hur överdriven proteinkonsumtion gör Östersjön frodig. Omnias elever presenterar urban odling av proteinrika växter. Utställningen visas på Entresse bibliotek 8-29 april.</p><p>Bli förtrollad av urban naturutställning. 8. - 14.4. Arrangeras av Villa Elfvik. Utställningen \"Bli förtrollad av urban natur\" visar verk av naturen som du kan använda för att hjälpa naturen att bevara sin prakt. Låt oss tillsammans stoppa naturens förstörelse!</p><p>Identifiera pälsen. Tis 9.4. kl 17. Föreställningen arrangeras av Esbo miljöförening på Entresse biblioteks Estradi. Låt oss lära oss att identifiera humlor och andra insekter som surrar runt blommor.</p><p>Luontoliittos Vårövervakning och bekantskap med fladdermusen. Ons 10.4. från 13:00 till 18:00. Kevätseuranta är ett utforskande av vårens under med hjälp av växt- och djurarter. Temat för vårbevakningen 2024 är den föränderliga skogen. Kom till ditt lokala bibliotek för att lära känna Våruppföljningens sporter och delta i vårens utmaningar. På biblioteket anordnar vi även en introduktion till fladdermushus tillsammans med Omnia. Visste du att totalt nio olika arter av fladdermöss lever i Finland, som alla är fridlysta.</p><p>Dagvatten och sopvandring. Ons 10.4. kl 17:00 går vi från Entresse bibliotek. Följ med till dagvatten och sopvandring! Till promenaden tar vi med oss ​​sophämtningsutrustningen. Längs vägen kommer vi att höra och diskutera dagvatten i stort, dess hantering och kvalitet samt hur dagvatten är relaterat till sopor och nedskräpning av vattendrag. Vi går från Entresse mot Esbo å och samlar samtidigt sopor. Vandringens längd är ca 1,5 timme. Evenemanget arrangeras av HRM i samarbete med Esbo stad.</p><p>Lippulaiva</p><p>Energicykelvandringar i flaggskeppet tis 9.4. 12–13 och ons 10.4. kl 16–17. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energikväll i Esbo stad Ons 10.4. från 17:00 till 19:30. Se ytterligare information och ett mer detaljerat program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas 10-24 juni.</p><p>Sello</p><p>Energicykelvandringar i Sello tors 11.4. från 12:00 till 13:30 och från 16:00 till 17:30. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 24.6. - 15.7.</p><p>Iso Omena</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas från 29 april till 18 maj.</p><p>Tapiola</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 20.5. - 10.6.</p>",
                "en": "<p>The Espoo libraries' Environmental Spring, which will be held for the second time, again contains an interesting and entertaining program about a more sustainable lifestyle. HSY, Omnia, Luontoliitto, Center for Sustainable Development, Villa Elfvik and the Espoo Environmental Association are responsible for the content of the presentations. The program takes place in five libraries.</p><p>Entresse</p><p>Exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's educational municipality association Omnia are bringing a joint exhibition to the Entresse library. The exhibition tells about stormwater and how it is related to the littering of the Baltic Sea. Omnia presents the use of stormwater in yards and gardens. The second part of the exhibition tells about the nitrogen load, i.e. how excessive protein consumption makes the Baltic Sea lush. Omnia's students present the urban cultivation of protein-rich plants. The exhibition is on display at the Entresse library from 8 to 29 April.</p><p>Be enchanted by urban nature exhibition. 8. - 14.4. Organized by Villa Elfvik. The \"Be enchanted by urban nature\" exhibition presents works of nature that you can use to help the natural world preserve its splendor. Let's stop the destruction of nature together!</p><p>Identify the furries. Tue 9.4. at 5 p.m. The performance is organized by Espoo's environmental association at Entresse library's Estrada. Let's learn to identify bumblebees and other insects that buzz around flowers.</p><p>The Finnish Nature Association's Kevätseuranta and getting to know the bat roosts Wed 10.4. from 13:00 to 18:00. Kevätseuranta is an exploration of the wonders of spring with the help of plant and animal species. The theme of spring monitoring in 2024 is the changing forest. Come to your local library to get to know the sports of Spring Follow-up and participate in the spring challenges. In the library, we also organize an introduction to bat houses together with Omnia. Did you know that a total of nine different species of bats live in Finland, all of which are protected.</p><p>Stormwater and trash walk. Wed 10.4. at 17:00 we leave from Entresse library. Come along to the stormwater and trash walk! For the walk, we take the garbage collection equipment with us. Along the way, we will hear and discuss stormwater in general, its management and quality, as well as how stormwater is related to garbage and littering of waterways. We walk from Entresse towards the Espoonjoki, collecting garbage at the same time. The duration of the walk is about 1.5 hours. The event is organized by HSY in cooperation with the city of Espoo.</p><p>Lippulaiva</p><p>Energy cycle walks in Flagship Tue 9.4. 12–13 and Wed 10.4. at 16–17. sign up https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energy evening of the city of Espoo<br>Wed 10.4. from 17:00 to 19:30. See additional information and a more detailed program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 10 to 24 June.</p><p>Sello</p><p>Energy cycle walks in Sello Thu 11.4. from 12:00 p.m. to 1:30 p.m. and from 4:00 p.m. to 5:30 p.m.<br>Sign up: https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 24.6. - 15.7.</p><p>Iso Omena</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 29 April to 18 May.</p><p> Tapiola</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 20.5. - 10.6.</p>"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onhe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4ooeu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onsm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onwa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onzy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4on5e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ooba/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-10T11:20:32.616600Z",
            "last_modified_time": "2024-04-10T11:20:32.616626Z",
            "date_published": null,
            "start_time": "2024-05-14T07:00:00Z",
            "end_time": "2024-06-18T07:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Espoon kaupungin liikuntapalvelut "
            },
            "short_description": {
                "fi": "Tiistaisin Espoon liikuntapalveluiden ohjaamaa tuolijumppaa kirjastolla klo 10-10.45 "
            },
            "name": {
                "fi": "Tuolijumppa (kesäkausi)"
            },
            "description": {
                "fi": "<p>Tiistaisin Espoon liikuntapalveluiden ohjaamaa tuolijumppaa kirjastolla klo 10-10.45 (ei ennakkoilmoittautumista).</p><p>Tuolijumpan kesäkausi</p><p>tiistai 7.5. ei tuolijumppaa kirjastolla <br>(liikuntapalvelut pitävät ulkokuntosalikiertuetta)</p><p>14.5.2024 kirjaston Stagella<br>10.00-10.45 Tuolijumppa</p><p>21.5.2024 kirjaston Stagella<br>10.00-10.45 Tuolijumppa</p><p>28.5.2024 kirjaston lasten- ja nuortentila VOX <br>10.00-10.45 Tuolijumppa</p><p>4.6.2024 kirjaston lasten- ja nuortentila VOX<br>10.00-10.45 Tuolijumppa</p><p>11.6.2024 kirjaston Stagella<br>10.00-10.45 Tuolijumppa</p><p>18.6.2024 kirjaston Stagella<br>10.00-10.45 Tuolijumppa<br></p>"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage tai VOX (lasten- ja nuortentila) "
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ooeu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}