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

{
    "meta": {
        "count": 32755,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=723",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=721"
    },
    "data": [
        {
            "id": "espoo_le:agi3dj7bma",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-09-02T07:13:17.995874Z",
            "last_modified_time": "2024-09-02T07:13:17.995894Z",
            "date_published": null,
            "start_time": "2024-09-02T13:00:00Z",
            "end_time": "2024-09-02T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa viettämään aikaa yhdessä tyttöjen kesken!",
                "sv": "Välkommen att spendera tid tillsammans som tjejer!",
                "en": "Welcome to spend time together between girls!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään aikaa yhdessä tyttöjen kesken!</p><p>Tyttöjen illoissa pelataan, leivotaan, askarrellaan, lakataan kynsiä ja pidetään hauskaa osallistujien toiveet huomioiden. Tapahtuma on suunnattu alakouluikäisille.</p><p>Tyttöjen iltoja ohjaavat tutut työntekijät Lippulaivan kirjastosta ja Espoon Tyttöjen Talolta. Illoissa noudatetaan turvallisemman tilan periaatteita.</p><p>Tavataan maanantaisin klo 16 - 17.30 Lippulaivan kirjastossa.</p>",
                "sv": "<p>Välkommen att spendera tid tillsammans som tjejer!</p><p>Tjejkvällar är en tid för lekar, bakning, pyssel, nagellackning och att ha roligt enligt deltagarnas önskemål. Evenemanget riktar sig till barn i lågstadieåldern.</p><p>Tjejkvällarna leds av bekant personal från Lippulaiva biblioteket och Esbo flickhus. Kvällarna följer principerna för tryggare utrymmen.</p>",
                "en": "<p>Welcome to spend time together between girls!</p><p>Girls' nights are a time for games, baking, crafts, nail polishing and having fun according to the wishes of the participants. The event is aimed at primary school children.</p><p>The girls' nights are guided by familiar staff from the Lippulaiva Library and the Espoo Tyttöjen talo. The evenings will follow the principles of safer space.</p>"
            },
            "name": {
                "fi": "Tyttöjen illat",
                "sv": "Kvällar för flickor",
                "en": "Girls' evenings"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3dj7bma/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64403",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152168,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T08:13:13.754052Z",
                    "last_modified_time": "2024-08-21T08:13:13.754065Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745700.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152168/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T08:13:13.742087Z",
            "last_modified_time": "2024-09-02T06:14:37.937021Z",
            "date_published": null,
            "start_time": "2024-09-13T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FCFE94506866C6C34D35FFC3BBE536A4/Mielensapahoittajan_rakkaustarina_S_"
            },
            "description": {
                "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>"
            },
            "name": {
                "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64403/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64402",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152167,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T08:13:13.341070Z",
                    "last_modified_time": "2024-08-21T08:13:13.341083Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745697.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152167/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T08:13:13.328928Z",
            "last_modified_time": "2024-09-02T06:14:37.033440Z",
            "date_published": null,
            "start_time": "2024-09-11T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3A68EED1E1D7608417E363091E7C0111/Mielensapahoittajan_rakkaustarina_S_"
            },
            "description": {
                "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>"
            },
            "name": {
                "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64402/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64400",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152165,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T08:13:12.910974Z",
                    "last_modified_time": "2024-08-21T08:13:12.910986Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745695.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152165/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T08:13:12.903366Z",
            "last_modified_time": "2024-09-02T06:14:36.281057Z",
            "date_published": null,
            "start_time": "2024-09-07T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7363AE4CCC49C7C7E1E04D8E6BCC9C4E/Mielensapahoittajan_rakkaustarina_S_"
            },
            "description": {
                "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>"
            },
            "name": {
                "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64400/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64399",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152164,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T08:13:12.639225Z",
                    "last_modified_time": "2024-08-21T08:13:12.639237Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745691.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152164/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T08:13:12.625557Z",
            "last_modified_time": "2024-09-02T06:14:35.610391Z",
            "date_published": null,
            "start_time": "2024-09-06T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/58078401CF8FB2F614B6E7E5061C4469/Mielensapahoittajan_rakkaustarina_S_"
            },
            "description": {
                "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>"
            },
            "name": {
                "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64399/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi2z4ycri",
            "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:p1278/?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-09-01T08:54:01.300863Z",
            "last_modified_time": "2024-09-01T08:54:01.300885Z",
            "date_published": null,
            "start_time": "2024-09-07T08:00:00Z",
            "end_time": "2024-09-07T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kiinalaisen kulttuurin esittelyä. Laulua, tanssia ja runoutta.",
                "en": "An introduction to Chinese culture. Singing, dancing and poetry."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa kaikki katsomaan pianonsoittoa, laulua, tanssia ja muita taiteellisia esityksiä klo 11.00-14.00&nbsp;</p><p><br></p><p>Ohjelma:</p><p>11:00 Kuoro Pride</p><p>11:10 Soolo Se olen minä</p><p>11:20 Ryhmätanssi Kevätaamu</p><p>11:30 Pipa-soolo Muistoja Jiang nanista</p><p>11:40 Ryhmätanssi Uusi Tiibetin laulu</p><p>11:50 Viulusoolo Rakastan äitiäsi</p><p>12:00 Viulusoolo Punaiset kukat vuorella</p><p>12:10 Soolotanssi kymmenentuhatta jokea</p><p>12:20 perinteistä kulttuuria Kiinan muinainen puku esitys</p><p>12:30 Soolo Jangtse-joen laulu</p><p>12:40 Tai Chi Tai Chi - esitys</p><p>12:50 Guzheng pelaa Luumunkukat kukkivat kolme kertaa</p><p>13:00 Soolotanssi hypätä</p><p>13:10 Soolo intohimoinen maa</p><p>13:20 Duo laulaa Odotan sinua hellästi</p><p>13:30 Kuoro Äitini ja minä</p>",
                "en": "<p>Everyone is welcome to watch piano playing, singing, dancing and other artistic performances from 11.00-14.00&nbsp;</p>"
            },
            "name": {
                "fi": "Kiinalainen kulttuuritapahtuma",
                "en": "Chinese cultural event"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava",
                "en": "Stage"
            },
            "provider": {
                "fi": "Finland Association for Promoting Peaceful Reunification of China FAPPRC ry",
                "en": "Finland Association for Promoting Peaceful Reunification of China FAPPRC ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi2z4ycri/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agih3ndliq",
            "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:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndlry/?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-07-04T12:02:59.249672Z",
            "last_modified_time": "2024-09-01T08:07:16.293247Z",
            "date_published": "2024-07-04T11:47:00Z",
            "start_time": "2024-11-27T12:00:00Z",
            "end_time": "2024-11-27T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!",
                "en": "Join the Fun at the Sello Library English Book Club!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!</p><p>Rakastatko keskustella kirjallisuudesta? Koetko olevasti huumorintajulla varustettu lukutoukka? Jos vastasit kyllä, silloin Sellon kirjaston englanninkielinen lukupiiri on täydellinen sinulle!</p><p>Lukupiiri kokoontuu elo-marraskuussa kuun viimeisenä keskiviikkona klo 14-15:30.</p><p>Tuo mukanasi älysi, uteliaisuutesi ja rakkautesi hyviä kirjoja kohtaan. Sukelletaan fantastisiin lukuhetkiin ja vielä fantastisempiin keskusteluihin! Liittyäksisi mukaan, lähetä sähköpostia noemi.dienes@gmail.com.</p><p>Älä jää paitsi hauskasta, liity puolentoista tunnin hauskanpitoon. Saat lukupiirin kuukauden kirjan aina ensimmäisen kerroksen infosta ennen jokaista tapaamista.</p><p>Nähdään!</p><p><br></p><p><strong>Kirjat</strong></p><p>ke 28.08.2024 Mexican Gothic&nbsp;&nbsp;by&nbsp;Silvia&nbsp;Moreno-Garcia</p><p>ke 25.09.2024 My Dark Vanessa&nbsp;by Kate Elizabeth Russell</p><p>ke 30.10.2024 Piranesi&nbsp;by&nbsp;&nbsp;Susanna&nbsp;Clarke</p><p>ke 27.11.2024 The Last Devil to Die&nbsp;by Richard Osman</p><p>ke 11.12.2024 Breakfast at Tiffany's&nbsp;by Truman Capote</p>",
                "en": "<p>Join the Fun at the Sello Library English Book Club!</p><p>Do you love lively discussions about literature? Are you a bookworm with a sense of humor?&nbsp;Then the Sello Library English Book Club is the perfect place for you!</p><p>&nbsp;</p><p>📚&nbsp;**What:** Sello Library English Book Club</p><p>📅&nbsp;**When:** Last Wednesdays of the month</p><p>🕑&nbsp;**Time:** 2 PM to 3:30 PM</p><p>📍&nbsp;**Where:** Elina Room</p><p><br></p><p>Bring your wit, your curiosity, and your love for great books. Let's dive into fantastic reads and even better conversations! To join send an email to&nbsp;noemi.dienes@gmail.com.</p><p>Don't miss out on the fun—join us for an hour and a half of literary joy and lively banter.&nbsp;You can get the books from the first floor info a month before each meeting.</p><p>See you there!</p><p><br></p><p><strong>Books</strong></p><p>28 August&nbsp;Mexican Gothic&nbsp;&nbsp;by&nbsp;Silvia&nbsp;Moreno-Garcia</p><p>25 September&nbsp;My Dark Vanessa&nbsp;by Kate Elizabeth Russell</p><p>30 October&nbsp;Piranesi&nbsp;by&nbsp;&nbsp;Susanna&nbsp;Clarke</p><p>27 November&nbsp;The Last Devil to Die&nbsp;by Richard Osman</p><p>11 December&nbsp;Breakfast at Tiffany's&nbsp;by Truman Capote</p>"
            },
            "name": {
                "fi": "Englanninkielinen lukupiiri",
                "en": "English Book Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Elina",
                "en": "Elina"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndliq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agizqwhbqa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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:p10727/?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: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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agizqwhbtq/?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-08-28T08:24:43.274044Z",
            "last_modified_time": "2024-08-31T07:41:35.934835Z",
            "date_published": null,
            "start_time": "2024-09-26T14:30:00Z",
            "end_time": "2024-09-26T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Omppu Open Mic Runostage on lavarunoklubi, jossa pääsee kuuntelemaan runoja sekä esittämään omia tekstejä kannustavan yleisön edessä.",
                "sv": "Omppu Open Mic Runostage är en estrad-diktklubb där du kan uppföra dina egna texter inför en uppmuntrande publik. ",
                "en": "Omppu Open Mic Poetry Stage is a spoken word club where you can listen to poems and perform your own texts in front of a supportive audience."
            },
            "info_url": {
                "fi": "https://espoonkirjailijat.fi",
                "sv": "https://espoonkirjailijat.fi"
            },
            "description": {
                "fi": "<p>Tule nauttimaan itseilmaisusta, jakamaan ajatuksiasi ja kuuntelemaan muiden runopäiden esityksiä.</p><p>Kukin avomikittäjä saa käyttää esitykseensä max viisi minuuttia.</p><p>Ilmoittautumiset paikan päällä, esiintymisjärjestys arvotaan noin kymmenelle ensimmäisenä ilmoittautuneelle.</p><p>Seremoniamestarina toimii Sanna Vaara eli Räppäri Vaara, ja kunkin illan aloittaa ennalta sovittu esiintyjä.</p><p>Torstaisin:</p><p>26.9.2024 klo 17.30-19.00 Esiintyjä lavarunoilija <strong>HARRI HERTELL </strong>31.10.2024 klo 17.30-19.00 Esiintyjä lavarunoilija julkistetaan myöhemmin</p><p>12.12.2024 klo 17.30-19.00 Esiintyjä lavarunoilija julkistetaan myöhemmin</p><p>Tervetuloa lavarunoilemaan tai kuuntelemaan nykyrunoutta!</p>",
                "sv": "<p>Kom och njut av självuttryck, dela med dig av dina tankar och lyssna på andra dikttolkningar.</p><p>Varje person som uppträder får högst fem minuter för sitt framträdande.</p><p>Anmälningar på platsen, lottning av turordningen mellan de ungefär tio som anmält sig först.</p><p>Sanna Vaara är ceremonimästare, a.k.a. Räppäri Vaara, och varje kväll inleds med en på förhand bestämd uppträdare.</p><p>Torsdagar:</p><p>26.9.2024 kl. 17.30-19.00 uppträdande scenpoet HARRI HERTELL </p><p>31.10.2024 kl. 17.30-19.00Uppträdande av lavarpoet kommer att meddelas senare</p><p>12.12.2024 kl. 17.30-19.00Uppträdande av lavarpoet kommer att meddelas senare</p><p><br></p><p>Välkommen att uppföra dikter eller lyssna på modern poesi!</p>",
                "en": "<p>Come enjoy self-expression, share your thoughts, and listen to performances by other poetry enthusiasts.</p><p>Each open mic performer will have a maximum of five minutes for their presentation.</p><p>Sign-ups will be done on-site, and the performance order will be randomly selected from the first ten to register.</p><p>The master of ceremonies will be Sanna Vaara, also known as Rapper Vaara, and each evening will begin with a pre-arranged performer.</p><p>Thursdays:</p><p>26.9.2024, 17:30-19:00 performing stage poet HARRI HERTELL </p><p>31.10.2024, 17:30-19:00 Featured poet will be announced later</p><p>12.12.2024, 17:30-19:00 Featured poet will be announced later</p><p>Welcome to perform or to enjoy contemporary poetry!</p>"
            },
            "name": {
                "fi": "Omppu Open mic - lavarunotapahtuma",
                "sv": "Omppu Open Mic Runostage - diktklubb ",
                "en": "Omppu Open Mic - Spoken Word Poetry Event"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage ",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": "Espoon Kirjailijat ry.",
                "sv": "Espoon Kirjailijat ry.",
                "en": "https://espoonkirjailijat.fi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agizqwhbqa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agizqwhbmm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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:p10727/?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: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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agizqwhbtq/?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-08-28T08:24:43.383548Z",
            "last_modified_time": "2024-08-31T07:41:35.793389Z",
            "date_published": null,
            "start_time": "2024-10-31T15:30:00Z",
            "end_time": "2024-10-31T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Omppu Open Mic Runostage on lavarunoklubi, jossa pääsee kuuntelemaan runoja sekä esittämään omia tekstejä kannustavan yleisön edessä.",
                "sv": "Omppu Open Mic Runostage är en estrad-diktklubb där du kan uppföra dina egna texter inför en uppmuntrande publik. ",
                "en": "Omppu Open Mic Poetry Stage is a spoken word club where you can listen to poems and perform your own texts in front of a supportive audience."
            },
            "info_url": {
                "fi": "https://espoonkirjailijat.fi",
                "sv": "https://espoonkirjailijat.fi"
            },
            "description": {
                "fi": "<p>Tule nauttimaan itseilmaisusta, jakamaan ajatuksiasi ja kuuntelemaan muiden runopäiden esityksiä.</p><p>Kukin avomikittäjä saa käyttää esitykseensä max viisi minuuttia.</p><p>Ilmoittautumiset paikan päällä, esiintymisjärjestys arvotaan noin kymmenelle ensimmäisenä ilmoittautuneelle.</p><p>Seremoniamestarina toimii Sanna Vaara eli Räppäri Vaara, ja kunkin illan aloittaa ennalta sovittu esiintyjä.</p><p>Torstaisin:</p><p>26.9.2024 klo 17.30-19.00 Esiintyjä lavarunoilija <strong>HARRI HERTELL </strong>31.10.2024 klo 17.30-19.00 Esiintyjä lavarunoilija julkistetaan myöhemmin</p><p>12.12.2024 klo 17.30-19.00 Esiintyjä lavarunoilija julkistetaan myöhemmin</p><p>Tervetuloa lavarunoilemaan tai kuuntelemaan nykyrunoutta!</p>",
                "sv": "<p>Kom och njut av självuttryck, dela med dig av dina tankar och lyssna på andra dikttolkningar.</p><p>Varje person som uppträder får högst fem minuter för sitt framträdande.</p><p>Anmälningar på platsen, lottning av turordningen mellan de ungefär tio som anmält sig först.</p><p>Sanna Vaara är ceremonimästare, a.k.a. Räppäri Vaara, och varje kväll inleds med en på förhand bestämd uppträdare.</p><p>Torsdagar:</p><p>26.9.2024 kl. 17.30-19.00 uppträdande scenpoet HARRI HERTELL </p><p>31.10.2024 kl. 17.30-19.00Uppträdande av lavarpoet kommer att meddelas senare</p><p>12.12.2024 kl. 17.30-19.00Uppträdande av lavarpoet kommer att meddelas senare</p><p><br></p><p>Välkommen att uppföra dikter eller lyssna på modern poesi!</p>",
                "en": "<p>Come enjoy self-expression, share your thoughts, and listen to performances by other poetry enthusiasts.</p><p>Each open mic performer will have a maximum of five minutes for their presentation.</p><p>Sign-ups will be done on-site, and the performance order will be randomly selected from the first ten to register.</p><p>The master of ceremonies will be Sanna Vaara, also known as Rapper Vaara, and each evening will begin with a pre-arranged performer.</p><p>Thursdays:</p><p>26.9.2024, 17:30-19:00 performing stage poet HARRI HERTELL </p><p>31.10.2024, 17:30-19:00 Featured poet will be announced later</p><p>12.12.2024, 17:30-19:00 Featured poet will be announced later</p><p>Welcome to perform or to enjoy contemporary poetry!</p>"
            },
            "name": {
                "fi": "Omppu Open mic - lavarunotapahtuma",
                "sv": "Omppu Open Mic Runostage - diktklubb ",
                "en": "Omppu Open Mic - Spoken Word Poetry Event"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage ",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": "Espoon Kirjailijat ry.",
                "sv": "Espoon Kirjailijat ry.",
                "en": "https://espoonkirjailijat.fi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agizqwhbmm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agizqwhbbq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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:p10727/?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: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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agizqwhbtq/?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-08-28T08:24:43.612580Z",
            "last_modified_time": "2024-08-31T07:41:35.570423Z",
            "date_published": null,
            "start_time": "2024-12-12T15:30:00Z",
            "end_time": "2024-12-12T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Omppu Open Mic Runostage on lavarunoklubi, jossa pääsee kuuntelemaan runoja sekä esittämään omia tekstejä kannustavan yleisön edessä.",
                "sv": "Omppu Open Mic Runostage är en estrad-diktklubb där du kan uppföra dina egna texter inför en uppmuntrande publik. ",
                "en": "Omppu Open Mic Poetry Stage is a spoken word club where you can listen to poems and perform your own texts in front of a supportive audience."
            },
            "info_url": {
                "fi": "https://espoonkirjailijat.fi",
                "sv": "https://espoonkirjailijat.fi"
            },
            "description": {
                "fi": "<p>Tule nauttimaan itseilmaisusta, jakamaan ajatuksiasi ja kuuntelemaan muiden runopäiden esityksiä.</p><p>Kukin avomikittäjä saa käyttää esitykseensä max viisi minuuttia.</p><p>Ilmoittautumiset paikan päällä, esiintymisjärjestys arvotaan noin kymmenelle ensimmäisenä ilmoittautuneelle.</p><p>Seremoniamestarina toimii Sanna Vaara eli Räppäri Vaara, ja kunkin illan aloittaa ennalta sovittu esiintyjä.</p><p>Torstaisin:</p><p>26.9.2024 klo 17.30-19.00 Esiintyjä lavarunoilija <strong>HARRI HERTELL </strong>31.10.2024 klo 17.30-19.00 Esiintyjä lavarunoilija julkistetaan myöhemmin</p><p>12.12.2024 klo 17.30-19.00 Esiintyjä lavarunoilija julkistetaan myöhemmin</p><p>Tervetuloa lavarunoilemaan tai kuuntelemaan nykyrunoutta!</p>",
                "sv": "<p>Kom och njut av självuttryck, dela med dig av dina tankar och lyssna på andra dikttolkningar.</p><p>Varje person som uppträder får högst fem minuter för sitt framträdande.</p><p>Anmälningar på platsen, lottning av turordningen mellan de ungefär tio som anmält sig först.</p><p>Sanna Vaara är ceremonimästare, a.k.a. Räppäri Vaara, och varje kväll inleds med en på förhand bestämd uppträdare.</p><p>Torsdagar:</p><p>26.9.2024 kl. 17.30-19.00 uppträdande scenpoet HARRI HERTELL </p><p>31.10.2024 kl. 17.30-19.00Uppträdande av lavarpoet kommer att meddelas senare</p><p>12.12.2024 kl. 17.30-19.00Uppträdande av lavarpoet kommer att meddelas senare</p><p><br></p><p>Välkommen att uppföra dikter eller lyssna på modern poesi!</p>",
                "en": "<p>Come enjoy self-expression, share your thoughts, and listen to performances by other poetry enthusiasts.</p><p>Each open mic performer will have a maximum of five minutes for their presentation.</p><p>Sign-ups will be done on-site, and the performance order will be randomly selected from the first ten to register.</p><p>The master of ceremonies will be Sanna Vaara, also known as Rapper Vaara, and each evening will begin with a pre-arranged performer.</p><p>Thursdays:</p><p>26.9.2024, 17:30-19:00 performing stage poet HARRI HERTELL </p><p>31.10.2024, 17:30-19:00 Featured poet will be announced later</p><p>12.12.2024, 17:30-19:00 Featured poet will be announced later</p><p>Welcome to perform or to enjoy contemporary poetry!</p>"
            },
            "name": {
                "fi": "Omppu Open mic - lavarunotapahtuma",
                "sv": "Omppu Open Mic Runostage - diktklubb ",
                "en": "Omppu Open Mic - Spoken Word Poetry Event"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage ",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": "Espoon Kirjailijat ry.",
                "sv": "Espoon Kirjailijat ry.",
                "en": "https://espoonkirjailijat.fi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agizqwhbbq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agizqwhbtq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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:p10727/?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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agizqwhbbq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agizqwhbmm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agizqwhbqa/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-28T08:24:42.656166Z",
            "last_modified_time": "2024-08-31T07:41:33.583302Z",
            "date_published": null,
            "start_time": "2024-09-26T14:30:00Z",
            "end_time": "2024-12-12T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Omppu Open Mic Runostage on lavarunoklubi, jossa pääsee kuuntelemaan runoja sekä esittämään omia tekstejä kannustavan yleisön edessä.",
                "sv": "Omppu Open Mic Runostage är en estrad-diktklubb där du kan uppföra dina egna texter inför en uppmuntrande publik. ",
                "en": "Omppu Open Mic Poetry Stage is a spoken word club where you can listen to poems and perform your own texts in front of a supportive audience."
            },
            "info_url": {
                "fi": "https://espoonkirjailijat.fi",
                "sv": "https://espoonkirjailijat.fi"
            },
            "description": {
                "fi": "<p>Tule nauttimaan itseilmaisusta, jakamaan ajatuksiasi ja kuuntelemaan muiden runopäiden esityksiä.</p><p>Kukin avomikittäjä saa käyttää esitykseensä max viisi minuuttia.</p><p>Ilmoittautumiset paikan päällä, esiintymisjärjestys arvotaan noin kymmenelle ensimmäisenä ilmoittautuneelle.</p><p>Seremoniamestarina toimii Sanna Vaara eli Räppäri Vaara, ja kunkin illan aloittaa ennalta sovittu esiintyjä.</p><p>Torstaisin:</p><p>26.9.2024 klo 17.30-19.00 Esiintyjä lavarunoilija <strong>HARRI HERTELL </strong>31.10.2024 klo 17.30-19.00 Esiintyjä lavarunoilija julkistetaan myöhemmin</p><p>12.12.2024 klo 17.30-19.00 Esiintyjä lavarunoilija julkistetaan myöhemmin</p><p>Tervetuloa lavarunoilemaan tai kuuntelemaan nykyrunoutta!</p>",
                "sv": "<p>Kom och njut av självuttryck, dela med dig av dina tankar och lyssna på andra dikttolkningar.</p><p>Varje person som uppträder får högst fem minuter för sitt framträdande.</p><p>Anmälningar på platsen, lottning av turordningen mellan de ungefär tio som anmält sig först.</p><p>Sanna Vaara är ceremonimästare, a.k.a. Räppäri Vaara, och varje kväll inleds med en på förhand bestämd uppträdare.</p><p>Torsdagar:</p><p>26.9.2024 kl. 17.30-19.00 uppträdande scenpoet HARRI HERTELL </p><p>31.10.2024 kl. 17.30-19.00Uppträdande av lavarpoet kommer att meddelas senare</p><p>12.12.2024 kl. 17.30-19.00Uppträdande av lavarpoet kommer att meddelas senare</p><p><br></p><p>Välkommen att uppföra dikter eller lyssna på modern poesi!</p>",
                "en": "<p>Come enjoy self-expression, share your thoughts, and listen to performances by other poetry enthusiasts.</p><p>Each open mic performer will have a maximum of five minutes for their presentation.</p><p>Sign-ups will be done on-site, and the performance order will be randomly selected from the first ten to register.</p><p>The master of ceremonies will be Sanna Vaara, also known as Rapper Vaara, and each evening will begin with a pre-arranged performer.</p><p>Thursdays:</p><p>26.9.2024, 17:30-19:00 performing stage poet HARRI HERTELL </p><p>31.10.2024, 17:30-19:00 Featured poet will be announced later</p><p>12.12.2024, 17:30-19:00 Featured poet will be announced later</p><p>Welcome to perform or to enjoy contemporary poetry!</p>"
            },
            "name": {
                "fi": "Omppu Open mic - lavarunotapahtuma",
                "sv": "Omppu Open Mic Runostage - diktklubb ",
                "en": "Omppu Open Mic - Spoken Word Poetry Event"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage ",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": "Espoon Kirjailijat ry.",
                "sv": "Espoon Kirjailijat ry.",
                "en": "https://espoonkirjailijat.fi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agizqwhbtq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agihf6jioy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "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:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-07-02T10:13:17.564876Z",
            "last_modified_time": "2024-08-30T14:30:49.175441Z",
            "date_published": null,
            "start_time": "2024-09-01T10:00:00Z",
            "end_time": "2024-09-01T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.",
                "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.",
                "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries."
            },
            "info_url": {
                "fi": "https://helmet.finna.fi/",
                "sv": "https://helmet.finna.fi/?lng=sv",
                "en": "https://helmet.finna.fi/?lng=en-gb"
            },
            "description": {
                "fi": "<p>Vanhan torvimusiikin ystävät - Syksytorwet Ison Omenan kirjaston Stagella 1.9. klo 13.00 </p><p><br></p><p>Syöksytorvet on pääkaupunkiseudulla vaikuttava dixie-jazz-bändi.&nbsp;&nbsp;</p><p>Tätä New Orleans -jazzia kutsutaan myös happy jazziksi ja juuri sitähän tämä onkin: rentoa, ilmavaa ja iloista soittoa 1900-luvun alkupuolen tyyliin!&nbsp;&nbsp;</p><p>Bändissä on laulajan lisäksi saksofoneja, trumpetti, tuuba, vetopasuuna, klarinetti, kitara ja rummut. Rutiinia löytyy paljon ja intoa sitäkin enemmän!&nbsp;</p><p><br></p><p>Ohjelmistossa on kappaleita sadan vuoden takaisista jazz-klassikoista uudempiin tuttuihin biiseihin, jotka on sovitettu jazz/swing-meininkiin. Syöksytorvet tarjoaa mukavaa tunnelmaa svengaavassa jazz-hengessä!&nbsp;</p><p><br></p><p>Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.</p><p>Kulttuuriketjun esityksiä järjestetään syksyn puolella elokuusta marraskuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 31 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.</p><p><br></p><p>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p><br></p><p>Tervetuloa nauttimaan kulttuurista!</p><p><br></p><p>Tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa</p><p><br></p><p>Kuva: pixabay</p>",
                "sv": "<p>Vanhan torvimusiikin ystävät - Syksytorwet i Iso Omena bibliotek Stage den 1.9. kl. 13.00</p><p>Syöksytorvet är ett dixiejazzband som verkar i huvudstadsregionen.&nbsp;</p><p>Den här sortens New Orleans-jazz kallas också för happy jazz och det är precis vad den är: avslappnad, luftig och glad musik med influenser från början av 1900-talet!&nbsp;</p><p>Förutom sång hörs saxofon, trumpet, tuba, trombon, klarinett, gitarr och trummor i bandet. Erfarenhet och entusiasm finns det gott om!&nbsp;</p><p>Repertoaren inkluderar låtar från hundra år gamla jazzklassiker till nyare välkända låtar som är arrangerade i jazz/swing-stil. Syöksytorvet bjuder på trevlig stämning i svängig jazzanda!&nbsp;</p><p><br></p><p>Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.</p><p>Kulturkedjans föreställningar arrangeras under hösten från augusti till november.</p><p>Kulturkedjan bjuder på fantastiska 31 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.</p><p><br></p><p>Du hittar alla föreställningar med sökordet \"kulturkedjan\".</p><p><br></p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p><p><br></p><p>Evenemangen genomförs i samarbete med Kulturkedjan.</p><p><br></p><p>Photo: pixabay</p>",
                "en": "<p><strong>Vanhan torvimusiikin ystävät - Syksytorwet at Iso Omena Library's Stage on 1.9. at 13.00</strong></p><p>Syöksytorvet är ett dixiejazzband som verkar i huvudstadsregionen.&nbsp;</p><p>Den här sortens New Orleans-jazz kallas också för happy jazz och det är precis vad den är: avslappnad, luftig och glad musik med influenser från början av 1900-talet!&nbsp;</p><p>Förutom sång hörs saxofon, trumpet, tuba, trombon, klarinett, gitarr och trummor i bandet. Erfarenhet och entusiasm finns det gott om!&nbsp;</p><p>Repertoaren inkluderar låtar från hundra år gamla jazzklassiker till nyare välkända låtar som är arrangerade i jazz/swing-stil. Syöksytorvet bjuder på trevlig stämning i svängig jazzanda!&nbsp;</p><p>The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries.</p><p>Cultural Chain performances are organized from August to November. The Cultural Chain brings an impressive 31 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.</p><p><br></p><p>You can find all performances by searching with the keyword \"cultural chain\".</p><p><br></p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p><p><br></p><p>The events are carried out in collaboration with the Cultural Chain.</p>"
            },
            "name": {
                "fi": "Kulttuuriketju -Vanhan torvimusiikin ystävät Ison Omenan kirjastossa",
                "sv": "Kulturkedjan - Vanhan torvimusiikin ystävät i Iso Omena bibliotek",
                "en": "Cultural Chain  - Vanhan torvimusiikin ystävät at Iso Omena Library"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": "tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa",
                "sv": "Evenemangen genomförs i samarbete med Kulturkedjan.",
                "en": "The events are carried out in collaboration with the Cultural Chain."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihf6jioy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63880",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "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/eventseries/3650694",
                        "sv": "https://www.lippu.fi/eventseries/3650694",
                        "en": "https://www.lippu.fi/eventseries/3650694"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50-48,50 €",
                        "sv": "24,50-48,50 €",
                        "en": "24,50-48,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151281,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T09:13:21.010787Z",
                    "last_modified_time": "2024-05-23T09:13:21.010802Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751229.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151281/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T09:13:20.974372Z",
            "last_modified_time": "2024-08-30T13:15:46.568168Z",
            "date_published": null,
            "start_time": "2024-09-11T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Konsertti on loppuunmyyty! Antti Sarpila juhlii 60-vuotista taivaltaan juhlakonsertilla Savoy-teatterissa keskiviikkona 11.9. klo 19.00.",
                "sv": "Antti Sarpila firar sin 60-åriga karriär med en jubileumskonsert på Savoy-teatern",
                "en": "Antti Sarpila celebrates his 60-year musical journey with a festive concert at the Savoy Theatre"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/90949B4F0A8C8D123C3A559A461F10AA/LOPPUUNMYYTY_Antti_Sarpila_60th_Anniversary_Concert",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/90949B4F0A8C8D123C3A559A461F10AA/SLUTSALD_Antti_Sarpila_60th_Anniversary_Concert",
                "en": "http://www.savoyteatteri.fi/en/events/event/90949B4F0A8C8D123C3A559A461F10AA/SOLD_OUT_Antti_Sarpila_60th_Anniversary_Concert"
            },
            "description": {
                "fi": "<p>Konsertti on loppuunmyyty! Antti Sarpila juhlii 60-vuotista taivaltaan juhlakonsertilla Savoy-teatterissa keskiviikkona 11.9. klo 19.00.</p><p>Antti marssittaa lavalle suuren joukon ystäviään musiikin alalta. Kuulemme kavalkaadissa esityksiä Suomen parhailta jazzmuusikoilta. Joidenkin kanssa hänellä on ollut kunnia esiintyä jo uransa alkuajoista lähtien ja jotkut ovat uusia tuttavuuksia viime vuosilta. Luvassa on läpileikkaus Antin pitkältä ja monivaiheiselta soittouralta.</p><p>Rytmiryhmä koostuu tietenkin Antin oman yhtyeen - <b>Antti Sarpila Swing Band</b> - jäsenistä. <b>Janne Hovin</b> mestariluokan pianismi ei jätä ketään kylmäksi. <b>Wade Mikkola</b> luo bassollaan vankan pohjan, jonka varaan muiden on helppo rakentaa ja <b>Thomas Rönnholm</b> rumpujen takana on varma tae rytmisestä ilotulituksesta.</p><p>Vierailijoina ovat instrumenttiensa ehdottomat taiturit <b>Mikko Pettinen</b> trp, <b>Joonatan Rautio</b> ts ja <b>Kasperi Sarikoski</b> trb, jotka todistavat jazzin perinteiden olevan hyvissä käsissä. Mukaan menoon hyppää myös television kautta jazzia suomalaisille tunnetuksi tehnyt pianisti <b>Seppo Hovi</b>. Lauluosuuksista vastaavat vuoden 2022 tangokuningatar <b>Heta Halonen</b> sekä lentävä laulaja <b>Mikael Konttinen</b>.</p><p>Musiikki on takuuvarmaa klassista jazzia, jonka juuret ovat New Orleansissa ja joka historian kirjojen mukaan siirtyi Chicagon kautta New Yorkiin, jossa siitä tuli swingin kulta-aikana oman aikansa pop-musiikkia. Tämä lyhyt aikakausi viime vuosisadan ensimmäisinä vuosikymmeninä tuotti meille musiikkia, joka tulee jäämään historiaan Amerikan merkittävimpänä panoksena maailman kulttuuriperintöön. Antti haluaa välittää kuulijoilleen niin soitossaan kuin sävellyksissään tuon upean ajanjakson tunnelmalliset vangitsevat melodiat, tunteisiin vetoavat harmoniat, kiehtovat sointivärit sekä sen ainutlaatuisen svengin.</p><p>Tervetuloa juhlistamaan Antin merkittävää vanhenemista musiikin merkeissä.</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>",
                "sv": "<p>Antti Sarpila firar sin 60-åriga karriär med en jubileumskonsert på Savoy-teatern</p><p>Antti marscherar upp på scenen med en stor grupp av sina vänner från musikbranschen. I kavalkaden får vi höra framträdanden av de bästa jazzmusikerna i Finland. Med en del av musikerna har han haft äran att uppträda ända sedan början av hans karriär, och andra är nya bekanta från de senaste åren. Ett tvärsnitt från Anttis långa och mångsidiga musikerkarriär utlovas.</p><p>Rytmgruppen består naturligtvis av medlemmarna i Antti Sarpilas eget band – <b>Antti Sarpila Swing Band</b>. Janne Hovis mästerliga pianospel fängslar alla och envar. Med sin bas skapar Wade Mikkola en stadig grund som andra lätt kan bygga på, och med Thomas Rönnholm bakom trummorna är det rytmiska fyrverkeriet garanterat.</p><p>Som gästartister får vi höra de absoluta mästarna på sina instrument Mikko Pettinen trp, Joonatan Rautio ts och Kasperi Sarikoski trb, som alla bevisar att jazztraditionerna är i goda händer. Även pianisten Seppo Hovi som gjorde jazzen känd för den finska publiken via tv hoppar in. Sångavsnitten framförs av tangodrottningen från år 2022 Heta Halonen och den flygande sångaren Mikael Konttinen.</p><p>Musiken är garanterad klassisk jazz, vars rötter finns i New Orleans och som enligt historieböckerna flyttade via Chicago till New York, där den blev tidserans popmusik under swingens guldålder. Denna korta period under förra seklets första decennier gav oss den musik som kommer att gå till historien som Amerikas viktigaste bidrag till världskulturarvet. Både med sitt spelande och sina kompositioner önskar Antti förmedla de stämningsfulla och fängslande melodierna, de känslofyllda harmonierna, de fascinerande klangfärgerna och den unika swingen från denna underbara period.</p><p>Välkommen att fira Anttis betydande musikkarriär.</p><p>Åldersgräns: T</p><p>Längd ca 2 h 30 min., inklusive paus</p>",
                "en": "<p>Antti Sarpila celebrates his 60-year musical journey with a festive concert at the Savoy Theatre</p><p>Antti will be joined on stage by a large group of his friends from the music industry. We will hear a series of performances from Finland’s best jazz musicians. He has had the pleasure of performing with some of these musicians since the early days of his career, while others are new acquaintances he has made in recent years. The show will feature a wide range of music from Antti’s long and varied music career.</p><p>The rhythm section, of course, consists of members of Antti’s own band – the <b>Antti Sarpila Swing Band</b>. Janne Hovi’s master-class piano playing won’t leave anyone cold. With the bass, Wade Mikkola creates a solid foundation for others to build on easily, and Thomas Rönnholm behind the drums is a sure bet for rhythmic fireworks.</p><p>The guest list includes absolute masters of their instruments: Mikko Pettinen (trumpet), Joonatan Rautio (tenor sax) and Kasperi Sarikoski (trombone), who prove that the jazz tradition is in good hands. Pianist Seppo Hovi, who made jazz known to Finns through his television appearances, will also join the festivities. Heta Halonen, the tango queen of 2022, and the flying singer Mikael Konttinen will be in charge of vocals.</p><p>The music is guaranteed to be classical jazz, which has its roots in New Orleans and, according to history books, spread through Chicago to New York, where it became the pop music of its time during the golden age of swing. This short period in the first decades of the last century brought us music that will go down in history as America’s most significant contribution to the world’s cultural heritage. In his performances and compositions, Antti wants to share with his listeners the atmospheric and captivating melodies, emotionally appealing harmonies, compelling tones, and unique swing from that wonderful period.</p><p>We welcome you to join us in celebrating Antti’s significant milestone with music.</p><p>Age limit: All ages</p><p>Duration: approx. 2 h 30 min, including an intermission</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY: Antti Sarpila 60th Anniversary Concert",
                "sv": "SLUTSÅLD: Antti Sarpila 60th Anniversary Concert",
                "en": "SOLD OUT: Antti Sarpila 60th Anniversary Concert"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Suomen Perinnejazz ry",
                "sv": "Suomen Perinnejazz ry",
                "en": "Suomen Perinnejazz ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63880/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agio6ax4rq",
            "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:p2149/?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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agio6ax444/?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-07-26T11:51:36.612874Z",
            "last_modified_time": "2024-08-30T11:02:48.983498Z",
            "date_published": null,
            "start_time": "2024-09-20T13:00:00Z",
            "end_time": "2024-09-20T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin",
                "sv": "Kom och upptäck verkstadens utrustning och möjligheter",
                "en": "Come and discover the equipment and possibilities of the Paja"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 9.8.2024 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>",
                "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 9 augusti 2024, varannan fredag ​​klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>",
                "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on August 9, 2024, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>"
            },
            "name": {
                "fi": "Paja tutuksi kaikille!",
                "sv": "Lär känna Paja!  ",
                "en": "Paja for everyone! "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agio6ax4rq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi2lihosu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwunmhq/?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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-08-30T10:56:06.128214Z",
            "last_modified_time": "2024-08-30T11:00:08.918215Z",
            "date_published": null,
            "start_time": "2024-09-02T07:00:00Z",
            "end_time": "2024-09-02T08:05:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai ja keskiviikko. (ei ohjausta arkipyhinä)\n\nTervetuloa!",
                "sv": "Stolgymnastik, stretching och balans varje måndag och onsdag. (ingen undervisning under helgdagar)\n\nVälkommen!",
                "en": "Chair gymnastics, bodywork and balance every Monday and wednesday. (no instruction during  public holidays)\n\nWelcome!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto &amp; tasapaino joka maanantai ja keskiviikko. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>klo 10.00-10.30 Tuolijumppa</p><p>klo 10.35-11.05 Kehonhuolto &amp; tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>",
                "sv": "<p>Stolgymnastik, stretching &amp; balans varje måndag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>kl. 10.00-10.30 Stolgymnastik</p><p>kl. 10.35-11.05 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p>",
                "en": "<p>Chair gymnastics, bodywork &amp; balance every Monday. (no instruction during public holidays)</p><p>Schedule:</p><p>10.00-10.30 Chair exercises</p><p>10.35-11.05 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>"
            },
            "name": {
                "fi": "Maanantain tuolijumppa, kehonhuolto & tasapaino ",
                "sv": "Stolgymnastik, stretching och balans",
                "en": "Chair gymnastics, body maintenance & balance"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage "
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi2lihosu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzwunkui",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwunmhq/?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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-05-21T12:17:53.492337Z",
            "last_modified_time": "2024-08-30T11:00:08.342546Z",
            "date_published": null,
            "start_time": "2024-12-09T08:00:00Z",
            "end_time": "2024-12-09T09:05:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai ja keskiviikko. (ei ohjausta arkipyhinä)\n\nTervetuloa!",
                "sv": "Stolgymnastik, stretching och balans varje måndag och onsdag. (ingen undervisning under helgdagar)\n\nVälkommen!",
                "en": "Chair gymnastics, bodywork and balance every Monday and wednesday. (no instruction during  public holidays)\n\nWelcome!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto &amp; tasapaino joka maanantai ja keskiviikko. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>klo 10.00-10.30 Tuolijumppa</p><p>klo 10.35-11.05 Kehonhuolto &amp; tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>",
                "sv": "<p>Stolgymnastik, stretching &amp; balans varje måndag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>kl. 10.00-10.30 Stolgymnastik</p><p>kl. 10.35-11.05 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p>",
                "en": "<p>Chair gymnastics, bodywork &amp; balance every Monday. (no instruction during public holidays)</p><p>Schedule:</p><p>10.00-10.30 Chair exercises</p><p>10.35-11.05 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>"
            },
            "name": {
                "fi": "Maanantain tuolijumppa, kehonhuolto & tasapaino ",
                "sv": "Stolgymnastik, stretching och balans",
                "en": "Chair gymnastics, body maintenance & balance"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage "
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwunkui/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzwunkx4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwunmhq/?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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-05-21T12:17:53.299639Z",
            "last_modified_time": "2024-08-30T11:00:08.074256Z",
            "date_published": null,
            "start_time": "2024-12-02T08:00:00Z",
            "end_time": "2024-12-02T09:05:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai ja keskiviikko. (ei ohjausta arkipyhinä)\n\nTervetuloa!",
                "sv": "Stolgymnastik, stretching och balans varje måndag och onsdag. (ingen undervisning under helgdagar)\n\nVälkommen!",
                "en": "Chair gymnastics, bodywork and balance every Monday and wednesday. (no instruction during  public holidays)\n\nWelcome!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto &amp; tasapaino joka maanantai ja keskiviikko. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>klo 10.00-10.30 Tuolijumppa</p><p>klo 10.35-11.05 Kehonhuolto &amp; tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>",
                "sv": "<p>Stolgymnastik, stretching &amp; balans varje måndag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>kl. 10.00-10.30 Stolgymnastik</p><p>kl. 10.35-11.05 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p>",
                "en": "<p>Chair gymnastics, bodywork &amp; balance every Monday. (no instruction during public holidays)</p><p>Schedule:</p><p>10.00-10.30 Chair exercises</p><p>10.35-11.05 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>"
            },
            "name": {
                "fi": "Maanantain tuolijumppa, kehonhuolto & tasapaino ",
                "sv": "Stolgymnastik, stretching och balans",
                "en": "Chair gymnastics, body maintenance & balance"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage "
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwunkx4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzwunk3u",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwunmhq/?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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-05-21T12:17:53.103946Z",
            "last_modified_time": "2024-08-30T11:00:07.679147Z",
            "date_published": null,
            "start_time": "2024-11-25T08:00:00Z",
            "end_time": "2024-11-25T09:05:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai ja keskiviikko. (ei ohjausta arkipyhinä)\n\nTervetuloa!",
                "sv": "Stolgymnastik, stretching och balans varje måndag och onsdag. (ingen undervisning under helgdagar)\n\nVälkommen!",
                "en": "Chair gymnastics, bodywork and balance every Monday and wednesday. (no instruction during  public holidays)\n\nWelcome!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto &amp; tasapaino joka maanantai ja keskiviikko. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>klo 10.00-10.30 Tuolijumppa</p><p>klo 10.35-11.05 Kehonhuolto &amp; tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>",
                "sv": "<p>Stolgymnastik, stretching &amp; balans varje måndag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>kl. 10.00-10.30 Stolgymnastik</p><p>kl. 10.35-11.05 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p>",
                "en": "<p>Chair gymnastics, bodywork &amp; balance every Monday. (no instruction during public holidays)</p><p>Schedule:</p><p>10.00-10.30 Chair exercises</p><p>10.35-11.05 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>"
            },
            "name": {
                "fi": "Maanantain tuolijumppa, kehonhuolto & tasapaino ",
                "sv": "Stolgymnastik, stretching och balans",
                "en": "Chair gymnastics, body maintenance & balance"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage "
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwunk3u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzwunlaa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwunmhq/?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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-05-21T12:17:52.891385Z",
            "last_modified_time": "2024-08-30T11:00:07.387730Z",
            "date_published": null,
            "start_time": "2024-11-18T08:00:00Z",
            "end_time": "2024-11-18T09:05:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai ja keskiviikko. (ei ohjausta arkipyhinä)\n\nTervetuloa!",
                "sv": "Stolgymnastik, stretching och balans varje måndag och onsdag. (ingen undervisning under helgdagar)\n\nVälkommen!",
                "en": "Chair gymnastics, bodywork and balance every Monday and wednesday. (no instruction during  public holidays)\n\nWelcome!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto &amp; tasapaino joka maanantai ja keskiviikko. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>klo 10.00-10.30 Tuolijumppa</p><p>klo 10.35-11.05 Kehonhuolto &amp; tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>",
                "sv": "<p>Stolgymnastik, stretching &amp; balans varje måndag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>kl. 10.00-10.30 Stolgymnastik</p><p>kl. 10.35-11.05 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p>",
                "en": "<p>Chair gymnastics, bodywork &amp; balance every Monday. (no instruction during public holidays)</p><p>Schedule:</p><p>10.00-10.30 Chair exercises</p><p>10.35-11.05 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>"
            },
            "name": {
                "fi": "Maanantain tuolijumppa, kehonhuolto & tasapaino ",
                "sv": "Stolgymnastik, stretching och balans",
                "en": "Chair gymnastics, body maintenance & balance"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage "
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwunlaa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzwunldq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwunmhq/?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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-05-21T12:17:52.432102Z",
            "last_modified_time": "2024-08-30T11:00:07.109431Z",
            "date_published": null,
            "start_time": "2024-11-11T08:00:00Z",
            "end_time": "2024-11-11T09:05:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai ja keskiviikko. (ei ohjausta arkipyhinä)\n\nTervetuloa!",
                "sv": "Stolgymnastik, stretching och balans varje måndag och onsdag. (ingen undervisning under helgdagar)\n\nVälkommen!",
                "en": "Chair gymnastics, bodywork and balance every Monday and wednesday. (no instruction during  public holidays)\n\nWelcome!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto &amp; tasapaino joka maanantai ja keskiviikko. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>klo 10.00-10.30 Tuolijumppa</p><p>klo 10.35-11.05 Kehonhuolto &amp; tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>",
                "sv": "<p>Stolgymnastik, stretching &amp; balans varje måndag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>kl. 10.00-10.30 Stolgymnastik</p><p>kl. 10.35-11.05 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p>",
                "en": "<p>Chair gymnastics, bodywork &amp; balance every Monday. (no instruction during public holidays)</p><p>Schedule:</p><p>10.00-10.30 Chair exercises</p><p>10.35-11.05 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>"
            },
            "name": {
                "fi": "Maanantain tuolijumppa, kehonhuolto & tasapaino ",
                "sv": "Stolgymnastik, stretching och balans",
                "en": "Chair gymnastics, body maintenance & balance"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage "
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwunldq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}