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/?end=today&format=api&page=48&start=now
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 1179,
        "next": "http://api.hel.fi/linkedevents/v1/event/?end=today&format=api&page=49&start=now",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?end=today&format=api&page=47&start=now"
    },
    "data": [
        {
            "id": "helsinki:aggo3xw6m4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:47695/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13035/?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": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvay4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvddu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvef4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvfhi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvgh4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvhji/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvija/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvjli/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvkla/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvl2q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvngq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvopi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvpwi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvqyu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvrzu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvs2y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvt4m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvu5e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvwly/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvxym/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xvzke/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xv2om/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xv3ri/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xv4q4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xv5ra/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xv6su/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xv7u4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwa7u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwcoy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwd34/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwe5i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwgby/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwhdu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwiey/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwje4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwlzq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwnxi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwo7q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwqau/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwrde/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xwsiy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 93591,
                    "license": "event_only",
                    "created_time": "2023-06-21T08:01:56.972281Z",
                    "last_modified_time": "2023-06-21T08:03:55.499753Z",
                    "name": "Kevyestikeskiviikkoon.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kevyestikeskiviikkoon.jpg",
                    "cropping": "100,0,500,400",
                    "photographer_name": "Tuntematon",
                    "alt_text": "Kuntoiluvälineet",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/93591/?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:p2433/?format=api"
                }
            ],
            "created_time": "2024-01-09T10:57:35.352534Z",
            "last_modified_time": "2024-01-09T12:22:00.106775Z",
            "date_published": null,
            "start_time": "2024-01-10T10:15:00Z",
            "end_time": "2024-05-30T07:45: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,
            "description": {
                "fi": "<p>Tuolijumppa sopii pyörätuolia tai muita apuvälineitä käyttäville.&nbsp;</p>"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Juhlasali"
            },
            "name": {
                "fi": "Tuolijumppa"
            },
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Istuen tehtävää rauhallista harjoittelua mahdollisesti eri välineitä hyödyntäen."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3xw6m4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggo34ox24",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:47695/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13035/?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": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34n2ca/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34n4f4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34n5he/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34n6h4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34n7ka/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34oame/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34obma/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34octu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34odwq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34oe2i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34of4q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34og4u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34oh5m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34oi7y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34okba/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34olbu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34omhu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34onnm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34oony/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34opqe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34oqte/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-01-09T11:18:18.851227Z",
            "last_modified_time": "2024-01-09T11:18:18.851250Z",
            "date_published": null,
            "start_time": "2024-01-11T06:00:00Z",
            "end_time": "2024-05-30T06:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tunti sopii hyvin uusille kuntosaliharjoittelijoille. Kuntosalilaiteopastukseen pitää varata paikka. Paikka varataan puhelimitse p. 09 310 73067 tai kuntosalin ilmoitustaulun listasta.</p>"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kuntosali"
            },
            "name": {
                "fi": "Kuntosalilaiteopastus"
            },
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Sisältää laiteopastuksen, jonka jälkeen pääsee itse kokeilemaan laitteita ohjatusti"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo34ox24/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggo3wc5gu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:202/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?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"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/leikkipuisto_kiiltotahti/",
                    "language": "fi"
                },
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/profile.php?id=100090304103215",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u42030010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wbtwe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wbvn4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wbxbe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wbyy4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wb2n4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wb4bu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wb54u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wb7u4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wcbhq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wcc4i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wcese/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wcghi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wch3e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wcjpi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wcldy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wcm74/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wcouy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wcqk4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wcr64/?format=api"
                }
            ],
            "images": [
                {
                    "id": 96125,
                    "license": "cc_by",
                    "created_time": "2023-09-06T07:15:16.439176Z",
                    "last_modified_time": "2023-09-06T07:16:48.217489Z",
                    "name": "linked taiteilu.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/linked_taiteilu.jpg",
                    "cropping": "167,0,832,665",
                    "photographer_name": "",
                    "alt_text": "Taiteilu",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201017",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/96125/?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:p13050/?format=api"
                }
            ],
            "created_time": "2024-01-09T10:50:29.062736Z",
            "last_modified_time": "2024-01-09T10:50:29.062763Z",
            "date_published": null,
            "start_time": "2024-01-16T08:00:00Z",
            "end_time": "2024-05-28T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Ohjattu taidehetki vaihtuvin teemoin, &nbsp;yhdessä oman aikuisen kanssa. Maalataan, muovaillaan, leikataan, liimataan.</p>"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Pienten tiistai"
            },
            "info_url": {
                "fi": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-kiiltotahti"
            },
            "short_description": {
                "fi": "Ohjattu taidehetki yhdessä oman aikuisen kanssa."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo3wc5gu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggo2ywplm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:47695/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13035/?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": [],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": ""
                    },
                    "description": {
                        "fi": ""
                    },
                    "price": {
                        "fi": "7€/ kerta"
                    }
                },
                {
                    "is_free": false,
                    "info_url": {
                        "fi": ""
                    },
                    "description": {
                        "fi": ""
                    },
                    "price": {
                        "fi": "7€/ kerta"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yvree/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yvs74/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yvucm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yvvfe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yvwkm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yvxry/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yvy7m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yv2ci/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yv3du/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yv4ke/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yv5mm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yv6n4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2yv7oy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ywapi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ywbxa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ywc7u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ywef4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ywfmq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ywgvi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ywhya/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-01-09T08:42:05.032046Z",
            "last_modified_time": "2024-01-09T08:42:05.032070Z",
            "date_published": null,
            "start_time": "2024-01-16T09:00:00Z",
            "end_time": "2024-05-28T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tunnilla oppii kuntoilun ohessa lavatansseista tuttuja askeleita ilman paria. Tanssix on maksullinen, 7 € /kerta. Tutustumiskerta on ilmainen. Ohjaajana Ulla Pihl.</p>"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Juhlasali"
            },
            "name": {
                "fi": "Tanssix"
            },
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Hauskaa, helppoa ja hikistä harjoittelua, jossa yhdistyy jumppa ja tanssi"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ywplm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggo2spyyu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:202/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/profile.php?id=100090304103215",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/leikkipuisto_kiiltotahti/?hl=fi",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u42030010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2sosui/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2sovia/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2sowz4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2soyou/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2so2gi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2so4ey/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2so5yi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2so7oy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2spbdq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2spczu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2spemy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2spgc4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2sphy4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2spjr4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2spllm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2spnfm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2spo7u/?format=api"
                }
            ],
            "images": [
                {
                    "id": 95568,
                    "license": "cc_by",
                    "created_time": "2023-08-24T07:20:17.987705Z",
                    "last_modified_time": "2023-08-24T07:23:01.663908Z",
                    "name": "baby-1537762_1280.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/baby-1537762_1280.jpg",
                    "cropping": "214,0,1066,851",
                    "photographer_name": "",
                    "alt_text": "Vauvaperheet",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201017",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/95568/?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:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-01-09T08:14:57.240539Z",
            "last_modified_time": "2024-01-09T08:14:57.240566Z",
            "date_published": null,
            "start_time": "2024-01-15T08:00:00Z",
            "end_time": "2024-05-20T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tervetuloa kaikki vauvaperheet ja uutta perheenjäsentä odottavat. Yhdessäoloa ja vertaistukea.</p>"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Vauva-aamu"
            },
            "info_url": {
                "fi": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-kiiltotahti"
            },
            "short_description": {
                "fi": "Tervetuloa kaikki vauvaperheet ja uutta perheenjäsentä odottavat. Yhdessäoloa ja vertaistukea."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2spyyu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggo2rbcr4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:25/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u42030010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2rapty/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2raq5m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2rasg4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ratiy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2rauku/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ravom/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2rawrq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2raxte/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2rayye/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2razzy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ra3ce/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ra4gy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ra5ke/?format=api"
                }
            ],
            "images": [
                {
                    "id": 95607,
                    "license": "cc_by",
                    "created_time": "2023-08-25T06:47:19.442452Z",
                    "last_modified_time": "2023-08-25T06:48:00.440480Z",
                    "name": "20230727_105815[1].jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/20230727_1058151.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "",
                    "alt_text": "leppäkerttu",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201039",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/95607/?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:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-09T08:08:34.711500Z",
            "last_modified_time": "2024-01-09T08:08:34.711519Z",
            "date_published": null,
            "start_time": "2024-01-16T08:00:00Z",
            "end_time": "2024-05-28T07:30: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,
            "description": {
                "fi": "<p>Tänään leikitään! Leikkipuistossa koetaan mielikuvitusleikin riemua vaihtuvilla teemoilla. Tänään leikitään! -toiminnassa lapset ja aikuiset saavat syventyä leikkien mielikuvituksen maailmaan. Perheet rakentavat yhdessä ohjaajien kanssa leikkiin houkuttelevia ympäristöjä: kaupan, sataman, kotileikin,liikennekaupungin, eläinten pesiä ja vaikka mitä. Teemat vaihtuvat vuodenajan ja osallistujien toiveiden mukaan. Lapset löytävät leikkiseuraa ja leikin lomassa vanhemmat voivat tutustua muihin lapsiperheisiin. Lapset ja vanhemmat voivat osallistua toiminnan suunnitteluun ja toteutukseen ohjaajien kanssa.</p>"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Tänään leikitään!"
            },
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Tänään leikitään! Leikkipuistossa koetaan mielikuvitusleikin riemua vaihtuvilla teemoilla."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2rbcr4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggo2oiqgi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:25/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?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": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u42030010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ohh6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ohkim/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ohl4m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ohnpq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ohpga/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ohq7q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ohsvu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ohuki/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ohv7y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ohxuy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ohzjy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2oh26y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2oh4tu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2oh6im/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2oh73u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2oibqy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2oidfq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2oie3i/?format=api"
                }
            ],
            "images": [
                {
                    "id": 95606,
                    "license": "cc_by",
                    "created_time": "2023-08-25T06:37:50.129060Z",
                    "last_modified_time": "2023-08-25T06:39:21.449629Z",
                    "name": "20230809_104238[1].jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/20230809_1042381.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "",
                    "alt_text": "leikkivarjo ja palloja",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201039",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/95606/?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:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-09T07:56:29.120516Z",
            "last_modified_time": "2024-01-09T07:56:29.120537Z",
            "date_published": null,
            "start_time": "2024-01-15T08:00:00Z",
            "end_time": "2024-05-27T07:30: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,
            "description": {
                "fi": "<p>Tervetuloa perheliikuntaan! Leikkipuiston liikuntatuokio on mukaansa tempaava jumppa lapsille ja vanhemmille. Tuokiossa harjoitellaan motorisia perustaitoja liikkumalla eri tavoin sekä käyttämällä apuna erilaisia välineitä esimerkiksi palloja. Koe yhdessä lapsesi kanssa tuokion leikinomaisuus, jossa on iloa, riemua ja liikettä. Liikutaan ja iloitaan yhdessä!&nbsp;</p>"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Perheliikuntaa leikkipuistossa"
            },
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Tervetuloa perheliikuntaan! Leikkipuiston liikuntatuokio on mukaansa tempaava jumppa lapsille ja vanhemmille. "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2oiqgi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggo2nsukm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:25/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u42030010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nryqq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nr2la/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nr3mm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nr4nm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nr5py/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nr7ue/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nsaye/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nscee/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nsdnm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nsese/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nsfvm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nsgxa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nsh3a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nsi5q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nskb4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nslge/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nsmwi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nsn2a/?format=api"
                }
            ],
            "images": [
                {
                    "id": 95608,
                    "license": "cc_by",
                    "created_time": "2023-08-25T06:52:42.211077Z",
                    "last_modified_time": "2023-08-25T06:53:07.046877Z",
                    "name": "20230731_134027[1].jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/20230731_1340271.jpg",
                    "cropping": "380,0,1900,1519",
                    "photographer_name": "",
                    "alt_text": "hiekkalaatikko",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201039",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/95608/?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:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-09T07:53:29.949568Z",
            "last_modified_time": "2024-01-09T07:53:29.949588Z",
            "date_published": null,
            "start_time": "2024-01-10T08:00:00Z",
            "end_time": "2024-05-29T07:30: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,
            "description": {
                "fi": "<p>Seikkaillaan leikkipuisto Piikan pihapiirissä vuoden ajat huomioon ottaen tai heittäydytään sadun maailmaan ja luetaan kirjaa Savipajan vintillä.</p>"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Pihaseikkailu/sadunluku leikkipuistossa"
            },
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Seikkaillaan leikkipuisto Piikan pihapiirissa tai heittäydytään sadun maailmaan lukemalla kirjaa vintillä."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2nsukm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggo2ghyme",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:70/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15937/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3312/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8105/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/profile.php?id=100067836681220",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/leikkipuisto_torpparinmaki/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u42030010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ggsqa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2gguzi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ggwi4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ggxwm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ggzei/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2gg2qu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2gg4au/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2gg5r4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2gg7c4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ghasa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ghcbm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ghdwa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ghfcu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ghgqu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ghh7y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ghj74/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ghl2m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ghnke/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ghoye/?format=api"
                }
            ],
            "images": [
                {
                    "id": 47681,
                    "license": "event_only",
                    "created_time": "2018-10-09T12:22:56.381769Z",
                    "last_modified_time": "2023-08-02T10:28:36.884485Z",
                    "name": "Vauvatreffit",
                    "url": "http://api.hel.fi/linkedevents/media/images/vauvatreffit_pakattu.jpg",
                    "cropping": "103,0,723,620",
                    "photographer_name": "Sanna Kanerva",
                    "alt_text": "vauvakädet",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201003",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/47681/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-09T07:21:25.872425Z",
            "last_modified_time": "2024-01-09T07:21:25.872446Z",
            "date_published": null,
            "start_time": "2024-01-11T08:00:00Z",
            "end_time": "2024-05-30T09: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,
            "description": {
                "fi": "<p>Tervetuloa vauva-aamuun!</p><p>Torstaisin vauvat vanhempineen kokoontuvat Torppiksessa. Tapaamisessa keskustellaan, leikitään ja vietetään aikaa yhdessä. Tapaamiset on kohdennettu alle 1-vuotiaille sekä heidän vanhemmilleen.&nbsp;</p><p>Tule tapaamiseen omien aikataulujen mukaan 10-12</p><p>Vauva voi tarvittaessa nukkua rattaissa/vaunuissa takapihalla, itkuhälytin ja sadesuoja mukaan tarvittaessa.&nbsp;</p><p>Mahdollisuus nauttia omia eväitä ja keitellä teetä/kahvia.</p><p>Tervetuloa mukaan!</p><p>Muutokset mahdollisia. Lisätietoja toiminnasta ohjaajilta tai 0403344256</p>"
            },
            "provider": {
                "fi": "Leikkipuisto Torpparinmäki"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Vauva-aamu Torpparinmäessä"
            },
            "info_url": {
                "fi": "https://www.hel.fi/varhaiskasvatus/fi/leikkipuistotjaperhetalot/torpparinmaki/"
            },
            "short_description": {
                "fi": "Vauvatapaamisiin ovat kaikki alle 1-v vauvat vanhempineen tervetulleita! "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ghyme/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggo2eyzaa",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:70/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8105/?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/profile.php?id=100067836681220",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/leikkipuisto_torpparinmaki/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u42030010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ex5f4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ex7bq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eyabu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eybcq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eycnq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eydwi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eyeze/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eyf3u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eyhaq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eyica/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eyjdy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eykfe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eylhq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eympy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eynvm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eyov4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eypuu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eyque/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eyrwu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 51959,
                    "license": "event_only",
                    "created_time": "2019-01-15T09:02:37.523444Z",
                    "last_modified_time": "2023-08-02T07:59:44.505278Z",
                    "name": "phkuva.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/phkuva_ybPrRwb.jpg",
                    "cropping": "714,0,2550,1836",
                    "photographer_name": "Leikkipuisto Etupelto",
                    "alt_text": "leikkivarjo",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201003",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/51959/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-09T07:15:01.006865Z",
            "last_modified_time": "2024-01-09T07:15:01.006887Z",
            "date_published": null,
            "start_time": "2024-01-16T07:30:00Z",
            "end_time": "2024-05-28T07:30: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,
            "description": {
                "fi": "<p>Leikkipuistoon ovat kaikki tervetulleita!</p><p>Tiistaisin torppiksessa on pienten temppurata, liikuntaleikkejä tai liikuntapisteet alkaen klo 9.30. Toiminnan kesto vaihtelee teeman mukaan. Tule liikkumaan ja tapaamaan muita!</p><p>Tervetuloa! &nbsp;</p><p>Muutokset mahdollisia. Lisätietoja toiminnasta ohjaajilta tai 0403344256</p>"
            },
            "provider": {
                "fi": "Leikkipuisto Torpparinmäki"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Pienten liikuntaa Torpparinmäen leikkipuistossa!"
            },
            "info_url": {
                "fi": "https://www.hel.fi/varhaiskasvatus/fi/leikkipuistotjaperhetalot/torpparinmaki/"
            },
            "short_description": {
                "fi": "Tervetuloa leikkipuistoon liikkumaan yhdessä! "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2eyzaa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggo2ceera",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:70/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4074/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5201/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8105/?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/profile.php?id=100067836681220",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/leikkipuisto_torpparinmaki/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u42030010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdhoy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdjvu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdkzm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdl7y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdnni/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdovm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdp5i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdrcu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdsju/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdtra/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cduxy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdwau/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdxfu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cdy4q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cd2i4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cd3ry/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2cd43q/?format=api"
                }
            ],
            "images": [
                {
                    "id": 73127,
                    "license": "event_only",
                    "created_time": "2021-08-26T06:13:41.605679Z",
                    "last_modified_time": "2021-08-26T06:26:03.385068Z",
                    "name": "torppisaurinkopiha.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/torppisaurinkopiha.jpg",
                    "cropping": "198,0,762,565",
                    "photographer_name": "Sanna Kanerva",
                    "alt_text": "Torpparinmäen leikkipuiston pihaa",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201055",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/73127/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-09T07:03:27.636316Z",
            "last_modified_time": "2024-01-09T07:03:27.636341Z",
            "date_published": null,
            "start_time": "2024-01-22T08:00:00Z",
            "end_time": "2024-05-27T08: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,
            "description": {
                "fi": "<p>Pienten pihapuuhissa lapset ja vanhemmat liikkuvat ja leikkivät puistossa eri teemoilla aina maanantaisin.</p><p>Tervetuloa mukaan!</p><p>Muutokset mahdollisia. Lisätietoja toiminnasta ohjaajilta tai 0403344256</p>"
            },
            "provider": {
                "fi": "Leikkipuisto ja Perhetalo Torpparinmäki"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Pienten pihapuuhat Torppiksessa"
            },
            "info_url": {
                "fi": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-ja-perhetalo-torpparinmaki"
            },
            "short_description": {
                "fi": "Ohjaajat järjestävät tekemistä ja toimintaa pikkulapsiperheille maanantaisin klo 10-11. Vaihtuvat teemat."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2ceera/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggnsivto4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:51869/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13035/?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": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303045",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsiuqh4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsiusp4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsiuuai/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsiuvo4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsiuxbi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsiuyrq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsiu2be/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsiu3vq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsiu5ne/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsiu65a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsivajy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsivbwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsivddm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsiveq4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsivf4y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsivhlm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsivi5y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsivkvy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsivmfu/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-01-05T10:19:39.265166Z",
            "last_modified_time": "2024-01-05T10:19:39.265186Z",
            "date_published": null,
            "start_time": "2024-01-10T07:30:00Z",
            "end_time": "2024-05-29T08:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Helsingin NMKY:n maksuton liikuntahetki ikäihmisille Kannelmäen palvelukeskuksessa. Liikuntahetki alkaa Peräkammarissa noin 45 minuutin kevyellä liikuntaosiolla, jonka jälkeen NMKY tarjoaa kahvit Kapyysissa. Mukaan tarvitset liikunnallisen vaatetuksen sekä juomapullon.</p>"
            },
            "provider": {
                "fi": "Helsingin NMKY"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Peräkammari/Kapyysi"
            },
            "name": {
                "fi": "Ikäihmisten liikuntahetki"
            },
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Ikäihmisten ohjattu liikuntahetki, jonka jälkeen NMKY tarjoaa kahvit."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnsivto4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggm526nlq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:1940/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggm525v5q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggm525ysa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggm525z7y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggm5253oq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggm52545y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggm5256pu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggm52576i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggm526bs4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggm526eby/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggm526fvi/?format=api"
                }
            ],
            "images": [
                {
                    "id": 100939,
                    "license": "event_only",
                    "created_time": "2024-01-03T10:42:03.038652Z",
                    "last_modified_time": "2024-01-03T10:43:21.729823Z",
                    "name": "thumbnail_20180503-SPR-Kuopio-BS-004 (1).jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/thumbnail_20180503-SPR-Kuopio-BS-004_1.jpg",
                    "cropping": "321,0,1600,1279",
                    "photographer_name": "",
                    "alt_text": "Henkilö istuu selin, hänellä on SPR:n liivi päällä, jossa lukee inhimillisyys.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/100939/?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/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-01-03T10:43:29.258120Z",
            "last_modified_time": "2024-01-05T08:48:17.170562Z",
            "date_published": null,
            "start_time": "2024-01-15T10:00:00Z",
            "end_time": "2024-05-20T11: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,
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti. Maksuttoman palvelukeskuskortin voit hakea palvelukeskuksen neuvonnasta.&nbsp;</p><p>Verenpaineen ja verensokerin mittausta sekä terveysneuvontaa.<br>Ei ennakkoilmoittautumista. Maksuton SPR:n vapaaehtoisten järjestämä palvelu.&nbsp;</p>"
            },
            "provider": {
                "fi": "Kinaporin palvelukeskus/SPr:n vapaaehtoiset"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kinaporin palvelukeskus, huone 140, 1.kerros."
            },
            "name": {
                "fi": "Punaisen Ristin terveyspiste"
            },
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Verenpaineen ja verensokerin mittausta sekä terveysneuvontaa."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggm526nlq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggnh32yjq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:1940/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1420/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3vya4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3v2gi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3v3my/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3v4um/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3v5zu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3v7j4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3warq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wb4u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wddy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wek4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wfsy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wg34/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wid4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wjme/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wk7e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wmh4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wnqi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3woye/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wqbu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wrji/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wsoi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wtt4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wu4m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wwla/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wxtq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3wy34/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3w2c4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3w3ja/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3w4qm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3w5ve/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3w63e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xaem/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xbvm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xc6a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xeha/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xfnu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xgty/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xh4m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xjdq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xki4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xlpe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xm5y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xoii/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xpuy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xq4y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xsfu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xtni/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xuwq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xv4y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xxem/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xyua/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3xz5e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3x3dy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3x4ke/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3x5ty/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3x63q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3yacm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3ybju/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3ycq4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3yebu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3yfli/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3ygvi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3yh6u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3yjeu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3ykla/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3ylti/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3ym3q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3yogu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3ypx4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3yrby/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3ysim/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3ytty/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3yu5e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3ywgm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3yxnu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3yyvu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3yz54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3y3qu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3y42m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3y6di/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3y7kq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zara/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zbxy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zc6m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zefy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zfoe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zgzq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3ziha/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zjpq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zkw4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zmb4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3znim/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zoqm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zpwa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zrcy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zsrq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zt2y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zvdi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zwmi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zxte/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zyzy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3z2ci/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3z3ky/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3z4s4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3z6qu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3z7xe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh32a6u/?format=api"
                }
            ],
            "images": [
                {
                    "id": 88891,
                    "license": "cc_by",
                    "created_time": "2023-01-25T05:17:04.045013Z",
                    "last_modified_time": "2024-01-04T10:04:39.481817Z",
                    "name": "-",
                    "url": "http://api.hel.fi/linkedevents/media/images/jocelyn-morales-85u5oGSBJ1s-unsplash_NvP1l5n.jpg",
                    "cropping": "382,0,1898,1516",
                    "photographer_name": "",
                    "alt_text": "Keramiikka",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/88891/?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/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api"
                }
            ],
            "created_time": "2024-01-04T10:05:27.526407Z",
            "last_modified_time": "2024-01-05T08:00:45.403840Z",
            "date_published": null,
            "start_time": "2024-01-05T06:30:00Z",
            "end_time": "2024-05-31T12: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,
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti.</p><p>Tule luomaan keramiikkaa omatoimisesti tai ohjaajan opastuksella viihtyisiin tiloihin Kinaporiin. Kurssia ohjaa Kädentaitojen ohjaaja Milja. Ryhmiin osallistuminen ilmoittautumisen kautta puhelimitse. Kurssilla on materiaalimaksu.&nbsp;</p><p><strong>Ryhmät:</strong></p><ul><li>Maanantai 12.00-15.00 (Täynnä)</li><li>Tiistai 12.00-15.00 (Täynnä)</li><li>Keskiviikko 8.30-11.30</li><li>Perjantai 8.30-11.30 (Täynnä) ja 12.00-15.00 (Täynnä)</li></ul><p>Lisätietoa saa soittamalla ohjaajalle numeroon 09 31052924.</p>"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Keramiikka-/ateljeetila 2krs."
            },
            "name": {
                "fi": "Keramiikkaryhmä"
            },
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Vapaata keramiikkaa ohjaajan opastuksella."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh32yjq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggnh3znim",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:1940/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1420/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh32yjq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [],
            "images": [
                {
                    "id": 88891,
                    "license": "cc_by",
                    "created_time": "2023-01-25T05:17:04.045013Z",
                    "last_modified_time": "2024-01-04T10:04:39.481817Z",
                    "name": "-",
                    "url": "http://api.hel.fi/linkedevents/media/images/jocelyn-morales-85u5oGSBJ1s-unsplash_NvP1l5n.jpg",
                    "cropping": "382,0,1898,1516",
                    "photographer_name": "",
                    "alt_text": "Keramiikka",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/88891/?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/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api"
                }
            ],
            "created_time": "2024-01-04T10:05:16.491683Z",
            "last_modified_time": "2024-01-05T08:00:34.993735Z",
            "date_published": null,
            "start_time": "2024-05-10T09:00:00Z",
            "end_time": "2024-05-10T12: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,
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti.</p><p>Tule luomaan keramiikkaa omatoimisesti tai ohjaajan opastuksella viihtyisiin tiloihin Kinaporiin. Kurssia ohjaa Kädentaitojen ohjaaja Milja. Ryhmiin osallistuminen ilmoittautumisen kautta puhelimitse. Kurssilla on materiaalimaksu.&nbsp;</p><p><strong>Ryhmät:</strong></p><ul><li>Maanantai 12.00-15.00 (Täynnä)</li><li>Tiistai 12.00-15.00 (Täynnä)</li><li>Keskiviikko 8.30-11.30</li><li>Perjantai 8.30-11.30 (Täynnä) ja 12.00-15.00 (Täynnä)</li></ul><p>Lisätietoa saa soittamalla ohjaajalle numeroon 09 31052924.</p>"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Keramiikka-/ateljeetila 2krs."
            },
            "name": {
                "fi": "Keramiikkaryhmä"
            },
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Vapaata keramiikkaa ohjaajan opastuksella."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3znim/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggnh3zmb4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:1940/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1420/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh32yjq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [],
            "images": [
                {
                    "id": 88891,
                    "license": "cc_by",
                    "created_time": "2023-01-25T05:17:04.045013Z",
                    "last_modified_time": "2024-01-04T10:04:39.481817Z",
                    "name": "-",
                    "url": "http://api.hel.fi/linkedevents/media/images/jocelyn-morales-85u5oGSBJ1s-unsplash_NvP1l5n.jpg",
                    "cropping": "382,0,1898,1516",
                    "photographer_name": "",
                    "alt_text": "Keramiikka",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/88891/?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/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api"
                }
            ],
            "created_time": "2024-01-04T10:05:16.183219Z",
            "last_modified_time": "2024-01-05T08:00:34.685139Z",
            "date_published": null,
            "start_time": "2024-05-10T05:30:00Z",
            "end_time": "2024-05-10T08:30: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,
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti.</p><p>Tule luomaan keramiikkaa omatoimisesti tai ohjaajan opastuksella viihtyisiin tiloihin Kinaporiin. Kurssia ohjaa Kädentaitojen ohjaaja Milja. Ryhmiin osallistuminen ilmoittautumisen kautta puhelimitse. Kurssilla on materiaalimaksu.&nbsp;</p><p><strong>Ryhmät:</strong></p><ul><li>Maanantai 12.00-15.00 (Täynnä)</li><li>Tiistai 12.00-15.00 (Täynnä)</li><li>Keskiviikko 8.30-11.30</li><li>Perjantai 8.30-11.30 (Täynnä) ja 12.00-15.00 (Täynnä)</li></ul><p>Lisätietoa saa soittamalla ohjaajalle numeroon 09 31052924.</p>"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Keramiikka-/ateljeetila 2krs."
            },
            "name": {
                "fi": "Keramiikkaryhmä"
            },
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Vapaata keramiikkaa ohjaajan opastuksella."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnh3zmb4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggnjuyayu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8675/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2851/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6889/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "18/12/0",
                        "sv": "18/12/0",
                        "en": "18/12/0"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:3272340-6",
            "sub_events": [],
            "images": [
                {
                    "id": 101027,
                    "license": "cc_by",
                    "created_time": "2024-01-04T14:13:32.611538Z",
                    "last_modified_time": "2024-01-05T07:26:34.810921Z",
                    "name": "Tove Jansson: Juhlat maalla",
                    "url": "http://api.hel.fi/linkedevents/media/images/Juhlat-maalla_rajaus-2-scaled.jpg",
                    "cropping": "380,0,1900,1519",
                    "photographer_name": "HAM Helsinki / Tove Jansson",
                    "alt_text": "Maalaus nuoresta naisesta luonnon keskellä",
                    "data_source": "helsinki",
                    "publisher": "ytj:3272340-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101027/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-01-04T14:14:07.310402Z",
            "last_modified_time": "2024-01-05T07:26:35.516645Z",
            "date_published": null,
            "start_time": "2019-11-23T09:30:00Z",
            "end_time": "2025-01-31T17: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,
            "description": {
                "fi": "<p>HAM esittelee freskojen lisäksi myös muita Tove Janssonin töitä vaihtuvissa ripustuksissa.</p><p>Helsingin kaupungintalossa avattiin vuonna 1947 henkilöstö- ja edustusravintola Kaupunginkellari, jonka seinille tilattiin Tove Janssonilta ajan tavan mukaisesti ”taidekoristelua”. Tilaaja oli apulaiskaupunginjohtaja Erik von Frenckell, Toven hyvän ystävän ja teatterinjohtaja Vivica Bandlerin isä.</p><p>Tilausta varten Tove Jansson luonnosteli kaksi kookasta juhla-aiheista seinämaalausta. Suunnitelmien hyväksynnän jälkeen Jansson toteutti varsinaisen maalausurakan nopeasti, kuudessa kuukaudessa. Siinä häntä avusti aluksi konservaattori Niilo Suihko, joka oli opiskellut freskomaalausta Italiassa. Juhlat maalla ja Juhlat kaupungissa -maalaukset ovat yhdistelmä fresko ja al secco -tekniikkaa, joiden teknistä toteutusta ideoi myös Toven isä, kuvanveistäjä Viktor Jansson.</p><p>Tove Jansson (1914–2001) oli todellinen taiteen monitaituri. Hän oli kuvataiteilija, kirjailija, sarjakuvapiirtäjä, kuvittaja ja käsikirjoittaja, joka parhaiten tunnetaan muumien luojana. HAM esittelee freskojen lisäksi myös muita Tove Janssonin töitä vaihtuvissa ripustuksissa, joiden yhteydessä on usein myös erityisesti nuoremmille vierailijoille sopivaa tekemistä.</p><p>Tervehdyttävä Leikki -kokonaisuudessa voi tutustua Tove Janssonin Auroran sairaalaan tekemiin maalauksiin ja napata itsestään valokuvan maalausten hahmojen kanssa. Lisäksi tilassa voi pysähtyä ihastelemaan Vaarallinen juhannus -kirjan kuvituksiin perustuvaa animointia tai koota suurista paloista koostuvaa palapeliä.&nbsp;</p><p>&nbsp;</p><p>HAM Helsinki</p><p>23.11.2019-31.1.2025</p><p>Sisäänpääsy 0-18€</p>",
                "sv": "<p>Förutom freskerna presenterar HAM också andra verk av Tove Jansson i växlande upphängningar.</p><p>År 1947 öppnades personal- och representationsrestaurangen Stadskällaren i Helsingfors stadshus. Enligt tidens anda beställde man ”konstutsmyckning” av Tove Jansson för restaurangens väggar. Beställaren var vice stadsdirektör Erik von Frenckell, Toves goda väns och teaterchef  Vivica Bandlers far.&nbsp;</p><p>För beställningen skisserade Tove Jansson två stora väggmålningar med festmotiv. Efter att planerna godkändes förverkligade Jansson det egentliga målningsarbetet snabbt, inom sex månader. I början fick hon hjälp av konservatorn Niilo Suihko som hade studerat freskomålning i Italien. Målningarna Fest på landet och Fest i stan är en kombination av al fresco och al secco-teknikerna och Toves far, skulptören Viktor Jansson kom även med idén för det tekniska genomförandet.&nbsp;</p><p>Tove Jansson (1914–2001) var verkligen en tusenkonstnär. Hon var bildkonstnär, författare, serietecknare, illustratör och manusförfattare och är bäst känd som mumintrollens skapare. Förutom freskerna presenterar HAM också andra verk av Tove Jansson i växlande upphängningar, ofta med aktiviteter som är särskilt lämpliga för yngre besökare.</p><p>I helheten Helande Lek kan du utforska Tove Janssons målningar för Aurorasjukhuset och ta ett foto av dig själv med figurerna i målningarna. Du kan också stanna upp och njuta av en animation baserad på illustrationerna i boken Farlig midsommar eller lägga pussel som består av stora bitar.</p><p>&nbsp;</p><p>HAM Helsinki</p><p>23.11.2019-31.1.2025</p><p>Sisäänpääsy 0-18€</p>",
                "en": "<p>In addition to the frescoes, HAM also presents other works by Tove Jansson in changing installations.</p><p>Helsinki City Hall’s new canteen and formal restaurant facility, Kaupunginkellari, opened in 1947. Jansson was commissioned to “decorate its walls”, as was the custom at that time. The commissioner was Deputy Mayor Erik von Frenckell, father of Tove’s good friend and theatre manager Vivica Bandler.&nbsp;</p><p>For the commission, Jansson drafted two large, party-themed wall paintings. After the drafts were approved, Jansson finished the paintings in just six months. Niilo Suihko, who had studied fresco painting in Italy, assisted her at the beginning. Both Party in the Countryside and Party in the City are a combination of the fresco and al secco techniques, and Tove’s father, sculptor Viktor Jansson, was involved in developing their technical implementation.&nbsp;</p><p>Tove Jansson (1914–2001) was an artistic multi-talent. She was an artist, writer, cartoonist, illustrator and scriptwriter, best known as the creator of the Moomins. In addition to the frescoes, HAM also presents other works by Tove Jansson in changing installations, often with activities especially suitable for younger visitors.</p><p>In Healing Play, you can explore the paintings Tove Jansson made for the Aurora Hospital and take a photo of yourself with the characters in the paintings. You can also stop to admire an animation based on the illustrations from the book Midsummer Madness or put together a jigsaw puzzle made up of large pieces.</p><p>&nbsp;</p><p>HAM Helsinki</p><p>23.11.2019-31.1.2025</p><p>Admission fee 0-18€</p>"
            },
            "provider": {
                "fi": "",
                "sv": "HAM Helsingfors konstmuseum",
                "en": "HAM Helsinki Art Museum"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Tove Jansson: Juhlat ja Leikki",
                "sv": "Tove Jansson: Fest och Spel",
                "en": "Tove Jansson: Party and Play"
            },
            "info_url": {
                "fi": "https://www.hamhelsinki.fi/exhibitions/tove-jansson/",
                "sv": "https://www.hamhelsinki.fi/sv/exhibitions/tove-jansson/",
                "en": "https://www.hamhelsinki.fi/en/exhibitions/tove-jansson/"
            },
            "short_description": {
                "fi": "HAM esittelee freskojen lisäksi myös muita Tove Janssonin töitä vaihtuvissa ripustuksissa.",
                "sv": "Förutom freskerna presenterar HAM också andra verk av Tove Jansson i växlande upphängningar.",
                "en": "In addition to the frescoes, HAM also presents other works by Tove Jansson in changing installations."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnjuyayu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aggnrpbq3y",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/espoo_le:aggh5gwkwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/3chCUCQDF",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aggnrpbqsi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aggnrpbqva/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aggnrpbqwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aggnrpbqym/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aggnrpbq2e/?format=api"
                }
            ],
            "images": [
                {
                    "id": 137403,
                    "license": "event_only",
                    "created_time": "2024-01-05T07:23:52.622754Z",
                    "last_modified_time": "2024-01-05T07:23:52.622775Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Tyyne.png",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Tummanruskea kiharakarvainen koira laiturilla.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137403/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/espoo_le:aggh5gwmlm/?format=api"
                }
            ],
            "created_time": "2024-01-05T07:26:19.154382Z",
            "last_modified_time": "2024-01-05T07:26:19.154416Z",
            "date_published": "2024-01-05T07:16:00Z",
            "start_time": "2024-01-25T16:00:00Z",
            "end_time": "2024-05-16T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Lukulemmikki Tyyne odottaa innolla lukijoita Tapiolan kirjastoon klo 18-19.</p><p>Kevään 2024 lukukerrat:<br>to 25.1<br>to 22.2<br>to 21.3<br>to 18.4<br>to 16.5.</p><p>Tervetuloa!</p>",
                "sv": "<p>Läskeldjur Tyyne ser fram emot läsare på Tapiola biblioteket kl. 18-19.</p><p>Läsdagar våren 2024:<br>to 25.1<br>to 22.2<br>to 21.3<br>to 18.4<br>to 16.5.</p><p>Välkommen!</p>",
                "en": "<p>Reading Buddy Tyyne is eagerly awaiting readers at Tapiola Library from 18:00 to 19:00.</p><p>Reading dates for Spring 2024:<br>Thu 25.1<br>Thu 22.2<br>Thu 21.3<br>Thu 18.4<br>Thu 16.5.</p><p>Welcome!</p>"
            },
            "provider": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Lukulemmikki Tyyne",
                "sv": "Läskeldjur Tyyne",
                "en": "Reading Buddy Tyyne "
            },
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Vinkit/Lukulemmikkitoiminta_Espoon_kirjastoissa(241687)",
                "sv": "https://www.helmet.fi/sv-FI/Evenemang_och_tips/Tips/Laskeldjursverksamheten_i_Esbo_bibliotek(243947)",
                "en": "https://www.helmet.fi/en-US/Events_and_tips/Tips/Reading_animals_in_Espoo_libraries(241936)"
            },
            "short_description": {
                "fi": "Lukulemmikki Tyyne odottaa innolla lukijoita Tapiolan kirjastoon klo 18-19.",
                "sv": "Läskeldjur Tyyne ser fram emot läsare på Tapiola biblioteket kl. 18-19.",
                "en": "Reading Buddy Tyyne is eagerly awaiting readers at Tapiola Library from 18:00 to 19:00."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aggnrpbq3y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggnjqfmc4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8675/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2851/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6889/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "18/12/0",
                        "sv": "18/12/0",
                        "en": "18/12/0"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:3272340-6",
            "sub_events": [],
            "images": [
                {
                    "id": 101026,
                    "license": "cc_by",
                    "created_time": "2024-01-04T13:52:48.605586Z",
                    "last_modified_time": "2024-01-05T07:19:23.041789Z",
                    "name": "Katja Tukiainen: Bambi Forever",
                    "url": "http://api.hel.fi/linkedevents/media/images/Bambi-Forever-1300x1158_QRaTaRF.jpg",
                    "cropping": "325,0,1625,1300",
                    "photographer_name": "HAM Helsinki / Katja Tukiainen: Bambi Forever",
                    "alt_text": "Piirros kahdesta bambista",
                    "data_source": "helsinki",
                    "publisher": "ytj:3272340-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101026/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-01-04T13:54:05.983329Z",
            "last_modified_time": "2024-01-05T07:19:23.684874Z",
            "date_published": null,
            "start_time": "2024-03-08T09:30:00Z",
            "end_time": "2025-01-19T17: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,
            "description": {
                "fi": "<p>Näyttely esittelee Raimo ja Maarit Huttusen intohimolla ja persoonallisella otteella rakentamaa lahjoituskokoelmaa.</p><p>Näyttelyn maalauksellisissa ja ilmaisuvoimaisissa teoksissa voi nähdä surua ja melankoliaa, mutta myös toivoa ja huumoria. Ne avaavat ihmisyyden eri puolia ja ristiriitaisuuksia. Esillä on teoksia kotimaisilta taiteen tekijöiltä 1990-luvun alusta tähän päivään saakka.</p><p>Näyttelyn teokset kuuluvat Raimo ja Maarit Huttusen lahjoituskokoelmaan. Huttusten Galleria Bakeliittibambi toimi Helsingissä vuosina 1996–2007. He ovat kartuttaneet taidekokoelmaansa pitkäjänteisesti huomioiden myös suomalaisen taidekentän marginaalisemmat ilmiöt. HAM sai ensimmäisen lahjoituksen intohimolla ja persoonallisella otteella rakennetusta kokoelmasta vuonna 2018. Sittemmin lahjoituskokoelma on laajentunut käsittämään jo yli 300 teosta, ja se karttuu edelleen uusin lahjoituksin.</p><p>Näyttelyssä nähdään teoksia muun muassa Bo Haglundilta, Tiina Heiskalta, Mauri Kuitulalta, Jenni Lahtiselta, Elina Merenmieheltä, Tarmo Paunulta, Aurora Reinhardilta, Heimo Suntiolta, Katja Tukiaiselta, Anssi Törröseltä, Arto Väisäseltä ja Riitta Åkerstedtilta.</p><p>&nbsp;</p><p>HAM Helsinki</p><p>8.3.2024-19.1.2025</p><p>Sisäänpääsy 0-18€</p>",
                "sv": "<p>Utställningen presenterar den donationssamling som Raimo och Maarit Huttunen har byggt upp med passion och personlig touch.&nbsp;</p><p>I utställningens måleriska och uttrycksfulla verk kan man se sorg och melankoli, men också hopp och humor. De tar upp olika aspekter och motsägelser av mänskligheten. På utställningen visas verk av finländska konstnärer från början av 1990-talet fram till idag.</p><p>Verken i utställningen är en del av Raimo och Maarit Huttunens donationssamling. Huttunens Galleria Bakeliittibambi verkade i Helsingfors åren 1996–2007. De har byggt upp sin konstsamling på ett långsiktigt sätt som också beaktar de mer marginella fenomenen på den finländska konstscenen. År 2018 fick HAM sin första donation av samlingen, som byggts upp med passion och personlig touch. Sedan dess har donationssamlingen vuxit till mer än 300 verk och fortsätter att växa med nya donationer.</p><p>I utställningen ingår verk av bland andra Bo Haglund, Tiina Heiska, Mauri Kuitula, Jenni Lahtinen, Elina Merenmies, Tarmo Paunu, Aurora Reinhard, Heimo Suntio, Katja Tukiainen, Anssi Törrönen, Arto Väisänen och Riitta Åkerstedt.</p><p>&nbsp;</p><p>HAM Helsinki</p><p>8.3.2024-19.1.2025</p><p>Inträde 0-18€</p>",
                "en": "<p>The exhibition presents Raimo and Maarit Huttunen’s donation collection, assembled with passion and long-term vision.</p><p>The featured artworks are painterly and expressive, conveying sadness and melancholy, but also hope and humour. Presenting Finnish artists from the early 1990s to the present, the exhibition reflects on the complexities and contradictions of what it means to be human.</p><p>The featured artworks are from a collection donated to HAM by Raimo and Maarit Huttunen, who ran Helsinki’s Bakeliittibambi Gallery from 1996 to 2007. Their distinctive collection has been assembled with passion, long-term vision and a sensitive eye for fringe phenomena. HAM received the first instalment of the donation in 2018. The collection is constantly expanding with new donations, currently comprising over 300 works.</p><p>The exhibition features works by Bo Haglund, Tiina Heiska, Mauri Kuitula, Jenni Lahtinen, Elina Merenmies, Tarmo Paunu, Aurora Reinhard, Heimo Suntio, Katja Tukiainen, Anssi Törrönen, Arto Väisänen, and Riitta Åkerstedt.</p><p>&nbsp;</p><p>HAM Helsinki</p><p>8.3.2024-19.1.2025</p><p>Admission fee 0-18€</p>"
            },
            "provider": {
                "fi": "HAM Helsingin taidemuseo",
                "sv": "HAM Helsingfors konstmuseum",
                "en": "HAM Helsinki Art Museum"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Bambi Forever!",
                "sv": "Bambi Forever!",
                "en": "Bambi Forever!"
            },
            "info_url": {
                "fi": "https://www.hamhelsinki.fi/exhibitions/bambi-forever/",
                "sv": "https://www.hamhelsinki.fi/en/exhibitions/bambi-forever/",
                "en": "https://www.hamhelsinki.fi/en/exhibitions/bambi-forever/"
            },
            "short_description": {
                "fi": "Näyttely esittelee Raimo ja Maarit Huttusen intohimolla ja persoonallisella otteella rakentamaa lahjoituskokoelmaa.",
                "sv": "Utställningen presenterar den donationssamling som Raimo och Maarit Huttunen har byggt upp med passion och personlig touch. ",
                "en": "The exhibition presents Raimo and Maarit Huttunen’s donation collection, assembled with passion and long-term vision."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnjqfmc4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggnji6ck4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8841/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u3212003035",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5b2q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5iwm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5kh4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5ltq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5mzm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5n4i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5pby/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5qgu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5rmq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5sra/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5tye/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5vcq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5wpe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5xwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji5y3i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji52d4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji53ku/?format=api"
                }
            ],
            "images": [
                {
                    "id": 98526,
                    "license": "event_only",
                    "created_time": "2023-10-25T13:11:16.123073Z",
                    "last_modified_time": "2023-10-25T13:12:16.317470Z",
                    "name": "Entisten nuorten keskusteluryhmä",
                    "url": "http://api.hel.fi/linkedevents/media/images/entisten_nuorten.png",
                    "cropping": "100,0,500,400",
                    "photographer_name": "",
                    "alt_text": "Kuvassa kaksi ikääntynyttä meren rannalla",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200303050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/98526/?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/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-01-04T13:22:31.140597Z",
            "last_modified_time": "2024-01-04T13:23:31.349872Z",
            "date_published": null,
            "start_time": "2024-01-10T11:00:00Z",
            "end_time": "2024-05-29T11:30: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,
            "description": {
                "fi": "<p>Ryhmä on tarkoitettu sinulle, joka haluat pohtia elämäsi iloja ja huolenaiheita yhdessä muiden ikääntyvien kanssa. Yhteinen jakaminen ja ryhmän tuki keventävät mieltä, voit löytää uusia näkökulmia elämääsi. Tule rohkeasti mukaan!</p><p>Ainakin aluksi vuoden loppuun asti ryhmä on avoin, eli voit tulla mukaan kerran tai viikoittain. Ryhmää ohjaa vapaaehtoinen. Lisätietoja sosiaaliohjaaja Laura 09&nbsp;310 45041.&nbsp;</p><p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti. Saat maksuttoman palvelukeskuskortin seniorikeskuksen neuvonnasta.&nbsp;</p>"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Entisten nuorten keskusteluryhmä"
            },
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Entisten nuorten keskusteluryhmä"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnji6ck4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}