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 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

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=helmet

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 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

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 ordering is descending order by -last_modified_time. 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 /linkedevents/v1/event/?division=malmi&format=api&page=2
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 14202,
        "next": "http://api.hel.fi/linkedevents/v1/event/?division=malmi&format=api&page=3",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?division=malmi&format=api"
    },
    "data": [
        {
            "id": "kulke:63373",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138629,
                    "license": "event_only",
                    "created_time": "2024-04-26T15:12:55.159424Z",
                    "last_modified_time": "2024-04-26T15:12:55.159443Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749422.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138629/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-26T15:12:55.145354Z",
            "last_modified_time": "2024-04-26T15:12:55.193979Z",
            "date_published": null,
            "start_time": "2024-05-17T12: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,
            "location_extra_info": null,
            "short_description": {
                "fi": "Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella."
            },
            "name": {
                "fi": "Myrskyluodon Maija (12) – Kino Helios"
            },
            "description": {
                "fi": "<p>Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella.</p><p>Elokuva perustuu Anni Blomqvistin samannimiseen romaaniin ja sijoittuu 1800-luvun Suomen rannikkoseudulle. Nuori 17-vuotias Maija avioituu vasten tahtoaan kalastajamies Jannen kanssa. Hänen elämänsä Myrskyluodolla on täynnä haasteita ja vastoinkäymisiä: kalastajan vaimona hän joutuu selviytymään miehensä pitkistä poissaoloista merellä ja huolehtimaan perheestään yksin.</p><p>Maijasta on kuitenkin kasvanut lujatahtoinen ja itsenäinen nainen, joka ei pelkää tarttua toimeen karussa saaristossa. Maijalla ja Jannella on vahva yhteys, sekä ajan myötä syventynyt rakkaus. Janne tukee vaimonsa pyrkimyksiä ja ymmärtää, että perheen vahvuus syntyy yhteisistä ponnisteluista.</p><p>Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.</p><p>Ikäsuositus: 12<br>Kesto: 163 min<br>Elokuva on tekstitetty Suomeksi<br>Ensi-ilta: 19.1.2024</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0F00699BF1870E31C42B5A021F262798/Myrskyluodon_Maija_12_"
            },
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63373/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63342",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-esittaeae-kino-helios-malmitalo-18566662/"
                    },
                    "price": {
                        "fi": "8"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138628,
                    "license": "event_only",
                    "created_time": "2024-04-26T15:12:53.050554Z",
                    "last_modified_time": "2024-04-26T15:12:53.050573Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749112.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138628/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-04-26T15:12:53.015863Z",
            "last_modified_time": "2024-04-26T15:12:53.112644Z",
            "date_published": null,
            "start_time": "2024-05-03T12: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,
            "location_extra_info": null,
            "short_description": {
                "fi": "Madeleinen Pariisi on matka läpi muistojen, ja Pariisin käänteentekevien paikkojen."
            },
            "name": {
                "fi": "Madeleinen Pariisi (12) – Kino Helios"
            },
            "description": {
                "fi": "<p>Madeleinen Pariisi on matka läpi muistojen, ja Pariisin käänteentekevien paikkojen.</p><p>Huolien riivaama taksikuski Charles (Dany Boon) ottaa rahakkaan tuntuisen ajokeikan Pariisin laidalta toiselle.</p><p>Pian käy ilmi, että 92-vuotias Madeleine on menossa vanhainkotiin, mutta haluaa ensin ajella muistorikkaiden paikkojen kautta vailla kiirettä.</p><p>Ensirakkaudet, tulinen ero, radikaalit kamppailut naisten oikeuksista ja historian myllerrykset vyöryvät esiin Madeleinen tarinan myötä.</p><p>Nimiroolissa loistaa ikinuori näyttelijätär Line Renaud, joka tunnetaan mm. Relaxes-vous (Ottakaa rennosti) duetosta Dean Martinin kanssa. ”Hymy nuorentaa” kuvastaa Madeleinen elämänasennetta. Automatkan aikana pari ystävystyy tavalla, joka muuttaa kummankin elämän.</p><p>Kesto 91 min<br>Tekstitetty suomeksi</p><p>Ensi-ilta 15.3.2024</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/22B215465E1392DDB9FE2A89A31F02E1/Madeleinen_Pariisi_12_"
            },
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63342/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghrjqat7m",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8081/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/962356115441299",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [],
            "images": [
                {
                    "id": 138553,
                    "license": "cc_by",
                    "created_time": "2024-04-25T09:57:30.204732Z",
                    "last_modified_time": "2024-04-25T10:14:03.400908Z",
                    "name": "Kevään merkkejä",
                    "url": "http://api.hel.fi/linkedevents/media/images/kev%C3%A4t_-_1.jpeg",
                    "cropping": "382,0,1898,1516",
                    "photographer_name": "Hanna Pihko",
                    "alt_text": "Hentoja lehtiä",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138553/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-25T10:14:43.482139Z",
            "last_modified_time": "2024-04-26T06:34:48.929619Z",
            "date_published": null,
            "start_time": "2024-05-08T15:00:00Z",
            "end_time": "2024-05-08T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "out",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 20,
            "minimum_attendee_capacity": 3,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Retkelle lähdetään Pihlajamäen nuorisotalon edestä",
                "en": "Meeting point by the Pihlajamäki Youth Centre"
            },
            "short_description": {
                "fi": "Luontolumo on ohjattu kävelyretki Pihlajamäen lähiluonnossa. ",
                "en": "Nature Magic is an excursion to nearby nature in Pihlajamäki district."
            },
            "name": {
                "fi": "Luontolumo-retki",
                "en": "Nature Magic Tour"
            },
            "description": {
                "fi": "<p>Luontolumo on ohjattu kävelyretki Pihlajamäen lähiluonnossa. Retkellä tehdään kävelyn lomassa luovuutta, hyvinvointia ja läsnäoloa vahvistavia harjoituksia. Harjoitukset sisältävät kevyttä liikkumista, oman kehon ja ympäristön havainnointia, kirjoittamista ja pieniä taideteoksia luonnon omista materiaaleista.</p><p>Retkelle tarvitaan mukaan ulkoiluun sopiva vaatetus. Kovalla sateella tai myrskyllä retki siirretään toiseen ajankohtaan.</p><p>Luontolumo-retkiä vetää tanssitaiteilija ja käsikirjoittaja Hanna Pihko.</p><p>&nbsp;</p><p>Lähtöpaikka: Pihlajamäen nuorisotalo</p><p>8.5.2024</p><p>18.00-19.00</p>",
                "en": "<p>Nature Magic is an excursion to nearby nature in Pihlajamäki district.</p><p>The excursions are enriched by tasks improving creativity, well-being and understanding of nature. The tasks comprise light exercise, observations of their body and surroundings, writing and small pieces of art made of nature’s own materials.&nbsp;</p><p>&nbsp;</p><p>Meeting point: Pihlajamäki Youth Centre</p><p>8.5.2024</p><p>18.00-19.00</p><p>Free admission</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://osiristeatteri.fi/events/luontolumo/",
                "en": "https://osiristeatteri.fi/en/events/nature-magic/"
            },
            "provider": {
                "fi": "OSIRIS teatteri",
                "en": "OSIRIS theater"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghrjqat7m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghrkexns4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [],
            "images": [
                {
                    "id": 138562,
                    "license": "event_only",
                    "created_time": "2024-04-25T11:44:13.219853Z",
                    "last_modified_time": "2024-04-25T11:45:12.644517Z",
                    "name": "Kuvassa sellisti Louna Hosia.",
                    "url": "http://api.hel.fi/linkedevents/media/images/Louna_Hosia_kuvaaja_Pekka_Agarth_muokattu.jpeg",
                    "cropping": "113,0,567,454",
                    "photographer_name": "Pekka Agarth",
                    "alt_text": "Louna Hosia",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138562/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-25T11:45:13.121410Z",
            "last_modified_time": "2024-04-25T14:28:09.359042Z",
            "date_published": null,
            "start_time": "2024-06-12T08:15:00Z",
            "end_time": "2024-06-12T08:40:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Suomalaisen barokkiorkesterin sellisti Louna Hosia tarjoilee musiikkihetken barokkimusiikin äärellä."
            },
            "name": {
                "fi": "Barokkimusiikkia: FiBOn aluemuusikko Louna Hosia Tapanilan kirjastossa"
            },
            "description": {
                "fi": "<p>Suomalaisen barokkiorkesterin sellisti Louna Hosia tarjoilee musiikkihetken barokkimusiikin äärellä. Esitys on osa Helsinki-päivän aluekiertuetta, jossa muusikko kiertää koillis-Helsingissä useassa kohteessa esiintymässä. Louna Hosia on helsinkiläinen sellisti, gambisti, jouhikonsoittaja ja sahansoiton suomenmestari. Hosia on erikoistunut vanhaan musiikkiin sekä kantaesittänyt runsaasti suomalaisten nykysäveltäjien teoksia. Hosian laaja-alainen muusikkous on vienyt hänet kansainvälisille konserttilavoille, vierailevaksi äänenjohtajaksi kaupunginorkestereihin, soolosoittajaksi kotikaupunkinsa lähiöihin ja kamarimuusikoksi eri taiteenalojen festivaaleille.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": "Tapanilan kirjasto"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghrkexns4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghedqe2qm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghedqevju/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghrlgjsfq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138578,
                    "license": "event_only",
                    "created_time": "2024-04-25T14:08:30.779023Z",
                    "last_modified_time": "2024-04-25T14:09:50.188291Z",
                    "name": "Johannes Remy: Ukrainan historia käsiteltävänä lukupiirin seuraavalla kerralla.",
                    "url": "http://api.hel.fi/linkedevents/media/images/DSC_1597_9aZuSnM.JPG",
                    "cropping": "381,0,1899,1518",
                    "photographer_name": "Tapanilan kirjasto",
                    "alt_text": "Johannes Remyn Ukrainan historia -teos hyllyn päällä",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138578/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-03-15T10:55:25.325899Z",
            "last_modified_time": "2024-04-25T14:13:17.504742Z",
            "date_published": null,
            "start_time": "2024-04-23T15:30:00Z",
            "end_time": "2024-05-28T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": "Tapanilan kirjasto"
            },
            "short_description": {
                "fi": "Tapanilan kirjastossa perehdytään historiaa käsittelevään kirjallisuuteen."
            },
            "name": {
                "fi": "Historian lukupiiri"
            },
            "description": {
                "fi": "<p>Järjestetään Tapanilan kirjastossa tiistaina 28.5.2024 klo 18:30-20​​</p><p>Kevään viimeisessä lukupiirissä käsitellään Johannes Remyn Ukrainan historiaa.&nbsp;</p><p>Tervetuloa mukaan keskustelemaan!​</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": "Tapanilan kirjasto"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghedqe2qm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghrlgjsfq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghedqe2qm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [],
            "images": [
                {
                    "id": 138578,
                    "license": "event_only",
                    "created_time": "2024-04-25T14:08:30.779023Z",
                    "last_modified_time": "2024-04-25T14:09:50.188291Z",
                    "name": "Johannes Remy: Ukrainan historia käsiteltävänä lukupiirin seuraavalla kerralla.",
                    "url": "http://api.hel.fi/linkedevents/media/images/DSC_1597_9aZuSnM.JPG",
                    "cropping": "381,0,1899,1518",
                    "photographer_name": "Tapanilan kirjasto",
                    "alt_text": "Johannes Remyn Ukrainan historia -teos hyllyn päällä",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138578/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-04-25T14:11:52.506589Z",
            "last_modified_time": "2024-04-25T14:13:16.570395Z",
            "date_published": null,
            "start_time": "2024-05-28T15:30:00Z",
            "end_time": "2024-05-28T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": "Tapanilan kirjasto"
            },
            "short_description": {
                "fi": "Tapanilan kirjastossa perehdytään historiaa käsittelevään kirjallisuuteen."
            },
            "name": {
                "fi": "Historian lukupiiri"
            },
            "description": {
                "fi": "<p>Järjestetään Tapanilan kirjastossa tiistaina 28.5.2024 klo 18:30-20​​</p><p>Kevään viimeisessä lukupiirissä käsitellään Johannes Remyn Ukrainan historiaa.&nbsp;</p><p>Tervetuloa mukaan keskustelemaan!​</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": "Tapanilan kirjasto"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghrlgjsfq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63477",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138579,
                    "license": "event_only",
                    "created_time": "2024-04-25T14:12:59.720160Z",
                    "last_modified_time": "2024-04-25T14:12:59.720193Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744895.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138579/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-25T14:12:59.695066Z",
            "last_modified_time": "2024-04-25T14:12:59.776094Z",
            "date_published": null,
            "start_time": "2024-06-12T07:00:00Z",
            "end_time": "2024-06-12T19: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,
            "location_extra_info": null,
            "short_description": {
                "fi": "Helsinki-päivä Malmilla kutsuu sinut unohtumattomiin synttärikarkeloihin Malmitalon vehreällä takapihalle. Tunnelmaa värittävät saippuakuplat, taide ja mitä siisteimmät keikat: Stig, Mimmit, Finlanders ja touko.",
                "sv": "Helsingforsdagen i Malm bjuder in till en oförglömlig födelsedagsfest på Malms kulturhus grönskande bakgård. Stämningen höjs av såpbubblor, konst och otroligt snygga gig: Stig, Mimmit, Finlanders och touko.",
                "en": "Helsinki Day at Malmi is an invite to join an unforgettable birthday party at Malmitalo’s green back yard. Join us among colourful soap bubbles, art and the coolest gigs: Stig, Mimmit, Finlanders, and touko."
            },
            "name": {
                "fi": "Helsinki-päivä: Stig, Mimmit ja ihanaa kesätapahtumaa – Malmin tapahtumakesä",
                "sv": "Helsingforsdagen i Malm: Stig, Mimmit och annat härligt sommarprogram – Malms evenemangssommar",
                "en": "Helsinki Day: Stig, Mimmit, and so much more – Malmi Summer of Events"
            },
            "description": {
                "fi": "<p>Helsinki-päivä Malmilla kutsuu sinut unohtumattomiin synttärikarkeloihin Malmitalon vehreällä takapihalle. Tunnelmaa värittävät saippuakuplat, taide ja mitä siisteimmät keikat: Stig, Mimmit, Finlanders ja touko.</p><p>Luvassa myös Malmimarkkinat, taidetyöpajoja, yhteistä liikuntaa, Unelmien lavatanssit ja paljon muuta. Ohjelma on maksutonta!</p><p>Rakkaan kaupunkimme syntymäpäivä alkaa taidetyöpajojen merkeissä. Päivemmällä Unelmien lavatanssit kutsuvat sinut tanssimaan iskelmäbändien aatelistoon kuluuvan Finlandersin tahtiin. Puistossa voit samanaikaisesti tutustua kierrätykseen, maalata naruin, saada tanssiopetusta ja kokeilla useita eri liikuntamuotoja, hetkittäin myös barokkimusiikin tahtiin.  <br> <br>Päivemmällä pääset tutustumaan paikallisiin toimijoihin ja osallistumaan erilaisiin aktiviteetteihin Malmimarkkinoilla. Ja vaikka sataisi, koko perheen suosikkiyhtye Mimmit tuo auringon mukanaan. Päivän huipentaa suosikkiartisti Stigin keikka, jonka aikana juhlatunnelma kuullaan, tunnetaan ja koetaan täysin rinnoin.  <br> <br>Eikä siinä vielä kaikki! Illallinen Malmin taivaan alla kutsuu alueen asukkaat syömään yhteisen ruokapöydän ääreen. Illallispöytä katetaan sadalle paikkansa ennakkoon varanneelle, mutta kaikki ovat tervetulleita liittymään mukaan viltein ja omilla piknikeillään. Illallisen ohella tunnelmaa nostattaa pop/jazz-yhtye touko, jonka soinnut huikkaavat huikealle päivälle kiitoksensa. Tule mukaan kruunaamaan upea kesäpäivä kanssamme!  <br> <br><b>Malmin tapahtumakesän Helsinki-päivän ohjelma 12.6.2024:</b><br> <br><b>klo 11–16</b> <br>Taiteen Sulattamo: värityöpaja</p><p><b>klo 12–15</b> <br>Reflektor: Muksut Mäppää -piirrustustyöpaja <br> <br><b>klo 12–15</b> <br>Unelmien Lavatanssit: Finlanders <br>Tanssiopetusta, asahi-terveysliikuntaa, tasapainorata, sauvakävelyä. Samalla pääset mittauttamaan puristus- ja nipistysvoimasi sekä kehonkoostumuksesi. <br> <br><b>klo 13–15</b> <br>Okko-oravan kierrätyskarkelot  <br> <br><b>klo 14–17</b> <br>Kupla Kopla<br> <br><b>klo 15–18</b> <br>Narumaalausta ja vedenalaisia ihmeitä -työpaja <br> <br><b>klo 15–18</b> <br>Malmimarkkinat <br> <br><b>klo 15–16</b> <br>Barokkimusiikkia: FiBOn aluemuusikko esiintyy <br> <br><b>klo 16–17</b> <br>Mimmit <br> <br><b>klo 18–19</b> <br>Stig <br> <br><b>klo 20–22</b> <br>touko-yhtye <br>Illallinen Malmin taivaan alla</p>",
                "sv": "<p>Helsingforsdagen i Malm bjuder in till en oförglömlig födelsedagsfest på Malms kulturhus grönskande bakgård. Stämningen höjs av såpbubblor, konst och otroligt snygga gig: Stig, Mimmit, Finlanders och touko.</p><p>Annat program omfattar Malms marknad, konstverkstäder, gemensam motion, Drömmarnas logdans och mycket annat. Fritt inträde!</p><p>Vår kära stads födelsedag börjar i Malm med konstverkstäder. Drömmarnas logdans bjuder dig på en dans i toner av Finlanders, som hör till dansbandens adel. I parken kan du samtidigt bekanta dig med återvinning, måla med snöre, få dansundervisning och pröva på flera olika motionsformer, stundvis även till barockmusik.  <br> <br>Dessutom får du bekanta dig med lokala aktörer och delta i olika aktiviteter på marknaden i Malm. Och även om det skulle regna, har hela familjens favoritband Mimmit solen med sig. Dagen kulminerar i favoritartist Stigs gig.<br> <br>Och det är inte allt! Middag under Malms himmel bjuder invånarna i området in att äta vid ett gemensamt middagsbord. Middagsbordet dukas åt ett hundra personer som har bokat sin plats på förhand, men alla är välkomna att delta med sina egna picknick på egna filtar. Under middagen höjs stämningen av pop/jazzbandet touko, vars toner avslutar den fantastiska dagen. Kom med att kröna den fina sommardagen med oss!  <br> <br><b>Programmet för Helsingforsdagen i Malms evenemangssommar:</b><br> <br><b>kl. 11–16</b> <br>Taiteen Sulattamo: färgverkstad <br><b>kl. 12–15</b> <br>Reflektor: ritningsverkstad Muksut Mäppää <br><b>kl. 12–15</b> <br>Drömmarnas Logdans: Finlanders <br>Dansundervisning, asahi-hälsomotion, balansbana, stavgång. Samtidigt kan du låta mäta din tryckkraft och nypkraft samt din kroppssammansättning. <br><b>kl. 13–15</b> <br>Okko-ekorrens återvinningsfest  <br><b>kl. 14–17</b> <br>Kupla Kopla<br><b>kl. 15–18</b> <br>Verkstaden Snörmålning och undervattensunder <br><b>kl. 15–18</b> <br>Malms marknad <br><b>kl. 15–16</b> <br>Barockmusik: FiBO:s regionala musiker presenterar sig <br><b>kl. 16–17</b> <br>Mimmit <br><b>kl. 18–19</b> <br>Stig <br><b>kl. 20–22</b> <br>bandet touko <br>Middag under Malms himmel</p>",
                "en": "<p>Helsinki Day at Malmi is an invite to join an unforgettable birthday party at Malmitalo’s green back yard. Join us among colourful soap bubbles, art and the coolest gigs: Stig, Mimmit, Finlanders, and touko.</p><p>Also visit the Malmi Market, art workshops, physical activities, barn dances and so much more. Admission is free!  <br> <br>At Malmi, our beautiful city’s birthday begins with art workshops. Our barn dance event invites everyone to dance to the music of dance band royalty, the Finlanders. On the park side, you can learn about recycling, tie-dying, receive dance instruction and try out various forms of physical activity – at times, to the tunes of baroque music.  <br> <br>Get to know local businesses and participate in various activities at the Malmi Market. In the case of rain, don’t worry: everyone’s favourite band, Mimmit, will lighten up the day. The highlight of the day is ever-popular artist Stig’s concert.<br> <br>And that’s not all! Dinner under the Malmi sky invites local residents to eat at the same table. The table will be set for one hundred people with reservations, but everyone is welcome to join us on their own picnics. To liven up the dinner, we have invited pop/jazz band touko, whose music will certainly wrap the day up in a fantastic bow. Come celebrate this wonderful summer day with us!  <br> <br><b>Malmi Summer of Events, Helsinki Day programme:</b><br> <br><b>11 am to 4 pm </b><br>Taiteen Sulattamo: colours workshop <br><b>12 noon to 3 pm</b> <br>Reflektor: Muksut Mäppää drawing workshop for children <br><b>12 noon to 3 pm</b> <br>Barn dance: Finlanders <br>Dance lessons, Asahi Nordic Health Exercise, balance course, Nordic walking. Measure your grip and pinch strength and your body composition while you’re at it! <br><b>13 pm to 3 pm </b><br>Recycling with Okko the Squirrel  <br><b>2 pm to 5 pm</b> <br>Kupla Kopla<br><b>3 pm to 6 pm</b> <br>Workshop: Tie-dying and undersea wonders <br><b>3 pm to 6 pm</b> <br>Malmi Market <br><b>3 pm to 4 pm </b><br>Baroque music: performance by local Finnish Baroque Orchestra musician <br><b>4 pm to 5 pm</b> <br>Mimmit <br><b>6 pm to 7 pm</b> <br>Stig <br><b>8 pm to 10 pm</b> <br>touko <br>Dinner under the Malmi sky</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2653C505ECDF2BE69A15D8E79FA898A3/Helsinki-paiva_Stig_Mimmit_ja_ihanaa_kesatapahtumaa_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2653C505ECDF2BE69A15D8E79FA898A3/Helsingforsdagen_i_Malm_Stig_Mimmit_och_annat_harligt_sommarprogram",
                "en": "http://www.malmitalo.fi/en/events/event/2653C505ECDF2BE69A15D8E79FA898A3/Helsinki_Day_Stig_Mimmit_and_so_much_more"
            },
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63477/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63476",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138571,
                    "license": "event_only",
                    "created_time": "2024-04-25T13:13:02.889080Z",
                    "last_modified_time": "2024-04-25T13:13:02.889096Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744878.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138571/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-25T13:13:02.861245Z",
            "last_modified_time": "2024-04-25T13:13:02.962014Z",
            "date_published": null,
            "start_time": "2024-06-06",
            "end_time": "2024-08-24",
            "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,
            "location_extra_info": null,
            "short_description": {
                "fi": "Kaunis Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun Malmin tapahtumakesä täyttää puiston konserteilla, sirkuksella, työpajoilla, puistojumpalla, kaupunkitansseilla, kirpputoreilla ja piknikeillä."
            },
            "name": {
                "fi": "Malmin tapahtumakesä 2024"
            },
            "description": {
                "fi": "<p>Kaunis Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun Malmin tapahtumakesä täyttää puiston konserteilla, sirkuksella, työpajoilla, puistojumpalla, kaupunkitansseilla, kirpputoreilla ja piknikeillä.</p><p>Helsinki-päivänä 12.6 kutsumme kaupunkilaiset syömään yhteisen ruokapöydän ääreen ja järjestämme illallisen Malmin taivaan alla. 15.8. Taiteiden yö täyttää puiston menolla ja meiningillä. Elokuun lopussa juhlimme myös 30 vuotta täyttävää Malmitaloa, kun juhlaviikonloppu pe-la 23.-24.8 tuo puiston täyteen karnevaalitunnelmaa.</p><p>Malmin tapahtumakesä on ohjelmakokonaisuus, joka tarjoaa sekä alueen asukkaille että muille kaupunkilaisille ja kävijöille helposti saavutettavaa, laadukasta ja monipuolista tapahtumaa ja tekemistä kesäkauden ajan. Ohjelmaa järjestetään 6.–15.6.2024 ja 15.–24.8.2024.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C030E0E33553D0D03FF27C36E9BBF64B/Malmin_tapahtumakesa_2024"
            },
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63476/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63449",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmin-mieslaulajat-malmitalo-18615194/"
                    },
                    "price": {
                        "fi": "17,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138559,
                    "license": "event_only",
                    "created_time": "2024-04-25T11:12:57.044792Z",
                    "last_modified_time": "2024-04-25T11:12:57.044810Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749941.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138559/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-25T11:12:57.020485Z",
            "last_modified_time": "2024-04-25T11:12:57.086859Z",
            "date_published": null,
            "start_time": "2024-05-28T16: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,
            "location_extra_info": null,
            "short_description": {
                "fi": "Malmin Mieslaulajat esittää viihteellisiä kuorolauluja johtajanaan Marjasisko Varha. Säestys Kaisu Rauhamaa."
            },
            "name": {
                "fi": "Malmin Mieslaulajat – Elämän kevät"
            },
            "description": {
                "fi": "<p>Malmin Mieslaulajat esittää viihteellisiä kuorolauluja johtajanaan Marjasisko Varha. Säestys Kaisu Rauhamaa.</p><p>Kesto noin 1 tunti 40min, sisältäen 20min väliajan.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6138CE8B1B6AAC3C2605343CD9A35A0E/Malmin_Mieslaulajat"
            },
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63449/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghrjihe6e",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8192/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5268/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9102/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [],
            "images": [
                {
                    "id": 138552,
                    "license": "cc_by",
                    "created_time": "2024-04-25T09:34:01.683915Z",
                    "last_modified_time": "2024-04-25T09:40:39.379771Z",
                    "name": "mullankumous_suomi_1600px.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/mullankumous_suomi_1600px.jpg",
                    "cropping": "224,0,1124,900",
                    "photographer_name": "",
                    "alt_text": "Mullankumous kuvituskuvat, matoja mullassa, tekstit Biojätteestä mutlaa ja biokaasua sekä Kiitos kun lajittelet!",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138552/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-04-25T09:40:39.802486Z",
            "last_modified_time": "2024-04-25T09:43:20.738930Z",
            "date_published": null,
            "start_time": "2024-05-04T08:00:00Z",
            "end_time": "2024-05-04T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Mullankumous-infopöytämme saapuu Malmin kirjastoon 4.5. Ympäristöneuvoja vastaa lajittelukysymyksiisi avauspäivänä klo 11-14."
            },
            "name": {
                "fi": "Kysy lajittelusta - ympäristöneuvoja Malmin kirjastossa 4.5."
            },
            "description": {
                "fi": "<p>&nbsp;</p><p><strong>Mullankumous-infopöytämme saapuu Malmin kirjastoon 4.5.&nbsp;</strong></p><p><strong>Ympäristöneuvoja vastaa lajittelukysymyksiisi avauspäivänä klo 11-14.</strong></p><p>Miksi ja miten biojäte pitää pussittaa? Käykö pussinsulkija metallin keräykseen? Pitääkö roskat oikeasti pestä?</p><p><strong>Tule hakemaan vastauksia lajittelupulmiisi Malmin kirjastossa lauantaina 4.5.&nbsp;</strong></p><p><strong>Ympäristöneuvoja on tavattavissa klo 11-14 Mullankumous-infopisteellämme.</strong></p><p>Infopisteeltä voit napata mukaasi 4.-24.5.<br>- biojätepusseja<br>- lajitteluohjeita<br>- Ei mainoksia kiitos -tarroja</p><p><br>Ympäristöneuvojaa pääset jututtamaan muissakin Helsingin kirjastoissa kevään aikana. Katso ajat ja paikat HSY:n <a href=\"https://www.hsy.fi/ymparistotieto/tiedotteet/hsyn-biojateinfot-kiertavat-helsingin-kirjastoissa/\"><strong>verkkosivulta</strong></a>.</p><p>Tervetuloa!&nbsp;</p><p><strong>Mullankumous infopiste Malmin kirjastossa 4.5.–24.5.</strong></p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghrjihe6e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghrivxptm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [],
            "images": [
                {
                    "id": 138546,
                    "license": "event_only",
                    "created_time": "2024-04-25T08:15:47.049990Z",
                    "last_modified_time": "2024-04-25T08:19:52.354540Z",
                    "name": "Anna-Riikka Carlson, kuva Sabrina Bqain / WSOY",
                    "url": "http://api.hel.fi/linkedevents/media/images/Carlson_Anna-Riikka_WSOY__Sabrina_Bqain.jpg",
                    "cropping": "382,0,1898,1517",
                    "photographer_name": "Sabrina Bqain / WSOY",
                    "alt_text": "Anna-Riikka Carlson istuu kahvilassa kirjapinon kanssa.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138546/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-25T08:19:52.871979Z",
            "last_modified_time": "2024-04-25T08:21:47.196742Z",
            "date_published": null,
            "start_time": "2024-05-29T15:00:00Z",
            "end_time": "2024-05-29T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Kevään viimeisessä kirjailijaillassa Tapanilan kirjastossa haastateltavana Anna-Riikka Carlson uutuuskirjasta Rakas Eeva Kilpi."
            },
            "name": {
                "fi": "Kirjailijailta: Anna-Riikka Carlson ja Rakas Eeva Kilpi"
            },
            "description": {
                "fi": "<p>Kevään viimeisessä kirjailijaillassa Tapanilan kirjastossa on vieraana Anna-Riikka Carlson. Aiheena on Carlsonin Eeva Kilven elämästä kertova <a href=\"https://www.wsoy.fi/kirja/rakas-eeva-kilpi.-nama-juhlat-jatkuvat-viela/9789510503546\">uutuuskirja Rakas Eeva Kilpi. Nämä juhlat jatkuvat vielä</a>. Kirjailijaa haastattelee kirjallisuustoimittaja Seppo Puttonen.<br><br>Tervetuloa kuuntelemaan!<br><br><i>kuva © Sabrina Bqain / WSOY</i></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghrivxptm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghd2difmi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1423937228333772/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [],
            "images": [
                {
                    "id": 107902,
                    "license": "event_only",
                    "created_time": "2024-03-14T12:59:34.563321Z",
                    "last_modified_time": "2024-03-14T13:00:46.959358Z",
                    "name": "419740781_898470615615221_3589212747345027303_n.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/419740781_898470615615221_3589212747345027303_n.jpg",
                    "cropping": "342,0,1707,1366",
                    "photographer_name": "Värvöttäjä",
                    "alt_text": "Artistikuva artisti Värvöttäjästä.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107902/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-14T13:00:47.337797Z",
            "last_modified_time": "2024-04-24T14:11:55.397277Z",
            "date_published": null,
            "start_time": "2024-05-22T15:30:00Z",
            "end_time": "2024-05-22T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Värvöttäjä vierailee Tapanilan kirjastossa esittämässä tuotantoaan."
            },
            "name": {
                "fi": "Live: Värvöttäjä"
            },
            "description": {
                "fi": "<p>Värvöttäjä on helsinkiläinen ambient-projekti, jossa ympäristöstä kerättyjä ääniä kootaan yhteen uusiksi kokonaisuuksiksi.</p><p>Kuuntele Värvöttäjän musiikkia Soundcloud -tililtä: <a href=\"https://soundcloud.com/varvottaja?fbclid=IwAR0Y64Z81a2lH_w9Q8n-EtSfcUzDfrGPenX1ajuycmdvakWiUjD81rIsndA\">https://soundcloud.com/varvottaja</a></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": "Tapanilan kirjasto"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghd2difmi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghd2caxti",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kultus:5/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/273067835789727",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [],
            "images": [
                {
                    "id": 107897,
                    "license": "event_only",
                    "created_time": "2024-03-14T12:43:20.796723Z",
                    "last_modified_time": "2024-03-14T12:55:23.937337Z",
                    "name": "419389192_898471802281769_8956549635115976995_n.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/419389192_898471802281769_8956549635115976995_n.jpg",
                    "cropping": "274,0,1363,1088",
                    "photographer_name": "Sonja Peuhkurinen",
                    "alt_text": "Lauri Peltonen",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107897/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T12:55:24.322971Z",
            "last_modified_time": "2024-04-24T14:05:09.882510Z",
            "date_published": null,
            "start_time": "2024-04-25T15:30:00Z",
            "end_time": "2024-04-25T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Lauri Peltonen esittää Tapanilan kirjastossa akustisella kitaralla ja efektipedaaleilla muun muassa omia sävellyksiänsä, klassista ja jazzia."
            },
            "name": {
                "fi": "Live: Lauri Peltonen"
            },
            "description": {
                "fi": "<p>Lauri Peltonen esittää Tapanilan kirjastossa akustisella kitaralla ja efektipedaaleilla muun muassa omia sävellyksiänsä, klassista ja jazzia.</p><p>Peltonen käyttää kitaransa virityksessä niin kutsuttua \"uutta standardiviritystä\", New standard tuningia (NST). Peltonen avaa konsertin yhteydessä viritysmallin taustoja.</p><p>Lauri Peltosen musiikkiin voit perehtyä esimerkiksi<br>Bandcampissa: <a href=\"https://offworldmoments.bandcamp.com/?fbclid=IwAR38C-KCal3KKlFrcN-0C-dRQv03qL5JOfwRdp6bXDukUU_CmkVT5ihbu98\">https://offworldmoments.bandcamp.com/</a><br>YouTubessa: <a href=\"https://www.youtube.com/watch?v=VlzNGcUeMSA&amp;fbclid=IwAR07t6wBTy4CKWH7K4Dv9HB7VIfZUd0M1K1yI75yDL-1Yvrf67k3vX3YbhY\">https://www.youtube.com/watch?v=VlzNGcUeMSA</a></p><p>Kuva: Sonja Peuhkurinen</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Tapanilan_kirjasto/Tapahtumat/LIVE_Lauri_Peltonen(279128)"
            },
            "provider": {
                "fi": "Tapanilan kirjasto"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghd2caxti/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghb4jz6de",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71760/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021800",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzfji/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzhwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzjka/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzmpm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzoli/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzp6e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzrpm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzute/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzwii/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzxz4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 106666,
                    "license": "cc_by",
                    "created_time": "2024-03-08T12:56:57.773942Z",
                    "last_modified_time": "2024-03-08T13:01:04.389939Z",
                    "name": "Väriä ja voimaa.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/V%C3%A4ri%C3%A4_ja_voimaa.jpg",
                    "cropping": "266,0,1333,1066",
                    "photographer_name": "PIXABAY",
                    "alt_text": "Väriä ja voimaa",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021800",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106666/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-08T13:01:12.102125Z",
            "last_modified_time": "2024-04-24T08:25:57.483476Z",
            "date_published": null,
            "start_time": "2024-03-11T11:00:00Z",
            "end_time": "2024-05-27T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Väriä ja voimaa - maalausta vahvistamaan sisäisiä voimavaroja"
            },
            "name": {
                "fi": "Väriä ja voimaa - maalausta ja sisäiset voimavarat"
            },
            "description": {
                "fi": "<p>Väriä ja voimaa - maalausta vahvistamaan sisäisiä voimavaroja. Tervetuloa mukaan!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jz6de/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghb4jzxz4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71760/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jz6de/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021800",
            "sub_events": [],
            "images": [
                {
                    "id": 106666,
                    "license": "cc_by",
                    "created_time": "2024-03-08T12:56:57.773942Z",
                    "last_modified_time": "2024-03-08T13:01:04.389939Z",
                    "name": "Väriä ja voimaa.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/V%C3%A4ri%C3%A4_ja_voimaa.jpg",
                    "cropping": "266,0,1333,1066",
                    "photographer_name": "PIXABAY",
                    "alt_text": "Väriä ja voimaa",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021800",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106666/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-08T13:01:10.490203Z",
            "last_modified_time": "2024-04-24T08:25:56.328254Z",
            "date_published": null,
            "start_time": "2024-05-27T10:00:00Z",
            "end_time": "2024-05-27T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Väriä ja voimaa - maalausta vahvistamaan sisäisiä voimavaroja"
            },
            "name": {
                "fi": "Väriä ja voimaa - maalausta ja sisäiset voimavarat"
            },
            "description": {
                "fi": "<p>Väriä ja voimaa - maalausta vahvistamaan sisäisiä voimavaroja. Tervetuloa mukaan!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzxz4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghb4jzwii",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71760/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jz6de/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021800",
            "sub_events": [],
            "images": [
                {
                    "id": 106666,
                    "license": "cc_by",
                    "created_time": "2024-03-08T12:56:57.773942Z",
                    "last_modified_time": "2024-03-08T13:01:04.389939Z",
                    "name": "Väriä ja voimaa.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/V%C3%A4ri%C3%A4_ja_voimaa.jpg",
                    "cropping": "266,0,1333,1066",
                    "photographer_name": "PIXABAY",
                    "alt_text": "Väriä ja voimaa",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021800",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106666/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-08T13:01:10.093201Z",
            "last_modified_time": "2024-04-24T08:25:55.699995Z",
            "date_published": null,
            "start_time": "2024-05-20T10:00:00Z",
            "end_time": "2024-05-20T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Väriä ja voimaa - maalausta vahvistamaan sisäisiä voimavaroja"
            },
            "name": {
                "fi": "Väriä ja voimaa - maalausta ja sisäiset voimavarat"
            },
            "description": {
                "fi": "<p>Väriä ja voimaa - maalausta vahvistamaan sisäisiä voimavaroja. Tervetuloa mukaan!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzwii/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghb4jzute",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71760/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jz6de/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021800",
            "sub_events": [],
            "images": [
                {
                    "id": 106666,
                    "license": "cc_by",
                    "created_time": "2024-03-08T12:56:57.773942Z",
                    "last_modified_time": "2024-03-08T13:01:04.389939Z",
                    "name": "Väriä ja voimaa.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/V%C3%A4ri%C3%A4_ja_voimaa.jpg",
                    "cropping": "266,0,1333,1066",
                    "photographer_name": "PIXABAY",
                    "alt_text": "Väriä ja voimaa",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021800",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106666/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-08T13:01:09.669024Z",
            "last_modified_time": "2024-04-24T08:25:55.043127Z",
            "date_published": null,
            "start_time": "2024-05-13T10:00:00Z",
            "end_time": "2024-05-13T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Väriä ja voimaa - maalausta vahvistamaan sisäisiä voimavaroja"
            },
            "name": {
                "fi": "Väriä ja voimaa - maalausta ja sisäiset voimavarat"
            },
            "description": {
                "fi": "<p>Väriä ja voimaa - maalausta vahvistamaan sisäisiä voimavaroja. Tervetuloa mukaan!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzute/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghb4jzrpm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71760/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jz6de/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021800",
            "sub_events": [],
            "images": [
                {
                    "id": 106666,
                    "license": "cc_by",
                    "created_time": "2024-03-08T12:56:57.773942Z",
                    "last_modified_time": "2024-03-08T13:01:04.389939Z",
                    "name": "Väriä ja voimaa.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/V%C3%A4ri%C3%A4_ja_voimaa.jpg",
                    "cropping": "266,0,1333,1066",
                    "photographer_name": "PIXABAY",
                    "alt_text": "Väriä ja voimaa",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021800",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106666/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-08T13:01:08.871552Z",
            "last_modified_time": "2024-04-24T08:25:54.231684Z",
            "date_published": null,
            "start_time": "2024-04-29T10:00:00Z",
            "end_time": "2024-04-29T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Väriä ja voimaa - maalausta vahvistamaan sisäisiä voimavaroja"
            },
            "name": {
                "fi": "Väriä ja voimaa - maalausta ja sisäiset voimavarat"
            },
            "description": {
                "fi": "<p>Väriä ja voimaa - maalausta vahvistamaan sisäisiä voimavaroja. Tervetuloa mukaan!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzrpm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghdzzlczy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71760/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021800",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdzzkija/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdzzkj4i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdzzkloq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdzzknb4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdzzkote/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdzzkqey/?format=api"
                }
            ],
            "images": [
                {
                    "id": 107869,
                    "license": "cc_by",
                    "created_time": "2024-03-14T12:13:56.866261Z",
                    "last_modified_time": "2024-03-14T12:17:21.895857Z",
                    "name": "Kahvituoio.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kahvituoio.jpg",
                    "cropping": "318,0,1597,1279",
                    "photographer_name": "PIXABAY",
                    "alt_text": "Kahvituokio",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021800",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107869/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-14T12:17:29.819448Z",
            "last_modified_time": "2024-04-24T05:27:40.990667Z",
            "date_published": null,
            "start_time": "2024-03-15T11:00:00Z",
            "end_time": "2024-04-26T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Perjantain kahvihetki"
            },
            "name": {
                "fi": "Perjantain kahvihetki"
            },
            "description": {
                "fi": "<p>Tule viettämään rentoa perjantai-iltapäivää mukavassa seurassa! Vapaata jutustelua osallistujia kiinnostavista aiheista. Voit osallistua myös kuunnellen. Kahvihetkessä pääset tutustumaan uusiin ihmisiin.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdzzlczy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghdzzkqey",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71760/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdzzlczy/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021800",
            "sub_events": [],
            "images": [
                {
                    "id": 107869,
                    "license": "cc_by",
                    "created_time": "2024-03-14T12:13:56.866261Z",
                    "last_modified_time": "2024-03-14T12:17:21.895857Z",
                    "name": "Kahvituoio.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kahvituoio.jpg",
                    "cropping": "318,0,1597,1279",
                    "photographer_name": "PIXABAY",
                    "alt_text": "Kahvituokio",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021800",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107869/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-14T12:17:25.042184Z",
            "last_modified_time": "2024-04-24T05:27:39.482962Z",
            "date_published": null,
            "start_time": "2024-04-26T10:00:00Z",
            "end_time": "2024-04-26T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Perjantain kahvihetki"
            },
            "name": {
                "fi": "Perjantain kahvihetki"
            },
            "description": {
                "fi": "<p>Tule viettämään rentoa perjantai-iltapäivää mukavassa seurassa! Vapaata jutustelua osallistujia kiinnostavista aiheista. Voit osallistua myös kuunnellen. Kahvihetkessä pääset tutustumaan uusiin ihmisiin.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdzzkqey/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}