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

{
    "meta": {
        "count": 35273,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=977&show_all=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=975&show_all=true"
    },
    "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": [],
                    "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/"
                    },
                    "description": null,
                    "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,
            "name": {
                "fi": "Kauri Honkakoski Company: PULPETTI",
                "sv": "Kauri Honkakoski Company: PULPET",
                "en": "Kauri Honkakoski Company: THE DESK"
            },
            "location_extra_info": 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."
            },
            "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_"
            },
            "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,
            "@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": [],
                    "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/"
                    },
                    "description": null,
                    "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,
            "name": {
                "fi": "LOPPUUNMYYTY Kauri Honkakoski Company: PULPETTI",
                "sv": "SLUTSÅLD Kauri Honkakoski Company: PULPET",
                "en": "SOLD OUT Kauri Honkakoski Company: THE DESK"
            },
            "location_extra_info": 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."
            },
            "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_"
            },
            "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,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61905/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61904",
            "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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7169,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-15T08:14:16.872882Z",
                    "last_modified_time": "2024-02-06T13:23:35.839822Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739254.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7169/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-15T08:14:16.841789Z",
            "last_modified_time": "2024-04-16T08:12:51.416148Z",
            "date_published": null,
            "start_time": "2024-04-18T16: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,
            "name": {
                "fi": "LOPPUUNMYYTY Kauri Honkakoski Company: PULPETTI",
                "sv": "SLUTSÅLD Kauri Honkakoski Company: PULPET",
                "en": "SOLD OUT Kauri Honkakoski Company: THE DESK"
            },
            "location_extra_info": 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."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/7AF1D958C545C4AC83C97F585E5C9C46/LOPPUUNMYYTY_Kauri_Honkakoski_Company_PULPETTI",
                "sv": "http://www.stoa.fi/sv/evenemang/event/7AF1D958C545C4AC83C97F585E5C9C46/SLUTSALD_Kauri_Honkakoski_Company_PULPET",
                "en": "http://www.stoa.fi/en/events/event/7AF1D958C545C4AC83C97F585E5C9C46/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,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61904/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghol7dgha",
            "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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-16T07:50:11.008224Z",
            "last_modified_time": "2024-04-16T07:50:11.008250Z",
            "date_published": "2024-04-16T07:38:00Z",
            "start_time": "2024-04-24T08:00:00Z",
            "end_time": "2024-04-24T10: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,
            "name": {
                "fi": "Kohtaamispaikka Askel esittäytyy",
                "sv": "Mötesplatsen Askel presenterar sig",
                "en": "Meeting place Askel introduces himself"
            },
            "location_extra_info": {
                "fi": "aula"
            },
            "provider": null,
            "short_description": {
                "fi": "Askeleessa kokoontuu viikoittain monenlaisia ryhmiä, kuten AA- vertaistukiryhmä. ",
                "sv": "Olika grupper träffas varje vecka i Askele, som AA-kamratstödsgruppen.",
                "en": "Various groups meet weekly in Askele, such as the AA peer support group."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kohtaamispaikka Askel<br>Askel on perustettu alun perin matalan kynnyksen kohtaamispaikaksi ihmisille, joilla on päihteiden käyttöön liittyviä haasteita. Edelleen nämä ihmiset ovat keskeisiä Askeleen toimijoita, ja heille Askel voi toimia yhteisöllisenä ”toipumistalona”. Askeleen toiminnan on sittemmin löytänyt myös laajempi kävijäjoukko, ovet ovat avoinna kaikille. Toiminta tukee arjessa pärjäämistä ja mahdollistaa elämäntavan muutoksia kohtaamisen, yhteisöllisyyden ja yhdessä tekemisen avulla. Kaikki kiinnostuneet ovat tervetulleita osallistumaan yhteisölliseen toimintaamme! Tervetuloa sellaisena kuin olet!</p><p>Olohuonetoiminta<br>Kohtaamispaikka Askel sijaitsee satavuotiaassa puutalossa Espoon keskuksessa osoitteessa Pappilantie 5. Keskeinen osa toimintaamme on viihtyisä olohuone, joka toivottaa kaikki tervetulleiksi. Olohuoneessa voi kahvitella maksuttomasti, lukea päivän lehdet, katsella televisiota, tavata muita ja nauttia toisten seurasta. Olohuoneessa on lämmin, yhteisöllinen ja vastaanottavainen ilmapiiri, jonne uusien ihmisten on helppo tulla.</p><p>Ryhmätoiminta<br>Askeleessa kokoontuu viikoittain monenlaisia ryhmiä, kuten AA- vertaistukiryhmä. Sen lisäksi talolla on omia ryhmiä mm. naisten ryhmä, teemaryhmä, Irti liiallisesta sokerista-ryhmä. Meiltä on myös mahdollisuus saada korva-akupunktiota kerran viikossa tiistaisin. Lisäksi viikoittain bingo, musavisa ja tietovisa. Myös opiskelijat järjestävät monenlaista erilaista ryhmätoimintaa.<br> <br>Ohjaus- ja auttamistoiminta ja muu tuki:<br>Askeleesta saa henkilökohtaista ja kiireetöntä tukea ja apua monenlaisiin haasteisiin, esim. Kela- tai sosiaalipalveluihin liittyvissä asioissa tai tukea digiasiointiin. Käytössä on myös maksuton asiakaspuhelin ja tietokone asioiden hoitamista varten.</p><p>Harrastukset ja tapahtumat:<br> Askeleella on oma bändi nimeltä Royal Stars, joka treenaa säännöllisesti pari kertaa viikossa omassa bänditilassamme. Siihen otetaan tarpeen mukaan uusia jäseniä eli jos olet kiinnostunut bändissä soittamisesta, ota yhteyttä. Bändi myös esiintyy erilaisissa tapahtumissa, mm. Espoon Asunnottomien yön tapahtumassa ja keväisin Selvästi kivaa!-pihatapahtumassa sekä Naapuruusviikolla toukokuussa. <br> <br>Työllistymisen tuki:<br>Askeleessa on vuosittain 2-4 työkokeilijaa ja 1-2 palkkatukityöntekijää. Työllistäminen on tärkeä osa toimintaamme. <br> <br>Opiskelijat:<br> Askeleessa suorittaa työssäoppimisharjoittelunsa vuosittain 6-10 korkeakoulu- ja toisen asteen opiskelijaa. Harjoittelussa saa arvokasta kokemusta yhteisöllisen kohtaamispaikan toiminnasta  ja pääsee ohjaamaan esim. ryhmiä ja järjestämään erilaisia tapahtumia.<br></p>",
                "sv": "<p>Mötesplats Askel<br>Askel etablerades ursprungligen som en lågtröskelmötesplats för människor som har utmaningar kopplade till användningen av substanser. Dessa personer är dessutom Askels centrala aktörer, och för dem kan Askel fungera som ett gemensamt \"återvinningshus\". Askelees verksamhet har sedan dess upptäckts av en bredare grupp besökare, dörrarna är öppna för alla. Verksamheten stödjer att klara sig i vardagen och möjliggör livsstilsförändringar genom möte, gemenskap och samarbete. Alla som är intresserade är välkomna att delta i våra samhällsaktiviteter! Välkommen som du är!</p><p>Vardagsrumsaktivitet<br>Mötesplats Askel ligger i ett hundra år gammalt trähus i Esbo centrum på Pappilantie 5. En central del av vår verksamhet är ett mysigt vardagsrum som välkomnar alla. I vardagsrummet kan du dricka kaffe gratis, läsa dagens tidningar, titta på tv, träffa andra och njuta av andras sällskap. Vardagsrummet har en varm, gemensam och välkomnande atmosfär där det är lätt för nya människor att komma.</p><p>Gruppaktivitet<br>Olika grupper träffas varje vecka i Askele, som AA-kamratstödsgruppen. Utöver det har huset egna grupper, t.ex. damgrupp, temagrupp, Bli av med för mycket sockergrupp. Vi erbjuder även öronakupunktur en gång i veckan på tisdagar. Dessutom veckobingo, Musavisa och trivia. Eleverna anordnar också många olika gruppaktiviteter.<br> <br>Guidande och hjälpande aktiviteter och annat stöd:<br>Från Askele får du personligt och okomplicerat stöd och hjälp för många utmaningar, t.ex. i frågor som rör FPA eller socialtjänst eller stöd för digitala transaktioner. Det finns också en avgiftsfri kundtelefon och en dator för att hantera saker.</p><p>Hobbyer och evenemang:<br> Askele har ett eget band som heter Royal Stars, som tränar regelbundet ett par gånger i veckan i vårt eget bandutrymme. Den tar emot nya medlemmar efter behov, så om du är intresserad av att spela i bandet, vänligen kontakta oss. Bandet uppträder även vid olika evenemang, t.ex. På Esbos Hemlösa natt-evenemang och på våren på Selvästi kivaa gårdsevenemang och på Grannskapsveckan i maj.<br> <br>Stöd för anställning:<br>Varje år har Askele 2-4 arbetsprovanställda och 1-2 lönestödjare. Anställning är en viktig del av vår verksamhet.<br> <br>Studenter:<br> I Askele genomför 6-10 högskole- och gymnasieelever sin verksamhetsförlagda utbildning varje år. Under praktiken får du värdefull erfarenhet av driften av en gemensam mötesplats och kommer att kunna guida grupper och anordna olika evenemang.</p>",
                "en": "<p>Meeting place Askel<br>Askel was originally established as a low-threshold meeting place for people who have challenges related to the use of substances. Furthermore, these people are the central actors of Askel, and for them Askel can act as a communal \"recovery house\". Askelee's activities have since been discovered by a wider group of visitors, the doors are open to everyone. The activity supports coping in everyday life and enables lifestyle changes through meeting, community and working together. Anyone interested is welcome to participate in our community activities! Welcome as you are!</p><p>Living room activity<br>Meeting place Askel is located in a hundred-year-old wooden house in the center of Espoo at Pappilantie 5. A central part of our activity is a cozy living room that welcomes everyone. In the living room you can drink coffee for free, read the day's newspapers, watch TV, meet others and enjoy the company of others. The living room has a warm, communal and welcoming atmosphere where it is easy for new people to come.</p><p>Group activity<br>Various groups meet weekly in Askele, such as the AA peer support group. In addition to that, the house has its own groups, e.g. women's group, theme group, Get rid of too much sugar group. We also offer ear acupuncture once a week on Tuesdays. In addition, weekly bingo, Musavisa and trivia. Students also organize many different group activities.<br> <br>Guiding and helping activities and other support:<br>From Askele, you get personal and unhurried support and help for many challenges, e.g. in matters related to Kela or social services or support for digital transactions. There is also a toll-free customer phone and a computer for managing things.</p><p>Hobbies and events:<br> Askele has its own band called Royal Stars, which practices regularly a couple of times a week in our own band space. It accepts new members as needed, so if you are interested in playing in the band, please contact us. The band also performs at various events, e.g. At Espoo's Homeless Night event and in spring at the Selvästi kivaa! yard event and at Neighborhood Week in May.<br> <br>Support for employment:<br>Every year Askele has 2-4 work probationers and 1-2 wage support workers. Employment is an important part of our operations.<br> <br>Students:<br> In Askele, 6-10 university and secondary students complete their work-based training each year. During the internship, you will gain valuable experience in the operation of a communal meeting place and will be able to guide groups and organize various events.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghol7dgha/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4olwu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/ecDxWjluo",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-15T06:10:56.798521Z",
            "last_modified_time": "2024-04-16T07:20:39.978062Z",
            "date_published": "2024-04-15T05:41:00Z",
            "start_time": "2024-05-22T15:00:00Z",
            "end_time": "2024-05-22T16: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,
            "name": {
                "fi": "Melankolian mestari - Sentencedin Miika Tenkulan elämä",
                "sv": "Melankolian mestari - Miika Tenkulas liv",
                "en": "Melankolian mestari - The life of Miika Tenkula"
            },
            "location_extra_info": {
                "fi": "Kaija",
                "sv": "Kaija",
                "en": "Kaija"
            },
            "provider": null,
            "short_description": {
                "fi": "Espoolainen tietokirjailija Nefertiti Malaty kertoo Miika Tenkulan elämäkerran synnystä ja kirjoitusprosessista. ",
                "sv": "Den Esbo-baserade fackboksförfattaren Nefertiti Malaty berättar historien om tillkomsten och skrivprocessen av Miika Tenkulas biografi.",
                "en": "Espoo-based non-fiction writer Nefertiti Malaty tells the story of the birth and writing process of Miika Tenkula's biography. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Sentenced-yhtye nousi Muhokselta maailmanmaineeseen vuosituhannen vaihteessa mutta hajosi suosionsa huipulla vuonna 2005. Soolokitaristi ja säveltäjä Miika Tenkulan elämään jäi tyhjiö, jota oli vaikea täyttää. Hänen viimeisiä vuosiaan synkensivät päihdeongelma ja kamppailu perinnöllisen sydänsairauden kanssa. Hän kuoli sydänkohtaukseen vain neljä vuotta myöhemmin. </p><p><a href=\"https://helmet.finna.fi/Record/helmet.2568004?sid=4570638558\">Miika Tenkulan elämäkerta</a> kertoo, kuinka ujosta maalaispojasta tuli menestynyt kitarataiteilija. Vuosikymmenten jälkeenkin Sentenced nauttii fanien intohimoista arvostusta ja Tenkulan maine virtuoosimaisena kitaristina kasvaa entisestään.</p><p>Espoolainen tietokirjailija Nefertiti Malaty kertoo kirjan synnystä ja kirjoitusprosessista. Millainen oli Miika Tenkula ihmisenä ja millainen oli hänen merkityksensä musiikkimaailmalle?</p>",
                "sv": "<p>Den Esbo-baserade fackboksförfattaren Nefertiti Malaty berättar historien om tillkomsten och skrivprocessen av Miika Tenkulas biografi. </p><p>Evenemanget är på finska.</p>",
                "en": "<p>Espoo-based non-fiction writer Nefertiti Malaty tells the story of the birth and writing process of Miika Tenkula's biography. </p><p>The event is in Finnish.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4olwu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4owbi",
            "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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4owme/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-04T06:39:20.787713Z",
            "last_modified_time": "2024-04-16T06:13:11.950566Z",
            "date_published": "2024-03-20T07:26:00Z",
            "start_time": "2024-04-18T07:00:00Z",
            "end_time": "2024-04-18T09: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,
            "name": {
                "fi": "PERUTTU 18.4. Selkouutiskahvit",
                "sv": "Kaffe med klara nyheter",
                "en": "Plain News Cafe"
            },
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "provider": null,
            "short_description": {
                "fi": "Selkouutiskahveilla kuuntelemme Yle Areenasta selkouutiset. Sen jälkeen luemme uutisen ja keskustelemme siitä yhdessä suomeksi.",
                "sv": "Under nyhetsgenomgångarna lyssnar vi på nyheterna från Yle Arena. Sedan läser vi nyheterna och diskuterar dem tillsammans på finska.",
                "en": "We are listening Plain News from Yle Areena. After that we read the news and discuss the topics together in Finnish."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Selkouutiskahveilla kuuntelemme Yle Areenasta selkouutiset. Sen jälkeen luemme uutisen ja keskustelemme siitä yhdessä suomeksi. Opimme näin yhdessä suomea, ja tutustumme Suomen tapoihin ja historiaan.</p><p>Selkouutiskahvit järjestetään torstaisin Entressen kirjaston Kibessä klo 10-12:00. Ei kuitenkaan helatorstaina 9.5.</p>",
                "sv": "<p>Under nyhetsgenomgångarna lyssnar vi på nyheterna från Yle Arena. Sedan läser vi nyheterna och diskuterar dem tillsammans på finska. På så sätt lär vi oss finska tillsammans och bekantar oss med finska seder och historia.</p><p>Kaffepauserna äger rum på torsdagar på Entresse Library i Kibe från 10-12:00. 9.5. är inställt.</p>",
                "en": "<p>We are listening Plain News from Yle Areena. After that we read the news and discuss the topics together in Finnish. This is how we learn together Finnish, Finnish customs and history.</p><p>Plain news cafe are held on thursdays 10:00 - 12:00 24.8. - 28.12. in Kibe. 9.5. is canceled.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4owbi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:aghok336pq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:21/?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:p6062/?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": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": {
                        "fi": "Pankkikortti ja luottokortti käy.",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "10",
                        "sv": "10",
                        "en": "10"
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "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-16T05:44:33.163803Z",
            "last_modified_time": "2024-04-16T05:46:29.717323Z",
            "date_published": null,
            "start_time": "2024-04-17T09:12:00Z",
            "end_time": "2024-04-17T16:19: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-16T08:47:00+03:00",
            "enrolment_end_time": "2024-04-17T18:18:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Testitapahtuma 2024-04-16",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Testitapahtuma 2024-04-16",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Testitapahtuma 2024-04-16</p>\n",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aghok336pq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:99060943-93d2-4253-b5ff-b6f353240023",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?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:p11185/?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:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?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:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?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:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/businesshelsinki/?locale=fi_FI",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=MKtest_Lsntapahtuma_LE49_DatetimeTest1630497694"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 150594,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-15T12:35:19.821206Z",
                    "last_modified_time": "2024-04-15T12:35:19.821229Z",
                    "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=99060943-93d2-4253-b5ff-b6f353240023&Timestamp=638484239078017237&Full=true",
                    "name": "Tämä on kuvatekstiä",
                    "cropping": "",
                    "photographer_name": "Robin Linssi",
                    "alt_text": "Tämä on alt-tekstiä",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150594/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?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:p11185/?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:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?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:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?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:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-04-11T09:21:43.784582Z",
            "last_modified_time": "2024-04-15T12:35:22.777418Z",
            "date_published": "2024-04-11T09:11:41Z",
            "start_time": "2024-04-25T09:20:00Z",
            "end_time": "2024-04-25T11:20:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 100,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 32767,
            "minimum_attendee_capacity": 100,
            "enrolment_start_time": "2024-02-01T14:00:00+02:00",
            "enrolment_end_time": "2024-04-23T15:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "MKtest Verkkotapahtuma LE49_DatetimeTest"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Business Helsingfors"
            },
            "short_description": {
                "fi": "MKtest Verkkotapahtuma LE49_DatetimeTest SHORT DESCRIPTION"
            },
            "info_url": null,
            "description": {
                "fi": "<div><div>aswdf</div></div>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:99060943-93d2-4253-b5ff-b6f353240023/?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": [],
                    "info_url": null,
                    "description": 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,
            "name": {
                "fi": "HELsign 2024 – Viittomakielinen kulttuuritapahtuma",
                "sv": "HELsign 2024 – Kulturevenemang på teckenspråk",
                "en": "HELsign 2024 – A sign language culture event"
            },
            "location_extra_info": 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."
            },
            "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"
            },
            "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,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63113/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:aghoccyrha",
            "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/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: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/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "kultus:6",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@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-15T09:16:22.728362Z",
            "last_modified_time": "2024-04-15T12:07:49.024566Z",
            "date_published": null,
            "start_time": "2024-04-15T12:07:48.142000Z",
            "end_time": "2024-04-16T12: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-15T12:39:00+03:00",
            "enrolment_end_time": "2024-04-16T12:12:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Testitapahtuma 2024-04-15",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Testitapahtuma 2024-04-15",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Testitapahtuma 2024-04-15</p>\n",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aghoccyrha/?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": [],
                    "info_url": null,
                    "description": 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,
            "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"
            },
            "location_extra_info": 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."
            },
            "info_url": null,
            "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,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4okyu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:62f60e67-5ab1-48fc-84af-4c09725a8535",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?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:p11185/?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:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?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:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?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:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_youtube",
                    "link": "https://youtu.be/5TUtRRfAOMs?si=0R9eRrBshlIuh2UJ",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=MKtest_LE_50_smoke-test_LinkedEventsiin2358570953"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 150593,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-15T11:12:47.511945Z",
                    "last_modified_time": "2024-04-15T11:12:47.511961Z",
                    "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=62f60e67-5ab1-48fc-84af-4c09725a8535&Timestamp=638487750273537107&Full=true",
                    "name": "Kuvatekstiä",
                    "cropping": "",
                    "photographer_name": "Ibrahim Linssi",
                    "alt_text": "alt-tekstiä",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150593/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?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:p11185/?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:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?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:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?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:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-04-15T11:12:51.174702Z",
            "last_modified_time": "2024-04-15T11:12:51.174719Z",
            "date_published": "2024-04-15T10:48:14Z",
            "start_time": "2024-04-17T07:00:00Z",
            "end_time": "2024-04-17T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 2,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": 99,
            "enrolment_start_time": "2024-04-15T08:01:00+03:00",
            "enrolment_end_time": "2024-04-16T09:01:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "MKtest LE 50 smoke-test LinkedEventsiin"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Mtest tapahtumajärjestäjä"
            },
            "short_description": {
                "fi": "MKtest LE 50 smoke-test LinkedEventsiin SHORT DESC"
            },
            "info_url": null,
            "description": {
                "fi": "<div><div>MKtest LE 50 smoke-test LinkedEventsiin LONG DESC</div></div>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:62f60e67-5ab1-48fc-84af-4c09725a8535/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4okhq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 150326,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-12T09:43:27.503183Z",
                    "last_modified_time": "2024-04-12T09:43:27.503210Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kellopeli",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-04-15T09:29:39.931619Z",
            "last_modified_time": "2024-04-15T09:32:55.762097Z",
            "date_published": null,
            "start_time": "2024-05-07T07:00:00Z",
            "end_time": "2024-05-07T07: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,
            "name": {
                "fi": "Vauvamuskarin kevätkonsertti"
            },
            "location_extra_info": {
                "fi": "Lava"
            },
            "provider": null,
            "short_description": {
                "fi": "Konsertti on osallistava musiikkituokio, jossa soitamme ja laulamme aikaisemmista muskareista tuttuja kappaleita ja lauluja. Paikkoja on rajoitetusti."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Sellon kirjastossa järjestetään vauvamuskarin kevätkonsertti 7.5 klo 10.00. </p><p>Kirjaston musiikkipedagogit Lauri Iljin ja Sakari Heikka järjestävät kaksi kevätkonserttia, joihin voit ilmoittautua. Konsertti on osallistava musiikkituokio, jossa soitamme ja laulamme aikaisemmista muskareista tuttuja kappaleita ja lauluja. Paikkoja on rajoitetusti.</p><p>Konsertissa tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Konserttiin voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Kevätkonsertti on suunnattu 3kk - 3v ikäisille lapsille. On suositeltavaa ottaa mukaan oma viltti tai jarrusukat. Osallistuminen on maksutonta.</p><p>Vuorovaikutteinen vauvamuskareiden kevätkonsertti kestää n. 30 minuuttia. Osallistuminen on maksutonta.</p><p>Linkki ilmoittautumiseen: https://link.webropol.com/s/kevatkonsertti</p><p>#vauvamuskari #musiikki #konsertti #perhe #vauva<br></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4okhq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4okmi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 150326,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-12T09:43:27.503183Z",
                    "last_modified_time": "2024-04-12T09:43:27.503210Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kellopeli",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-04-15T09:31:24.391000Z",
            "last_modified_time": "2024-04-15T09:32:36.910398Z",
            "date_published": null,
            "start_time": "2024-05-21T07:00:00Z",
            "end_time": "2024-05-21T07: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,
            "name": {
                "fi": "Vauvamuskarin kevätkonsertti"
            },
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": null,
            "short_description": {
                "fi": "Konsertti on osallistava musiikkituokio, jossa soitamme ja laulamme aikaisemmista muskareista tuttuja kappaleita ja lauluja. Paikkoja on rajoitetusti."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Lippulaivan kirjastossa järjestetään vauvamuskarin kevätkonsertti 21.5 klo 10.00. </p><p>Kirjaston musiikkipedagogit Lauri Iljin ja Sakari Heikka järjestävät kaksi kevätkonserttia, joihin voit ilmoittautua. Konsertti on osallistava musiikkituokio, jossa soitamme ja laulamme aikaisemmista muskareista tuttuja kappaleita ja lauluja. Paikkoja on rajoitetusti.</p><p>Konsertissa tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Konserttiin voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Kevätkonsertti on suunnattu 3kk - 3v ikäisille lapsille. On suositeltavaa ottaa mukaan oma viltti tai jarrusukat. Osallistuminen on maksutonta.</p><p>Vuorovaikutteinen vauvamuskareiden kevätkonsertti kestää n. 30 minuuttia. Osallistuminen on maksutonta.</p><p>Linkki ilmoittautumiseen: https://link.webropol.com/s/kevatkonsertti</p><p><br>#vauvamuskari #musiikki #konsertti #perhe #vauva<br></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4okmi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oku4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/osoite:tapiontori_1_espoo/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-08T06:31:17.369271Z",
            "last_modified_time": "2024-04-15T09:09:27.141020Z",
            "date_published": "2024-04-08T06:19:00Z",
            "start_time": "2024-04-30T12:00:00Z",
            "end_time": "2024-04-30T16: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,
            "name": {
                "fi": "Tapiolan Vapun avaus"
            },
            "location_extra_info": {
                "fi": "Heikki von Hertzenin aukio"
            },
            "provider": {
                "fi": "Tapiolan kilta"
            },
            "short_description": {
                "fi": "Tapiolan keskustassa Heikki Von Hertzenin aukiolla. Tervetuloa mukaan!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Ohjelmaa koko perheelle veijareista vaariin!</p><p>Lavalla<br>15.00–15.30 Retuperän WBK<br>15.30–16.15 Lastenyhtye Orffit<br>16.15–16.45 Shit Kickers, Sinfonietan kantriryhmä<br>16.45–17.00 Kaupunginjohtajan vapputervehdys<br>17.00–17.15 Häikäistyneen lasitus ja Helmet-kvartetin patsastervehdys<br>17.15– Neuvosto ja the Voice of finland -23 voittaja Onni Kivipelto</p><p>Paikalla myös Elämysauto Välkky, Pomppulinna, Tapiolan Lämmön työkone ja Partiolaisten hauska hedelmäpeli!</p><p>Bunitin herkullisia Bao buneja, Pullabilin herkkuja, Killan minihodareita, mehua ja hattaroita, Bernard Massard -kuohuviiniä, lettuja...</p><p>Yhteistyössä: Tapiolan kilta ry, Tapiolan kirjasto, Elämysauto Välkky, Tapiola Toimii ry, mikrofonikauppa.fi, Tapiolan Lämpö, Asuntosäätiö.</p><p>#vappu #tapiola</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oku4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63216",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 41711,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-28T08:13:09.581756Z",
                    "last_modified_time": "2024-03-28T08:13:09.581769Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746094.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/41711/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-28T08:13:09.561435Z",
            "last_modified_time": "2024-04-15T07:14:00.896491Z",
            "date_published": null,
            "start_time": "2024-04-24T14: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,
            "name": {
                "fi": "CaisaKallio esittää: Puheilmaisun lopputöitä – Caisan ja Kallion lukion yhteinen taidefestivaali"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "CaisaKallio esittää!"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/D7C1E1F7B4C138FABEB9BD2D742E5742/CaisaKallio_esittaa_Puheilmaisun_lopputoita"
            },
            "description": {
                "fi": "<p>CaisaKallio esittää!</p><p>CaisaKalliossa nähdään keskiviikkona puheilmaisun oppiaineen lopputöitä. Pääosin itsenäisesti työstettävä lopputyö on opiskelijoille mahdollisuus näyttää osaamistaan ja kokeilla siipiensä kantavuutta taiteellisen produktion valmistamisessa.</p><p>CaisaKalliossa nähtävät lopputyöt:</p><p><b>Ines Koponen</b>: Liukuportaissa<br>Liukuportaissa ehtii tapahtua kaikenlaista. Liukuportaat vievät paikasta toiseen ja niissä voi seistä yksin tai seurassa.</p><p><b>Pihla Koski Järvinen:</b> Calluna Vulgaris (s.) Kanerva (kanervakasvit, ericaceae)<br>Tieteelliset määritelmät:<br>1. Persoonaton autofiktiivinen konsepti (ystävä, amicus), yliajattelun yliannostus, platonisen rakkauden, metatason huolenpidon ja hämmennyksen ylitsepääsemätön rypeämä. <br>2. Suomessa elinvoimainen puuvartinen ikivihreä varpu (10–15cm, Wikipedia).</p><p><b>Elias Kuokkanen ja Anna Majamaa:</b> Kaverikoru<br>Mietitkö koskaan, onko jollain vielä tallessa toinen puoli siitä sydämenmuotoisesta kaverikorusta, jota pidit kaulassa jokaisena ala-asteen päivänä? Tai että muistaako joku muukin vielä sen kolmosluokalla kehitetyn salakielen? Kaverikoru kertoo lapsuuden ystävyyssuhteista ja siitä, miten pienelle lapselle maailmassa ei ollut mitään tärkeämpää kuin ensimmäinen paras kaveri.</p><p><b>Iris Kässi:</b> Loppujen lopuksi<br>Kun kiipee Skybariin viimestä kertaa ja jäävuorisalaattiin sekottuu kyyneleitä. Kun penkkarirekka kiitää kohti maailmanloppua. Kun kaikki aamut on avattu ja edessä ammottaa tyhjyys, on jäljellä tasan yks ratkasu. Täytyy koko helvetin herkän teinisielun vimmalla kirjottaa päiväkirjan sivut rikki ja puhua ittensä pyörryksiin. Loppujen lopuksi ei jää enää mitään sanottavaa.</p><p>Tervetuloa nauttimaan vaikuttavasta puhetaiteesta!<br>Ole ajoissa, paikkoja on rajoitetusti.</p><p><b>CaisaKallio</b><br>Tarvitsetko piristystä tähän harmaaseen arkeen? Oletko aina unelmoinut pääseväsi kokemaan maailmasi mullistavan taide-elämyksen?</p><p>Nyt on tilaisuutesi sukeltaa taiteen maailmaan nuorten taiteilijoiden johdattelemana. Kallion lukion taiteenopiskelijat herättävät kulttuurikeskus Caisan tilat henkiin mahtavilla esityksillään. Luvassa on musiikkia, puhetaidetta, lyhytelokuvia, sekä tanssia. Tätä et halua missata!</p><p>Kaikkiin CaisaKallio -viikon tapahtumiin on vapaa pääsy, lämpimästi tervetuloa mukaan!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63216/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4ol4u",
            "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-04-15T06:06:32.826795Z",
            "last_modified_time": "2024-04-15T06:06:32.826840Z",
            "date_published": "2024-04-15T07:05:41.378000Z",
            "start_time": "2024-04-17T06:30:00Z",
            "end_time": "2024-04-17T08: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,
            "name": {
                "fi": "MLL-perhekahvila"
            },
            "location_extra_info": {
                "fi": "Perhealue"
            },
            "provider": {
                "fi": "Mannerheimin lastensuojeluliitto, Soukan yhdistys"
            },
            "short_description": {
                "fi": "Tervetuloa Lippulaivan perhekahvilaan keskiviikkoisin klo 9.30 - 11.00!"
            },
            "info_url": null,
            "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,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ol4u/?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": [],
                    "info_url": null,
                    "description": 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,
            "name": {
                "fi": "Pomppulinna – Vaippakansan karnevaali"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tuo taaperosi pomppimaan!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B36C9C577BD370B624D2BAB5F452C028/Pomppulinna"
            },
            "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,
            "@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": [],
                    "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"
                    },
                    "description": null,
                    "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,
            "name": {
                "fi": "Vaippakansan karnevaali",
                "sv": "Blöjfolkets karneval",
                "en": "Carnival for Diaper People"
            },
            "location_extra_info": 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!"
            },
            "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"
            },
            "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,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63196/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61841",
            "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: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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmijazz/malmijazz-sylvain-rifflet-verneri-pohjola-3561894/",
                        "sv": "https://www.lippu.fi/artist/malmijazz/malmijazz-sylvain-rifflet-verneri-pohjola-3561894/",
                        "en": "https://www.lippu.fi/artist/malmijazz/malmijazz-sylvain-rifflet-verneri-pohjola-3561894/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6971,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-03T13:13:17.462224Z",
                    "last_modified_time": "2024-02-06T13:23:35.021789Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733106.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6971/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-03T13:13:17.416580Z",
            "last_modified_time": "2024-04-13T12:12:59.651079Z",
            "date_published": null,
            "start_time": "2024-04-16T16: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,
            "name": {
                "fi": "LOPPUUNMYYTY: Sylvain Rifflet & Verneri Pohjola – MalmiJazz",
                "sv": "UTSÅLD: Sylvain Rifflet & Verneri Pohjola – MalmiJazz",
                "en": "SOLD OUT: Sylvain Rifflet & Verneri Pohjola – MalmiJazz"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Sukupolvensa ylistetyimpiin ranskalaismuusikoihin lukeutuva Sylvain Rifflet tuo Suomeen kvartettinsa, jonka solistina kiertueella kuullaan trumpetisti Verneri Pohjolaa.",
                "sv": "Den franska musikern Sylvain Rifflet räknas bland de mest lovprisade musikerna i sin generation. På Finlandsturnén har han med sig sin kvartett och trumpetisten Verneri Pohjola som solist.",
                "en": "One of the most prominent French musicians of his generation, Sylvain Rifflet, brings his quartet to Finland, whose soloist for the show will be trumpetist Verneri Pohjola."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/531E914E0A7EBAC4ADD3D1E119F9ACCF/LOPPUUNMYYTY_Sylvain_Rifflet_Verneri_Pohjola",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/531E914E0A7EBAC4ADD3D1E119F9ACCF/UTSALD_Sylvain_Rifflet_Verneri_Pohjola",
                "en": "http://www.malmitalo.fi/en/events/event/531E914E0A7EBAC4ADD3D1E119F9ACCF/SOLD_OUT_Sylvain_Rifflet_Verneri_Pohjola"
            },
            "description": {
                "fi": "<p>Sukupolvensa ylistetyimpiin ranskalaismuusikoihin lukeutuva Sylvain Rifflet tuo Suomeen kvartettinsa, jonka solistina kiertueella kuullaan trumpetisti Verneri Pohjolaa.</p><p>Konsertissa ohjelmassa on Rifflet’n omille ”ikonisille enkeleille” omistettuja kappaleita. Inspiraation lähteinä musiikille ovat toimineet mm. amerikkalaiset modernistit Steve Reich, Terry Riley, Philip Glass, laulaja, aktivisti Abbey Lincoln ja kirjailija James Baldwin.</p><p>”Cake Walk from a Spaceship” on Pohjolalle omistettu sävellys sekä keväällä 2022 Eclipse Recordsin Suomessa julkaiseman albumin nimi.</p><p>Trumpetisti-säveltäjä Verneri Pohjola on luonut viimeisen parinkymmenen vuoden aikana ainutlaatuisen soittotyylin, jonka tunnistaa ensi kuulemalta. Hänen soitossaan hehkuvat lämpö, rauhallisuus sekä vahva ja ilmeikäs improvisaatio.</p><p>Vuodesta 2012 Rifflet’n kanssa yhteistyötä tehnyt Pohjola kuvailee häntä näin: ”Sylvain on todella kunnianhimoinen taiteilija, joka pyrkii aina esittämään taidettaan korkeimmalla mahdollisella integriteetillä ja tarjoamaan yleisölle jotain mitä he eivät ole aiemmin kuulleet. Saksofonistina hänellä on todella ainutlaatuinen tenorisoundi, lähes hypnoottinen. Hän on virtuoosi, mutta ei koskaan itsetarkoituksellisesti”.</p><p><b>Sylvain Rifflet</b> tenorisaksofoni, shruti box, klarinetti, sävellykset <br><b>Verneri Pohjola</b> trumpetti, elektroniikka <br><b>Csaba Palotaï</b> kitara <br><b>Benjamin Flament</b> lyömäsoittimet</p><p>Kesto 1h 15min.</p><p>Kiertueen tuotanto: Vapaat äänet<br>Kiertueetta tukevat: Ranskan Instituutti Suomessa, AJC, Adami, Spedidam</p>",
                "sv": "<p>Den franska musikern Sylvain Rifflet räknas bland de mest lovprisade musikerna i sin generation. På Finlandsturnén har han med sig sin kvartett och trumpetisten Verneri Pohjola som solist.</p><p>Den franska saxofonisten, klarinettisten, kompositören och improvisatören Sylvain Rifflet räknas bland de mest lovprisade musikerna i sin generation. På Finlandsturnén har han med sig sin kvartett och trumpetisten Verneri Pohjola som solist.  Konsertprogrammet inkluderar låtar som Rifflet har tillägnat sina ”ikoniska änglar”. Musiken har inspirerats av bland annat de amerikanska modernisterna Steve Reich, Terry Riley, Philip Glass, sångaren, aktivisten Abbey Lincoln och författaren James Baldwin. ”Cake Walk from a Spaceship” är ett musikverk tillägnat Norden och också namnet på det album som Eclipse Records släppte i Finland 2022.</p><p>Trumpetisten och kompositören Verneri Pohjola har under de senaste tjugo åren skapat en unik spelstil som går att känna igen från de första noterna. Hans spelande präglas av värme, lugn och stark och själfull improvisation. Pohjola har samarbetat med Rifflet sedan 2012, och beskriver honom så här: ”Sylvain är en verkligt ambitiös konstnär som alltid strävar efter att framföra sin konst med den största möjliga integriteten och erbjuda publiken något de aldrig har hört förut. Som saxofonist har han ett verkligt unikt, nästan hypnotiskt tenorsound. Han är en virtuos, men aldrig som ett självändamål”.</p><p>Sylvain Rifflet tenorsaxofon, shruti box, klarinett, komposition<br>Verneri Pohjola trumpet, elektronik<br>Csaba Palotaï gitarr<br>Benjamin Flament slagverk</p><p>Längd: 1h 15min.</p><p>Turnéns produktion:  Vapaat äänet<br>Turnén stöds av: Franska institutet i Finland, AJC, Adami, Spedidam</p>",
                "en": "<p>One of the most prominent French musicians of his generation, Sylvain Rifflet, brings his quartet to Finland, whose soloist for the show will be trumpetist Verneri Pohjola.</p><p>The concert programme will feature dedicated pieces to Rifflet’s own ‘iconic angels’. His inspirations include American modernists Steve Reich, Terry Riley, Philip Glass, singer-activist Abbey Lincoln and writer James Baldwin.</p><p>‘Cake Walk from a Spaceship’ is a composition dedicated to Pohjola, as well as the name of his 2022 album, which was released in Finland by Eclipse Records.</p><p>Trumpetist-composer Verneri Pohjola has, in the past two decades, created a unique style of music that stands out whenever you hear it. His music exudes warmth, a sense of calm and strong, expressive improvisation. Pohjola, who’s worked with Rifflet since 2012, describes him as such: “Sylvain is an incredibly ambitious artist, who aims to present his art at the highest possible level of integrity and provide his audiences with something that they’ve never heard before. As a saxophone player, his tenor is very unique, it’s almost hypnotic. He is a virtuoso, but never just for the sake of it.”</p><p>Sylvain Rifflet tenor saxophone, shruti box, clarinet, composition<br>Verneri Pohjola trumpet, electronics<br>Csaba Palotaï guitar<br>Benjamin Flament percussion</p><p>Duration: 1 hr. 15 mins.</p><p>Tour production: Vapaat äänet<br>Tour sponsors: Institute of France in Finland, AJC, Adami, Spedidam</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61841/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}