Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default 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 /v1/event/?format=api&page=243&weekday=6%2C7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 4965,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=244&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=242&weekday=6%2C7"
    },
    "data": [
        {
            "id": "helmet:261646",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2951,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:36:16.172207Z",
                    "last_modified_time": "2023-08-15T15:36:16.172229Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{BB963894-25B6-49F7-BE47-6611EEB04202}/103169",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2951/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:36:15.747182Z",
            "last_modified_time": "2023-09-18T03:56:44.230746Z",
            "date_published": "2023-06-19T11:30:00Z",
            "start_time": "2023-09-16T07:00:00Z",
            "end_time": "2023-09-16T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten viikonloppuna arki on ihmeellistä!"
            },
            "description": {
                "fi": "<p>Lasten viikonloppuna tavallinen arki on ihmeellistä.</p><p>Luvassa on askartelua, satutuokioita ja muuta kivaa puuhaa, sekä tietysti kirjanäyttely. </p><p>Mitä kaikkea eriskummallista saattaakaan tapahtua aivan tavallisena päivänä?</p><p>Kuva: Canva</p>"
            },
            "provider": null,
            "name": {
                "fi": "Lasten viikonloppu: Ihmeellinen arki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261646/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:266155",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3499,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-21T17:25:55.910244Z",
                    "last_modified_time": "2023-08-21T17:25:55.910265Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{55BD9D17-43EC-412D-927C-4CC48A284DC8}/105123",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3499/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-21T17:25:55.803451Z",
            "last_modified_time": "2023-09-17T15:32:50.664446Z",
            "date_published": "2023-08-21T16:00:00Z",
            "start_time": "2023-09-16T10:00:00Z",
            "end_time": "2023-09-16T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa Tapanilan kirjaston lastenlauantaihin juhlistamaan Vaahteramäen Eemelin juhlavuotta!"
            },
            "description": {
                "fi": "<p>Tunnetko Eemelin, pellavapäisen metkuilijan Vaahteramäeltä? Tänä vuonna vietetään, uskomatonta kyllä, Eemelin 60-vuotissyntymäpäiviä. Tervetuloa Tapanilan kirjaston perhelauantaihin juhlistamaan Eemeliä. Tapahtuma alkaa satutuokiolla klo 13, jonka jälkeen voi askarrella, visailla ja yrittää kiinnittää possulle häntää.<br><br> Edellisenä päivänä Pehmojen yöhön tuodut pehmolelut voi myös noutaa perhelauantain yhteydessä. Nähdään kirjastossa!<br> </p><p>Kuva: The Astrid Lindgren Company tm / Bildmakarna Berg / Björn Berg</p>"
            },
            "provider": null,
            "name": {
                "fi": "Perhelauantai: Vaahteramäen Eemeli"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266155/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:197356",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3498,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-21T17:25:53.569318Z",
                    "last_modified_time": "2023-08-21T17:25:53.569338Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{CCDA04FE-EC9E-4D78-BD64-00D26CC056BC}/105121",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3498/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-21T17:25:52.286828Z",
            "last_modified_time": "2023-09-17T13:03:09.249493Z",
            "date_published": "2023-08-21T15:00:00Z",
            "start_time": "2023-09-15T06:00:00Z",
            "end_time": "2023-09-16T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Myyrä kutsuu Tapanilan pehmolelut yökylään kirjastoon!"
            },
            "description": {
                "fi": "<p>Asuuko teillä pehmolelu, joka haluaisi viettää jännittävän syksyisen yön kirjastossa? Myyrä ja muut kirjaston pehmot kutsuvat asiakkaiden pehmoystävät yökylään Tapanilan kirjastoon! Tällä kertaa mukana ovat ensimmäistä kertaa myös Vaahteramäen Eemeli ja Iida. Kuvia yön seikkailuista jaetaan kirjastomme Instagram-tilillä @kirjastotapanila. <br><br> Pehmoja vastaanotetaan koko perjantai klo 16 saakka lainaustiskillä. Jos pehmo uskaltaa olla kaksi yötä, hänet voidaan vastaanottaa jo torstaina. Oman pehmon voi noutaa kotiin lauantaina kirjaston aukioloaikana klo 10-16. Lauantaina kirjastolla vietetään myös perhelauantaita Vaahteramäen Eemelin 60-vuotisjuhlavuoden kunniaksi klo 13-15.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Pehmojen yö Tapanilan kirjastossa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:197356/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267007",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12031/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3748,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-29T07:29:02.046202Z",
                    "last_modified_time": "2023-08-29T07:29:02.046228Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{F1266307-D8A8-43B2-B281-A41D4E371728}/105289",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3748/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-29T07:29:01.791868Z",
            "last_modified_time": "2023-09-16T20:37:08.825887Z",
            "date_published": "2023-08-28T21:00:00Z",
            "start_time": "2023-09-16T09:00:00Z",
            "end_time": "2023-09-16T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Estradi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Esillä tämän ajan sieniä Espoon lähiöiden pienistä metsiköistä."
            },
            "description": {
                "fi": "<p>Espoon ympäristöyhdistyksen sieninäyttely 16.9 klo 12-18</p><p>Esillä tämän ajan sieniä Espoon lähiöiden pienistä metsiköistä.</p><p>Vuosikymmeniä innokkaana sienestäjänä Paula Mertsalmi haluaa esitellä lähialueidemme monimuotoisuutta lukuisten sienien esiintymisellä.</p><p>Esillä syötäviä ja enemmän ja vähemmän syötäväksi kelpaamattomia.</p><p>Sienikirjoja esillä omalla kirjaston pöydällä.</p><p>Tervetuloa tutustumaan ja juttelemaan syksyn metsien lakkipäistä.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Sieninäyttely"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267007/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264698",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2952,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:36:17.770998Z",
                    "last_modified_time": "2023-08-15T15:36:17.771020Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{E5A678A7-ED19-4D29-8BF4-3E66B85D1DEF}/104695",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2952/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:36:16.894981Z",
            "last_modified_time": "2023-09-16T17:39:57.104058Z",
            "date_published": "2023-08-03T09:06:00Z",
            "start_time": "2023-09-16T08:00:00Z",
            "end_time": "2023-09-16T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vuoden 2023 Kolibri Festivaali alkaa Sellon kirjastosta! Uskomaton päivä musiikin, teatterin, taidetyöpajojen, satujen, tanssin ja nukkejen parissa. Paljon hauskaa koko perheelle!",
                "sv": "Vuoden 2023 Kolibri Festivaali alkaa Sellon kirjastosta! Uskomaton päivä musiikin, teatterin, taidetyöpajojen, satujen, tanssin ja nukkejen parissa. Paljon hauskaa koko perheelle!",
                "en": "Kolibrí Festivaali 2023 begins begins at Sello Library! An amazing day with music, theatre, art workshops, storytelling, dance, puppets and lots of fun for the whole family!"
            },
            "description": {
                "fi": "<h3>Lauantaina 16.9. klo 11-17</h3></p><p>Vuoden 2023 Kolibri Festivaali alkaa Sellon kirjastosta! Uskomaton päivä musiikin, teatterin, taidetyöpajojen, satujen, tanssin ja nukkejen parissa. Paljon hauskaa koko perheelle!</p><p>Tule tapaamaan uusia ihmisia, oppimaan kieliä ja tutkimaan uusia kulttuureja!</p><p>Tänä vuonna teemana on \"Vieraanvaraisuuden taide\" yhtäaikaisesti Chile50 , joka kunnioittaa chileläisiä perheitä, jotka tulivat Suomeen 50 vuotta sitten etsimään turvapaikkaa.</p><p>Sello saa vieraakseen Kolibrin vieraan Tetro al Vacion! Argentiinalais-meksikolainen teatteri eittävät Sellossa näytelmät <em>Cerca</em> ja <em>Pulsar</em>.</p><p>Ohjelman löydät täältä<a href=\"https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.kolibrifestivaali.org%2F%3Ffbclid%3DIwAR2FAaXPVzg5uN2N01ItvSIkC5lgmc_pVPS-V68ZcPy_kmiixAMYuGXbRkY&amp;h=AT15TI1ofdZ1xWGylRnSluT-tPkSnngRWP5mFWrnId1eg7QIgOQCjlpcamiEGt8pigmf8m1PC1berb08tnP0ND48aSoULUqSC6Lj7rVYhvGY7XzMrb-VdqhekyIYJoCG6A&amp;__tn__=q&amp;c[0]=AT2cPZ0OdYTMdATL9h2RwdgND5gXBfBlf5ZEUnuRxLhRjj8K6i6RNjLSeJAr642BuC68O-44gB_CxN9HytpH1N3ElOQXpPmHj_QPusr4y1_d0TGL6uVhNx097V4N45T7rBk2ui2-6lWngn0s-9gxobPBfNhR\">https://www.kolibrifestivaali.org/</a></p><p>Kolibrí Festivaali 2023 begins begins at Sello Library! An amazing day with music, theatre, art workshops, storytelling, dance, puppets and lots of fun for the whole family!</p><p>Come and meet people, learn new languages, explore new cultures, and above all, make new friends.</p><p>This year the main theme will be ‘The Art of Hospitality’, coinciding with Chile50, which will pay tribute to the Chilean families who came to Finland 50 years ago seeking refuge.</p><p>Sello will also receive Kolibrí’s guest company Teatro al Vacío! The Argentinian-Mexican theatre company will perform their plays <em>Cerca </em>and <em>Pulsar</em>.</p><p>Kolibrí is a unique multicultural, free and open art festival for the most diverse, plurilingual, and intergenerational audiences. We’ll take over cultural centers and libraries in Helsinki, Espoo and Vantaa, from September 16th to September 30th</p><p>Full program <a href=\"https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.kolibrifestivaali.org%2F%3Ffbclid%3DIwAR2FAaXPVzg5uN2N01ItvSIkC5lgmc_pVPS-V68ZcPy_kmiixAMYuGXbRkY&amp;h=AT15TI1ofdZ1xWGylRnSluT-tPkSnngRWP5mFWrnId1eg7QIgOQCjlpcamiEGt8pigmf8m1PC1berb08tnP0ND48aSoULUqSC6Lj7rVYhvGY7XzMrb-VdqhekyIYJoCG6A&amp;__tn__=q&amp;c[0]=AT2cPZ0OdYTMdATL9h2RwdgND5gXBfBlf5ZEUnuRxLhRjj8K6i6RNjLSeJAr642BuC68O-44gB_CxN9HytpH1N3ElOQXpPmHj_QPusr4y1_d0TGL6uVhNx097V4N45T7rBk2ui2-6lWngn0s-9gxobPBfNhR\">https://www.kolibrifestivaali.org/</a></p>",
                "sv": "<p>Kolibrí Festivaali 2023 börjar på Sello bibliotek! En fantastisk dag med musik, teater, konstverkstäder, berättande, dans, marionetter och massor av skoj för hela familjen!</p><p>Kom och träffa människor, lär dig nya språk, utforska nya kulturer och framför allt, skapa nya vänner. Fri entré!</p><p>I år kommer huvudtemat vara 'Konsten av Gästfrihet', sammanfallande med Chile50, som kommer att hedra de chilenska familjerna som kom till Finland för 50 år sedan i sökandet efter skydd.</p><p>Sello kommer också att få besök av Kolibrís gästkompani Teatro al Vacío! Den argentinska-mexikanska teaterkompanin kommer att framföra sina pjäser Cerca och Pulsar.</p><p>Kolibrí är en unik, mångkulturell, gratis och öppen konstfestival för de mest olika, flerspråkiga och intergenerationella publiken. Vi kommer att ta över kulturcentrum och bibliotek i Helsingfors, Esbo och Vanda, från den 16 till den 30 september.</p><p>Spara detta evenemang i din kalender och missa det inte! </p><p>Det fullständiga programmet på <a href=\"https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.kolibrifestivaali.org%2F&amp;data=05%7C01%7C%7Ca895006dbe68421d3dcc08dbaab8aae5%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C638291482390184049%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=RBcyshBSCRoHfG%2FKu6%2FI4Gm3M00NJfuOp0oXtHkQTHo%3D&amp;reserved=0\">www.kolibrifestivaali.org</a> </p>",
                "en": "<h3>Saturday 16.9. at 11 am to 5 pm</h3><p>Kolibrí Festivaali 2023 begins begins at Sello Library! An amazing day with music, theatre, art workshops, storytelling, dance, puppets and lots of fun for the whole family!</p><p>Come and meet people, learn new languages, explore new cultures, and above all, make new friends.</p><p>Kolibrí Festivaali 2023 begins begins at Sello Library! An amazing day with music, theatre, art workshops, storytelling, dance, puppets and lots of fun for the whole family!</p><p>Come and meet people, learn new languages, explore new cultures, and above all, make new friends.</p><p>This year the main theme will be ‘The Art of Hospitality’, coinciding with Chile50, which will pay tribute to the Chilean families who came to Finland 50 years ago seeking refuge.</p><p>Sello will also receive Kolibrí’s guest company Teatro al Vacío! The Argentinian-Mexican theatre company will perform their plays <em>Cerca </em>and <em>Pulsar</em>.</p><p>Kolibrí is a unique multicultural, free and open art festival for the most diverse, plurilingual, and intergenerational audiences. We’ll take over cultural centers and libraries in Helsinki, Espoo and Vantaa, from September 16th to September 30th</p><p>Full program <a href=\"https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.kolibrifestivaali.org%2F%3Ffbclid%3DIwAR2FAaXPVzg5uN2N01ItvSIkC5lgmc_pVPS-V68ZcPy_kmiixAMYuGXbRkY&amp;h=AT15TI1ofdZ1xWGylRnSluT-tPkSnngRWP5mFWrnId1eg7QIgOQCjlpcamiEGt8pigmf8m1PC1berb08tnP0ND48aSoULUqSC6Lj7rVYhvGY7XzMrb-VdqhekyIYJoCG6A&amp;__tn__=q&amp;c[0]=AT2cPZ0OdYTMdATL9h2RwdgND5gXBfBlf5ZEUnuRxLhRjj8K6i6RNjLSeJAr642BuC68O-44gB_CxN9HytpH1N3ElOQXpPmHj_QPusr4y1_d0TGL6uVhNx097V4N45T7rBk2ui2-6lWngn0s-9gxobPBfNhR\">https://www.kolibrifestivaali.org/</a></p>"
            },
            "provider": null,
            "name": {
                "fi": "Kolibri lastenfestivaali",
                "sv": "Kolibri lastenfestivaali",
                "en": "Kolibri Festivaali"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264698/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268013",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8348/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4701,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-11T11:26:32.957867Z",
                    "last_modified_time": "2023-09-11T11:26:32.957891Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{8C618ECF-33B0-4369-A66B-A30BD1EF40B4}/105732",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4701/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-09-11T09:39:20.496440Z",
            "last_modified_time": "2023-09-16T11:54:40.671996Z",
            "date_published": "2023-09-11T08:32:00Z",
            "start_time": "2023-09-16T10:00:00Z",
            "end_time": "2023-09-16T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Juhlistamme Myllypuropäivää kirjastolla klo 13-15!"
            },
            "description": {
                "fi": "<p>Juhlistamme kotoisaa asuinaluettamme kirjastolla klo 13-15! </p><p> <strong>OHJELMA</strong> </p><p> <strong>klo 13-15 Myllypuroaiheinen kirjanmerkkipaja </strong> <br> <br> Tee itsellesi tai ystävällesi tyylikäs Myllypuro-kirjanmerkki. <br><br><strong>klo 13-15 Oodi kotiseudulle -runopaja</strong></p><p>Luo ylevä, hassu tai arkinen runo kodillesi, asuinalueellesi tai kotiseudullesi poistokirjasivujen sanoja leikkaamalla ja liimaamalla uudelleen yhteen. <br><br><strong>klo 13-14.30 Dokumenttielokuva: Laulu koti-ikävästä (2012 / 90 min /S)</strong></p><p>Nelikymppinen, entinen muusikko Kai Latvalehto pyytää isäänsä Taunoa kuskiksi Oulusta Göteborgiin. Kai haluaa päästä takaisin maisemiin, joissa perhe asui 1970-luvulla eli koko hänen lapsuutensa aina murrosikään saakka.<br> Pojan ja isän automatka muuttuu musiikilliseksi retkeksi yhteiseen tunnemuistiin ja suomalaissiirtolaisuuden historiaan: häpeään, syyllisyyteen, rikollisuuteen, alkoholismiin ja perhesalaisuuksiin. Musiikillisen selkärangan dokumentille luovat suomalaissiirtolaisten 1970-luvulla kirjoittamat kappaleet, joita esittävät livenä toisen sukupolven ruotsinsuomalaiset muusikot.<br> Mika Ronkaisen palkittu dokumentti on elämänmakuinen ja lämminhenkinen ajankuvaus. <br> (Lähde: yle.fi)</p><p> <strong>klo 13-15 Mehu- ja keksitarjoilu</strong> </p><p>Vapaa pääsy. Lämpimästi tervetuloa! </p>"
            },
            "provider": null,
            "name": {
                "fi": "Myllypuropäivä"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268013/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:266498",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3836,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-01T07:33:23.678009Z",
                    "last_modified_time": "2023-09-01T07:33:23.678030Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{8A853DDF-2EA8-4C50-A267-9ACC2F952FB0}/105457",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3836/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-01T07:33:23.278861Z",
            "last_modified_time": "2023-09-16T07:06:09.877645Z",
            "date_published": "2023-09-01T06:27:00Z",
            "start_time": "2023-09-16T07:00:00Z",
            "end_time": "2023-09-16T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule tutustumaan Mata-Miin seikkailuihin!"
            },
            "description": {
                "fi": "<p>Muovailuvahanukketeatteriesitys</p><p>Perustuu Sanna Pelliccionin lasten kuvakirjaan.</p><p>Pienen Mata-Mii -tytön unelma on seikkailu. Hän saa tädiltään luvan seikkailla vuoden ajan maalla, merellä tai ilmassa. Mata-Mii pestautuu mausteita kuljettavaan laivaan ja pääsee laivakokki Leonen oppiin. Eikä aikaakaan kun Mata-Miista tulee laivan leipurimestari. Mata-Miilla on satumainen kyky leipoa herkullisia kakkuja ja ilahduttaa ihmisiä ympäri maailmaa.</p><p>Tämä musiikkipitoinen nukketeatterinäytelmä toteutetaan muovailuvahaesityksenä, jossa lavasteet ja nuket rakennetaan esityksen aikana. Näytelmä innostaa muovailemaan -vaikka ikioman Mata-Miin!</p><p>”Kakku pian valmis on näin kuiskaa uunin pellit, päälle vielä koristeeksi kauniit nonparellit, jii-haa on Mata-Mii tää hurmaava sokerileipuri!”</p><p>Ikäsuositus 2+</p><p>Kesto 30 minuuttia</p><p>Käsikirjoitus, lavasteet ja nuket Ilpo Mikkonen</p><p>Ohjaus Teija Paananen</p><p>Musiikki Salla-Marja Hätinen/ Ilpo Mikkonen</p><p> <a href=\"http://www.pikkukulkuri.fi\">Nukketeatteri PikkuKulkurin tuotantoa www.pikkukulkuri.fi</a> </p><p>Facebook Nukketeatteri PikkuKulkuri<br> ilpoilpo@outlook.com</p><p>Asiasana: Lastenkulttuuri</p>"
            },
            "provider": null,
            "name": {
                "fi": "Mata-mii -sokerileipuri seikkailee"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266498/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7lzi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:21431/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/876227290607902",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2023-09-14T13:01:57.117705Z",
            "last_modified_time": "2023-09-14T13:01:57.117729Z",
            "date_published": null,
            "start_time": "2023-09-17T10:00:00Z",
            "end_time": "2023-09-17T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten kulttuurikeskus Aurora juhlii 20-vuotissyntymäpäiviään! Juhlakauden kunniaksi tuomme taidepajoja kotikulmillesi!"
            },
            "description": {
                "fi": "<p>Lasten kulttuurikeskus Auroran Taidetalo juhlii tänä syksynä 20-vuotissyntymäpäiviään! “Taidetekoja 20 vuotta” -juhlakauden kunniaksi tuomme taidepajoja kotikulmillesi Leppävaaraan, Soukkaan, Matinkylään ja Kalajärvelle. Tule tekemään taidetta kanssamme! </p><p>Syntyneet teokset pääsevät osaksi näyttelykokonaisuutta, joka avataan Lapsen oikeuksien viikolla ja huipentuu lauantaina 25.11. Suureen Taidejuhlaan Lasten kulttuurikeskus Aurorassa.  <br> <br>Taide syntyy leikiten – paja pienille  </p><p>Leikin maailmassa kaikki on mahdollista. Hauskuus kaksinkertaistuu, kun taidepajassa iloisen leikin jäljet tallentuvat yhteiseksi maalaukseksi. Kirmaa tutkimaan mielikuvituksen hehkun piirtymistä värikkäiksi taidejäljiksi!  Taideohjaaja Jenni Vilander </p><p>Hetken ajatus -pilvet – paja isoille  </p><p>Mikä juuri tässä hetkessä on mukavaa? Kutkuttaako ajatuksissa saapuvan syksyn uudet tuulet tai tapahtuiko tänään aamulla jotain yllättävää? Mistä ajatuksesta sinä haluat jättää jäljen? Taiteile se ajatuspilveen! TaidePiilon taideohjaajat, taidepiilo.fi</p><p>Menossa on mukana kirjaston tapahtuma-auto Välkky, josta voi myös lainata aineistoa! Välkyssä voi teettää kirjastokortin. <br> <br>Tapahtuma on maksuton <br>Järj. Lasten kulttuurikeskus Aurora yhteistyössä Espoon kirjaston kanssa. </p><p><br>Koko kiertue</p><p>La 16.9. klo 10-14 Leppävaaran urheiluaukio <br>Su 17.9. klo 13-16 Soukan asukaspuisto <br> <br>La 14.10. Klo 10-14 Maailman Matti, Kauppakeskus Iso Omenaa vastapäätä <br>Su 15.10. Klo 13-16 Hiirisuon asukaspuisto, Kalajärvi </p><p>Kuva Jenni Vilander<br></p>"
            },
            "provider": {
                "fi": "Lasten kulttuurikeskus Aurora ja Espoon kirjasto"
            },
            "name": {
                "fi": "Taidetta teillä -kiertue, Soukan asukaspuisto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7lzi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7l4m",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:21431/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/326736979857811?ref=newsfeed",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2023-09-14T13:00:19.926106Z",
            "last_modified_time": "2023-09-14T13:00:19.926131Z",
            "date_published": null,
            "start_time": "2023-09-16T07:00:00Z",
            "end_time": "2023-09-16T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten kulttuurikeskus Aurora juhlii 20-vuotissyntymäpäiviään! Juhlakauden kunniaksi tuomme taidepajoja kotikulmillesi!"
            },
            "description": {
                "fi": "<p>Lasten kulttuurikeskus Auroran Taidetalo juhlii tänä syksynä 20-vuotissyntymäpäiviään! “Taidetekoja 20 vuotta” -juhlakauden kunniaksi tuomme taidepajoja kotikulmillesi Leppävaaraan, Soukkaan, Matinkylään ja Kalajärvelle. Tule tekemään taidetta kanssamme! </p><p>Syntyneet teokset pääsevät osaksi näyttelykokonaisuutta, joka avataan Lapsen oikeuksien viikolla ja huipentuu lauantaina 25.11. Suureen Taidejuhlaan Lasten kulttuurikeskus Aurorassa.  <br> <br>Taide syntyy leikiten – paja pienille  </p><p>Leikin maailmassa kaikki on mahdollista. Hauskuus kaksinkertaistuu, kun taidepajassa iloisen leikin jäljet tallentuvat yhteiseksi maalaukseksi. Kirmaa tutkimaan mielikuvituksen hehkun piirtymistä värikkäiksi taidejäljiksi!  Taideohjaaja Jenni Vilander </p><p>Hetken ajatus -pilvet – paja isoille  </p><p>Mikä juuri tässä hetkessä on mukavaa? Kutkuttaako ajatuksissa saapuvan syksyn uudet tuulet tai tapahtuiko tänään aamulla jotain yllättävää? Mistä ajatuksesta sinä haluat jättää jäljen? Taiteile se ajatuspilveen! TaidePiilon taideohjaajat, taidepiilo.fi</p><p>Menossa on mukana kirjaston tapahtuma-auto Välkky, josta voi myös lainata aineistoa! Välkyssä voi teettää kirjastokortin. <br> <br>Tapahtuma on maksuton <br>Järj. Lasten kulttuurikeskus Aurora yhteistyössä Espoon kirjaston kanssa. </p><p><br>Koko kiertue</p><p>La 16.9. klo 10-14 Leppävaaran urheiluaukio <br>Su 17.9. klo 13-16 Soukan asukaspuisto <br> <br>La 14.10. Klo 10-14 Maailman Matti, Kauppakeskus Iso Omenaa vastapäätä <br>Su 15.10. Klo 13-16 Hiirisuon asukaspuisto, Kalajärvi </p><p>Kuva Jenni Vilander<br></p>"
            },
            "provider": {
                "fi": "Lasten kulttuurikeskus Aurora ja Espoon kirjasto"
            },
            "name": {
                "fi": "Taidetta teillä -kiertue, Leppävaaran urheiluaukio"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7l4m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264349",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2630,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:28:25.202837Z",
                    "last_modified_time": "2023-08-15T15:28:25.202858Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{612939D4-A7AE-4CC0-8F69-772CB8243E74}/104620",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:28:24.991314Z",
            "last_modified_time": "2023-09-12T19:17:54.375025Z",
            "date_published": "2023-07-27T09:40:43.223000Z",
            "start_time": "2023-08-06T21:00:00Z",
            "end_time": "2023-08-12T21:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "3. krs, kahvila"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa tutustumaan Pöytä on katettu -näyttelyyn, joka tutkii arkisessa ruokaympäristössä kohdattuja haasteita nuorten näkökulmasta! Näyttely on esillä Oodin 3. kerroksen kahvilan alueella."
            },
            "description": {
                "fi": "<p>Tervetuloa tutustumaan Pöytä on katettu -näyttelyyn, joka tutkii arkisessa ruokaympäristössä kohdattuja haasteita nuorten näkökulmasta. Näyttely on esillä Oodin 3. kerroksen kahvilan alueella. <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Keskustakirjasto_Oodi/Tapahtumat/Poyta_on_katettu_nayttelyn_avajaistilais(264342)\">Näyttelyn avajaistilaisuus ja näyttelyyn liittyvä keskustelu</a> järjestetään Oodin 3. kerroksen Saarikoski-maton tapahtuma-alueella 7.8.2023, klo 15.00–16.30. Tervetuloa mukaan!</p><p>Arjen ruokaympäristö vaikuttaa merkittävästi siihen mitä ja miten syömme. Toimimme ruokaympäristöissä usein rutiininomaisesti, emmekä välttämättä kiinnitä juurikaan huomiota niihin ruokaympäristön fyysisiin, taloudellisiin, poliittisiin ja sosiokulttuurisiin ominaisuuksiin, jotka vaikuttavat omaan toimintaamme.</p><p>Nuoret ovat oman arkisen ruokaympäristönsä parhaita asiantuntijoita, joiden kanssa yhdessä tutkijat ja päätöksentekijät voivat löytää ratkaisuja siirryttäessä kohti kestävämpiä elämäntapoja. Näyttely nostaa esille viisi eri teemaa nuorten arkisesta ruokaympäristöstä, joihin he toivovat yhteiskunnalta lisää huomiota.</p><p> <strong>Kiitos ruoasta -teema</strong> kysyy saako ruoka ansaitsemansa arvostuksen, entä mitä ja miten kukin ansaitsee syödä.</p><p> <strong>Kaunis kasvisruoka -teema</strong> pohtii asennoitumista kasvisruokaan ja sen asemaa nykyisessä ruokaympäristössämme. Kasvisruokaa kohtaan on edelleen ennakkoluuloja, eikä ruokaympäristö aina mahdollista tai tue kasvisruoan valitsemista.</p><p> <strong>Syö, että jaksat, jaksat kun syöt -teema</strong> tempaisee mukaan paineistetun nuoren syöksykierteeseen, jossa puutteellinen ravitsemus on osaltaan sekä jaksamattomuuden syy että seuraus. Koetut suorituspaineet ja taloudellinen niukkuus uuvuttavat, jolloin päädytään usein syömään jotain helppoa tai jotain, joka lohduttaa.</p><p> <strong>Jaettavaksi-teema</strong> juhlistaa sosiaalisten suhteiden ja tuen merkitystä. Ruoan hankkiminen, valmistaminen ja nauttiminen yhdessä muiden kanssa mahdollistaa omien arvojen mukaista syömistä ja tukee jaksamista.</p><p> <strong>Hävikin halvat herkut -teema</strong> pohtii yltäkylläisyyden ja niukkuuden yhteen kietoutumista. Saatavilla oleva ruoka ei ole aina henkilökohtaisesti saavutettavissa. Omat toimet hävikin vähentämiseksi hälventävät hävikin tuottamaa surua.</p><p>Näyttely on toteutettu osana Suomen ympäristökeskuksen ”Kansalaistiedettä arkiympäristöstä” -tutkimushanketta, jota rahoittaa Suomen Akatemia. Tutkimushankkeessa nuoret ovat tutkineet yhdessä tutkijoiden kanssa omaa ruokaympäristöään ja pohtineet ratkaisuja kohdattuihin haasteisiin yhdessä ruokaympäristöön vaikuttavien toimijoiden kanssa, kuten kauppa, ravintolat ja ruokapalvelut, maa- ja metsätalousministeriö sekä valtion ravitsemusneuvottelukunta. Tutkimuksessa on tehty yhteistyötä 4H Aktiivinuorten, WWF Nuorten, Kohtaus ry:n sekä Voionmaan koulutuskeskuksen valokuvauksen ja ympäristövaikuttajien opettajien kanssa. Tuula Alajoki on toteuttanut näyttelyn yhdessä nuorten kanssa.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Pöytä on katettu -näyttely"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264349/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264144",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2629,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:28:22.474612Z",
                    "last_modified_time": "2023-08-15T15:28:22.474634Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{09A3471A-BF1D-432C-9E00-A10C7D2ECA94}/104550",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2629/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:28:22.354814Z",
            "last_modified_time": "2023-09-12T09:17:44.695531Z",
            "date_published": "2023-07-19T10:55:00Z",
            "start_time": "2023-08-12T10:00:00Z",
            "end_time": "2023-08-12T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa Iso Omenan kirjastoon kuuntelemaan kiinankielisiä satuja ja oppimaan kiinalaisesta kulttuurista.",
                "en": "Welcome to Iso Omena Library to listen to stories in Chinese and learn about Chinese culture."
            },
            "description": {
                "fi": "<p>Tervetuloa Iso Omenan kirjastoon kuuntelemaan kiinankielisiä satuja ja oppimaan kiinalaisesta kulttuurista.</p><p>Kiinankielinen satutunti on suunnattu kiinankielisille lapsille, jotka ovat kiinnostuneita kiinan kielen oppimisesta. Satutunnit järjestetään kirjaston lastenosastolla.</p>",
                "en": "<p>Welcome to Iso Omena Library to listen to stories in Chinese and learn about Chinese culture.</p><p>The story times are arranged at the library's children's section.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Kiinankielinen satutunti",
                "en": "Chinese Story Time"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264144/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:254840",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2627,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:28:21.751939Z",
                    "last_modified_time": "2024-02-06T13:38:20.614203Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{3C85B692-C8B4-4CBC-9F31-0DF44BB3299F}/100129",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2627/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:28:21.628350Z",
            "last_modified_time": "2023-09-12T07:18:57.124412Z",
            "date_published": "2023-02-03T08:39:00Z",
            "start_time": "2023-08-12T08:00:00Z",
            "end_time": "2023-08-12T08:50:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Akseli-sali",
                "en": "Akseli-sali"
            },
            "info_url": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Unique Mantra Meditation for mind & soul",
                "en": "Unique Mantra Meditation for mind & soul"
            },
            "description": {
                "fi": "</p><p>MEDITATION</p><p>Unique Mantra Meditation for mind &amp; soul</p><p> • health benefits • mindfulness</p><p>• emotional well-being • stress relief</p><p>Once a month on Saturdays at 11.00 – 11.50</p><p>Sep 2, Oct 7, Nov 4 and Dec 2</p><p> <strong>facebook</strong> :-<a href=\"https://www.facebook.com/realityretreatfi/\">https://www.facebook.com/realityretreatfi/</a></p><p>Walk in or RSVP to <a href=\"mailto:realityretreat.fi@gmail.com\">realityretreat.fi@gmail.com</a></p>",
                "en": "</p><p>MEDITATION</p><p>Unique Mantra Meditation for mind &amp; soul</p><p> • health benefits • mindfulness</p><p>• emotional well-being • stress relief</p><p>Once a month on Saturdays at 11.00 – 11.50</p><p>Sep 2, Oct 7, Nov 4 and Dec 2</p><p> <strong>facebook</strong> :-<a href=\"https://www.facebook.com/realityretreatfi/\">https://www.facebook.com/realityretreatfi/</a></p><p>Walk in or RSVP to <a href=\"mailto:realityretreat.fi@gmail.com\">realityretreat.fi@gmail.com</a></p>"
            },
            "provider": null,
            "name": {
                "fi": "Reality Retreat",
                "en": "Reality Retreat"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:254840/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59621",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3989,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:19:17.848856Z",
                    "last_modified_time": "2023-09-07T14:19:17.848887Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729366.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3989/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:19:17.690562Z",
            "last_modified_time": "2023-09-11T21:16:29.584282Z",
            "date_published": null,
            "start_time": "2023-08-05T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D12CA3A62C965247A38BFA4D69F724FC/KOOKOOCEE_Anniversary",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D12CA3A62C965247A38BFA4D69F724FC/KOOKOOCEE_Anniversary",
                "en": "http://www.stoa.fi/en/events/event/D12CA3A62C965247A38BFA4D69F724FC/KOOKOOCEE_Anniversary"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vuosia täyttävä KOOKOOCEE järjestää katutanssitapahtuman, jonka ytimessä on pohjoismaiden katutanssiyhteisöt yhteen tuova breakdance-kilpailu.",
                "sv": "KOOKOOCEE fyller år och ordnar ett gatudansevenemang där huvudeventet är en breakdancetävling som sammanför nordiska gatudanskollektiv.",
                "en": "KOOKOOCEE, celebrating its anniversary, organises a street dancing event centred around a breakdance competition that brings together street dance communities from the Nordic countries."
            },
            "description": {
                "fi": "<p>Vuosia täyttävä KOOKOOCEE järjestää katutanssitapahtuman, jonka ytimessä on pohjoismaiden katutanssiyhteisöt yhteen tuova breakdance-kilpailu.</p><p>Luvassa on maailmanluokan tanssia, battleja sekä avoin tanssilattia. Tapahtuman aikana ulkomailta asti saapuvat DJ:t soittavat tarkasti valikoitua tanssittavaa rytmimusiikkia harvinaisista grooveista nykypäivän bängereihin. Kilpailusta huolimatta tapahtuman keskipiste on yhteisöllisyys ja hauskanpito. ”Haluamme tapahtumassamme painottaa hip hop -kulttuurin juuria 70-luvun kotibileissä New Yorkissa. Tule juhlimaan kanssamme hyvän musiikin merkeissä ja nauttimaan katutanssista parhaimmillaan!”</p><p>Avoimet battlet, breaking 2 vs 2. Osallistujat paikalle klo 13, osallistuminen paikan päällä. Yleisölle suositellaan saapumista hieman myöhemmin, klo 15–16 aikaan. <br> <br>Tapahtuman kesto on noin 5 tuntia. Osallistavassa tanssitapahtumassa on monia eri vaiheita, mutta ei väliaikoja esitysten tapaan.</p><p>Ikärajaton, kaikille avoin ja maksuton.</p><p>IG: @kookoocee</p>",
                "sv": "<p>KOOKOOCEE fyller år och ordnar ett gatudansevenemang där huvudeventet är en breakdancetävling som sammanför nordiska gatudanskollektiv.</p><p>Det utlovas dans i världsklass, battles och ett öppet dansgolv. Till evenemanget kommer DJ:ar från utlandet som spelar noga utvald dansant rytmmusik från sällsynta grooves till moderna bangers. Öppna battles, breaking 2 vs 2. Deltagarna ska vara på plats kl. 13, anmälan på plats. Vi rekommenderar att publiken anländer lite senare, omkring kl. 15–16.</p>",
                "en": "<p>KOOKOOCEE, celebrating its anniversary, organises a street dancing event centred around a breakdance competition that brings together street dance communities from the Nordic countries.</p><p>The event will feature world-class dancing, battles and an open dance floor. During the event, DJs arriving all the way from abroad will play carefully-selected dance tunes ranging from rare grooves to contemporary bangers. Open battles, breaking 2 vs 2. Participants must arrive by 13:00, registration on location. The audience is recommended to arrive a little later, between 15:00 and 16:00.</p>"
            },
            "provider": null,
            "name": {
                "fi": "KOOKOOCEE Anniversary",
                "sv": "KOOKOOCEE Anniversary",
                "en": "KOOKOOCEE Anniversary"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59621/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60330",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3988,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:19:17.378585Z",
                    "last_modified_time": "2023-09-07T14:19:17.378607Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730393.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3988/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:19:16.979008Z",
            "last_modified_time": "2023-09-11T21:16:29.173084Z",
            "date_published": null,
            "start_time": "2023-08-05T10:00:00Z",
            "end_time": "2023-08-05T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/2FF52A0445322AAEF1F54E9B79FE7414/Sharad_Shakya_Group_Django_Collective_Helsinki",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/2FF52A0445322AAEF1F54E9B79FE7414/Sharad_Shakya_Group_Django_Collective_Helsinki",
                "en": "http://www.espanlava.fi/en/events/event/2FF52A0445322AAEF1F54E9B79FE7414/Sharad_Shakya_Group_Django_Collective_Helsinki"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jazz-Espa on harvinainen ilmiö, jopa kansainvälisesti: tällaista määrää korkean tason artistien ilmaiskonsertteja kaupungin sydämessä ei löydy muualta!",
                "sv": "Redan under 24 års tid har Finlands Jazzförbund i månadsskiftet juli-augusti arrangerat konsertserien Jazz-Espa, som koncentrerar sig på inhemsk jazzmusik.",
                "en": "Jazz-Espa is a rare treat even on an international level: this number of free concerts by such high-level artists in the heart of a city can’t be found anywhere else!"
            },
            "description": {
                "fi": "<p>Jazz-Espa on harvinainen ilmiö, jopa kansainvälisesti: tällaista määrää korkean tason artistien ilmaiskonsertteja kaupungin sydämessä ei löydy muualta!</p><p>Festivaaliohjelma sisältää 17 jazz-kokoonpanon konserttia – niin kokeellista kuin perinteistä soundia.</p><p><b>Lauantai 5. elokuuta 2023</p><p>Klo 13.00 | Sharad Shakya Group</b><br>Sharad Shakya Group on kitaristi Sharad Shakyan johtama jazzyhtye, joka sai alkuunsa vuonna 2012 kun Sharad oli opiskelemassa Pop & Jazz konservatoriossa Helsingissä. Yhtye julkaisi ensimmäisen levyn vuonna 2018 nimeltään Kathmansinki, eli Kathmandu ja Helsinki yhdistettynä.</p><p>Sharad Shakya Group tekee improvisoitua kitaramusiikkia seuraten jazz-traditiota. Alun perin Nepalista kotoisin oleva Sharad muutti Suomeen vuonna 2009 musiikin opiskelun vuoksi, joten yhtyeen musiikissa kuullaan myös silloin tällöin itämaisia vaikutteita.</p><p>Yhtye osoittaa suurta kunnioitusta Yhdysvalloista tulleelle jazzmusiikille, sen traditiolle ja kulttuurille. Samalla yhtye on myös halukas ylittämään rajoja ja sekoittamaan eri musiikkikulttuureja tehden siitä jazzia. Yhtye haluaa pysyä ajan tasalla ja kokeilla moderneja musiikkityylejä ja soundeja. Riippumatta musiikin genrestä ja tyylistä, Sharadille improvisointi on aina ollut tärkeää musiikissa. Hän pyrkii musiikin kautta keskustelemaan yhtyeen muusikoiden kanssa ja tekemään musiikista mielenkiintoista kuuntelijoille. Yhtyeen kanssa yhdessä soitetun musiikin kautta Sharadin tavoitteena on välittää tunteita kuuntelijoille.</p><p>Sharad Shakya – kitara, Kasper Halttunen – rummut, Mikael Saastamoinen – basso</p><p><b>Klo 14.30 | Django Collective Helsinki</b><br>Django Collective Helsinki on vuonna 2011 toimintansa aloittanut akustinen swing-yhtye, jonka ydinryhmä koostuu monissa liemissä keitetyistä ammattimuusikoista. Aki Haurun johtama yhtye on elävöittänyt kulttuurin kenttää jo yli kymmenen vuoden ajan juurevalla ja hyväntuulisella gypsy swingillä 1920-50 -luvuilta Django Reinhardtin ja Stéphane Grappellin tyyliin. DCH on erityisesti pääkaupungissamme tunnettu järjestämistään erityisen lämminhenkisistä, jo stadilaiseksi ilmiöksi muodostuneista vakioklubeistaan sekä jami-illoistaan. Ryhmä esittää myös omia sävellyksiään, joissa perinne sekoittuu raikkaalla ja kekseliäällä tavalla myöhempään jazzilliseen ilmaisuun. Yhtye on maineensa ohella määrätietoisesti luonut uutta, avointa ja positiivista livemusiikin kaupunkikulttuuria.</p><p>Laura Airola – viulu, Aki Hauru – kitara, Kalle Outila – kitara, Otto Porkkala – kitara, Juuso Rinta - kontrabasso</p>",
                "sv": "<p>Redan under 24 års tid har Finlands Jazzförbund i månadsskiftet juli-augusti arrangerat konsertserien Jazz-Espa, som koncentrerar sig på inhemsk jazzmusik.</p><p><b>Lördag 5 augusti 2023</p><p>Kl. 13.00 | Sharad Shakya Group</b><br>Sharad Shakya Group är en jazzensemble som leds av gitarristen Sharad Shakya och grundades 2012, då han studerade vid Pop & Jazz konservatoriet i Helsingfors. Ensemblen utgav sin första skiva Kathmansinki 2018. Sharad Shakya Group gör improviserad gitarrmusik i jazztraditionens fotspår. Ensemblen har stor respekt för jazzmusiken, dess traditioner och dess kultur med ursprung i USA. Samtidigt är gruppen villig att överskrida gränser och blanda olika musikkulturer och på så vis skapa jazz. Oberoende av musikgenre och stil har improvisation alltid varit en viktig del av musiken för Sharad. I den musik han spelar tillsammans med ensemblen strävar Sharad efter att förmedla känslor till lyssnarna.</p><p>Sharad Shakya – gitarr, Kasper Halttunen – trummor, Mikael Saastamoinen – bas</p><p><b>Kl. 14.30 | Django Collective Helsinki</b><br>Django Collective Helsinki är ett akustiskt swingband som spelat ihop sedan 2011. Kärntruppen består av mångsidiga proffsmusiker, och ensemblen har under ledning av Aki Hauru livat upp kulturfältet i över tio år med jordnära och solig gypsy swing i liknande stil som Django Reinhardt och Stéphane Grappelli på 1920–50-talet. Gruppen framför också sina egna kompositioner, där tradition på ett fräscht och uppfinningsrikt sätt möter senare tiders jazzigare uttryck. Ensemblen har gjort sig känd och målmedvetet skapat en ny, öppen och positiv livemusik-stadskultur.</p><p>Laura Airola – fiol, Aki Hauru – gitarr, Kalle Outila – gitarr, Otto Porkkala – gitarr, Juuso Rinta – kontrabas</p>",
                "en": "<p>Jazz-Espa is a rare treat even on an international level: this number of free concerts by such high-level artists in the heart of a city can’t be found anywhere else!</p><p>The festival features 17 jazz acts, both experimental styles and traditional sounds.</p><p><b>Saturday 5 August 2023</p><p>13.00 | Sharad Shakya Group</b><br>Led by guitarist Sharad Shakya, the Sharad Shakya Group is a jazz ensemble founded in 2012 during Sharad’s time as a student at the Pop & Jazz Conservatory. The group’s debut album Kathmasinki was released in 2018. Sharad Shakya Group plays improvised guitar music in the jazz tradition, showing profound respect towards the US-born genre, its conventions and culture. At the same time, the ensemble is willing to cross borders and to combine different musical styles, reshaping them into jazz. Regardless of the musical genre or style, Sharad has always considered improvisation to be an important part of his music. Through the music he plays together with his ensemble, he wishes to convey different emotions to his listeners.</p><p>Sharad Shakya – guitar, Kasper Halttunen – drums, Mikael Saastamoinen – bass</p><p><b>14.30 | Django Collective Helsinki</b><br>Founded in 2011, Django Collective Helsinki is an acoustic swing ensemble whose core members are all seasoned professional musicians. Led by Aki Hauru, the ensemble has been a real tonic for the Finnish cultural scene for more than a decade, their earthy feel-good gypsy swing calling back to the style of 1920s-1950s Django Reinhardt and Stéphane Grappelli. In addition, the group performs original compositions where tradition is mixed with a more recent jazz expression in a fresh and innovative way. As well as steadily building their public profile, the ensemble has been determined to make a contribution towards a more positive urban live music culture.</p><p>Laura Airola – viulu, Aki Hauru – kitara, Kalle Outila – kitara, Otto Porkkala – kitara, Juuso Rinta - kontrabasso</p>"
            },
            "provider": null,
            "name": {
                "fi": "Sharad Shakya Group | Django Collective Helsinki – Jazz-Espa",
                "sv": "Sharad Shakya Group | Django Collective Helsinki – Jazz-Espa",
                "en": "Sharad Shakya Group | Django Collective Helsinki – Jazz-Espa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60330/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60655",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3983,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:19:13.934128Z",
                    "last_modified_time": "2023-09-07T14:19:13.934159Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727060.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3983/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:19:13.249431Z",
            "last_modified_time": "2023-09-11T21:16:24.603258Z",
            "date_published": null,
            "start_time": "2023-08-03",
            "end_time": "2023-08-26",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1736C8B2143F132A93C862BDACBBB64C/Leikin_loppu_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Malmitalon galleriassa on elokuun ajan nähtävillä valokuva- ja esineteosten näyttely Leikin loppu."
            },
            "description": {
                "fi": "<p>Malmitalon galleriassa on elokuun ajan nähtävillä valokuva- ja esineteosten näyttely Leikin loppu.</p><p>Leikkiä on vähän kaikkialla myös aikuisten maailmassa. Leikki voi olla hyvin henkilökohtaista ja muuttua yllättäen joksikin aivan muuksi.</p><p>Teosten nimet antavat osviittaa niiden ajatusmaailmasta ja kuitenkin tulkinta on myös jokaisella katsojalla omansa. Leikin loppu ei aina tarvitse olla synkkä. Se voi olla myös mahdollisuus, uuden alku tai saada paremman muodon muualla. Leikin lopussa ollaan hyvin kiinni tässä ajassa.</p><p>Näyttely Malmitalon Galleriassa 3.-26.8.2023.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Leikin loppu – Kari Paajasen näyttely"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60655/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60582",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3979,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:19:11.468347Z",
                    "last_modified_time": "2023-09-07T14:19:11.468373Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735048.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:19:11.067658Z",
            "last_modified_time": "2023-09-11T21:16:23.575708Z",
            "date_published": null,
            "start_time": "2023-08-02",
            "end_time": "2023-08-30",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/37484DE6D04B3BE06B905D1538FBFE42/Elizabeth_San_Miguel_Suikaleita"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kanneltalon kahvilan vitriininäyttelyssä on elokuun ajan esillä Elizabeth San Miguelin \"Suikaleita\", kollaaseja geeliprinttimenetelmällä."
            },
            "description": {
                "fi": "<p>Kanneltalon kahvilan vitriininäyttelyssä on elokuun ajan esillä Elizabeth San Miguelin \"Suikaleita\", kollaaseja geeliprinttimenetelmällä.</p><p>Haagan Taideseura on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura. Lisätiedot https://www.haagantaideseura.com/</p><p>Kahvilan vitriinit</p>"
            },
            "provider": null,
            "name": {
                "fi": "Elizabeth San Miguel – Suikaleita – Haagan Taideseura"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60582/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59582",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3975,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:19:08.521119Z",
                    "last_modified_time": "2023-09-07T14:19:08.521142Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729061.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3975/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:19:08.298108Z",
            "last_modified_time": "2023-09-11T21:16:19.262752Z",
            "date_published": null,
            "start_time": "2023-08-01",
            "end_time": "2023-08-04",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9889B3C36E5DD39DDCA92ADDE304BE4B/Taikakoulu-elamysleiri",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/9889B3C36E5DD39DDCA92ADDE304BE4B/Upplevelselagret_Magiskolan",
                "en": "http://www.vuotalo.fi/en/events/event/9889B3C36E5DD39DDCA92ADDE304BE4B/Magic_School_Summer_Camp_Experience"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Sinut on kutsuttu oppilaaksi Taikakouluun!",
                "sv": "Du har blivit utvald som elev på Magiskolan!",
                "en": "You have been invited to become a pupil of the Taikakoulu magic school!"
            },
            "description": {
                "fi": "<p>Sinut on kutsuttu oppilaaksi Taikakouluun!</p><p>ti 1.8. – pe 4.8. klo 10–14</p><p>Leirillä saat kokea läpi koko lukuvuoden Taikakoulussa ja pääset osallistumaan taianomaisille oppitunneille. Pääset taiteilemaan, seikkailemaan ja kokemaan unohtumattoman elämyksen.<br>Varaa mukaan omat eväät. <br> <br>Ohjaaja: elämystuottaja Maaria Klemetti<br>Ikäsuositus: yli 9-vuotiaille<br>Ilmoittautumiset 10.4.2023 alkaen: salla.fornaro@hel.fi tai 09 3102 6154<br>Leiri on maksuton</p>",
                "sv": "<p>Du har blivit utvald som elev på Magiskolan!</p><p>tis. 1.8 - fre. 4.8 kl. 10-14</p><p>Under lägret får du uppleva ett helt läsår på Magiskolan och delta på magiska lektioner. Du får skapa konst, uppleva äventyr och göra andra oförglömliga saker.</p><p>Ta med dig en egen matsäck.</p><p>Åldersrekommendation: 9 år +<br>Förregistrering fr.o.m. 10.4: salla.fornaro@hel.fi eller 09 3102 6154</p>",
                "en": "<p>You have been invited to become a pupil of the Taikakoulu magic school!</p><p>At the camp, you will get to experience an entire school year of magic school and attend magical lessons. You will have the opportunity to create art, adventure and have an unforgettable experience.</p><p>Ager recommendation: 9+<br>Registration starting from 10 April: salla.fornaro@hel.fi or 09 3102 6154</p>"
            },
            "provider": null,
            "name": {
                "fi": "Taikakoulu-elämysleiri",
                "sv": "Upplevelselägret Magiskolan",
                "en": "Magic School Summer Camp Experience"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59582/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59861",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3974,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:19:07.931709Z",
                    "last_modified_time": "2023-09-07T14:19:07.931732Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730613.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3974/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:19:07.253099Z",
            "last_modified_time": "2023-09-11T21:16:19.056494Z",
            "date_published": null,
            "start_time": "2023-08-01",
            "end_time": "2023-09-02",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/FB24629BB0156E329B81E8F9AC3CD768/Kyosti_Parkinen_Maalauksia",
                "sv": "http://www.stoa.fi/sv/evenemang/event/FB24629BB0156E329B81E8F9AC3CD768/Kyosti_Parkinen_Malningar",
                "en": "http://www.stoa.fi/en/events/event/FB24629BB0156E329B81E8F9AC3CD768/Kyosti_Parkinen_Paintings"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kyösti Pärkisen maalauksia Stoan parvigalleriassa 1.8.–2.9.2023. Taiteilijatapaaminen to 31.8. klo 18.00.",
                "sv": "Kyösti Pärkinens målningar i Stoas balkonggalleri på andra våningen från 1 augusti till 2 september. Konstnärsträff den 31 augusti kl. 18.00.",
                "en": "Kyösti Pärkinen's paintings in Stoa's second floor balcony gallery from 1 August until 2 September. Artist meeting on 31 August at 18.00."
            },
            "description": {
                "fi": "<p>Kyösti Pärkisen maalauksia Stoan parvigalleriassa 1.8.–2.9.2023. Taiteilijatapaaminen to 31.8. klo 18.00.</p>",
                "sv": "<p>Kyösti Pärkinens målningar i Stoas balkonggalleri på andra våningen från 1 augusti till 2 september. Konstnärsträff den 31 augusti kl. 18.00.</p>",
                "en": "<p>Kyösti Pärkinen's paintings in Stoa's second floor balcony gallery from 1 August until 2 September. Artist meeting on 31 August at 18.00.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Kyösti Pärkinen: Maalauksia",
                "sv": "Kyösti Pärkinen: Målningar",
                "en": "Kyösti Pärkinen: Paintings"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59861/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59746",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3971,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:19:06.018999Z",
                    "last_modified_time": "2023-09-07T14:19:06.019023Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727444.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3971/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:19:05.817142Z",
            "last_modified_time": "2023-09-11T21:16:18.479131Z",
            "date_published": null,
            "start_time": "2023-07-31",
            "end_time": "2023-08-04",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E37114E7C9FFF529F5D6D1FD87A0813E/TAYNNA_Metsan_taikaa_ja_ihmeellisia_taidepuita_Kantsussa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E37114E7C9FFF529F5D6D1FD87A0813E/FULLBOKAT_Skogens_magi_och_underliga_konsttrad_i_Gamlasgarden",
                "en": "http://www.kanneltalo.fi/en/events/event/E37114E7C9FFF529F5D6D1FD87A0813E/FULLY_BOOKED_Environmentally_themed_summer_art_camps_for_children_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kesätaideleirien teemana ovat metsät ja puut. Mitä kaikkea ne meille merkitsevät, mitä tiedämme metsän ihmeistä?",
                "sv": "Temat för sommarkonstlägren är skogar och träd. Vad betyder de för oss, vad vet vi om skogens under?",
                "en": "The summer art camps are themed around forests and trees. What do they mean to us, and what do we know about the wonders of the forest?"
            },
            "description": {
                "fi": "<p>Kesätaideleirien teemana ovat metsät ja puut. Mitä kaikkea ne meille merkitsevät, mitä tiedämme metsän ihmeistä?</p><p>Seikkailemme tarinoiden ja satujen puiden maailmaan ja tutustumme metsien asukkaisiin, sekä kuviteltuihin että oikeisiin. Metsissä usein todellisuus on tarua ihmeellisempää.</p><p>Taideleireillä työskennellään luovan ilmaisun keinoin ja omaa ympäristöä havainnoiden. Samalla pohditaan, miten oma tekeminen liittyy ja vaikuttaa kaikkeen muuhun ympärillä olevaan. Tutustumme erilaisiin piirtämisen ja maalaamisen perustekniikoihin, ja luonnosta saataviin materiaaleihin. Piirrämme lähimetsässä ja toteutamme katoavat ympäristöinstallaatiot. Leiriviikolla tehdään kokopäiväretki Seurasaareen.</p><p>Opettajana TaM, kuvataiteilija Sade Hiidenkari. Taideleirit järjestetään yhteistyössä Helsingin Taitelijaseuran kanssa.</p><p>Leiri 1: ma–pe 5.–9.6. klo 10–14 <br>Leiri 2: ma–pe 12.–16.6. klo 10–14  <br>Leiri 3: ma–pe 31.7.–4.8. klo 10–14</p><p>Taideleirit ovat maksuttomia, mutta edellyttävät sitoutumista koko viikon työskentelyyn. Kullekin taideleirille otetaan 10 oppilasta. Omat eväät mukaan!</p><p>Ilmoittautumiset 11.4. alkaen: liisa.paatsalo@hel.fi, 040 7522 290</p><p>Ikäsuositus: 7–10-vuotiaat  <br>Opetuspaikka: Kanneltalo, Klaneettitie 5, 00420 Helsinki<br>Opetuskieli: suomi</p>",
                "sv": "<p>Temat för sommarkonstlägren är skogar och träd. Vad betyder de för oss, vad vet vi om skogens under?</p><p>På konstlägren arbetar deltagarna med det kreativa uttryckets medel och genom att iaktta sin egen miljö. Samtidigt reflekterar de över hur det de själv gör förhåller sig till och påverkar allt annat omkring en. Vi bekantar oss med olika grundläggande tecknings- och målningstekniker samt med material som fås från naturen. Vi tecknar i den närliggande skogen och skapar förgängliga miljöinstallationer. Under lägerveckan gör vi en heldagsutflykt till Fölisön.</p><p>Lärare: filosofie magister i konstvetenskap, bildkonstnär Sade Hiidenkari. Konstlägren ordnas i samarbete med Konstnärsgillet i Helsingfors.</p><p>Konstlägren är gratis, men deltagarna måste förbinda sig till att arbeta hela veckan. Vi har plats för högst tio elever på varje konstläger. Ta med dig en egen matsäck!</p><p>Registrering fr.o.m. 11.4: liisa.paatsalo@hel.fi, 040 7522 290</p><p>Åldersrekommendation: 7-10 år<br>Språk: finska</p>",
                "en": "<p>The summer art camps are themed around forests and trees. What do they mean to us, and what do we know about the wonders of the forest?</p><p>Art camps are a way of working with creative expression and observing your own environment. At the same time, you can consider how what you do relates to and affects everything else around you. We will learn about different basic techniques of drawing and painting as well as about materials available from nature. We will draw in the local forest and make disappearing environmental installations. The camp week includes a day trip to Seurasaari.</p><p>Taught by visual artist Sade Hiidenkari, M.A. The art camps are organised in cooperation with the Helsinki Artists’ Association.</p><p>They are free of charge but require a commitment to work for the whole week. Each art camp takes 10 students. Bring your own lunch!</p><p>Registration starting trom 11 April: liisa.paatsalo@hel.fi, 040 7522 290</p><p>Age recommendation: 7-10<br>Language: Finnish</p>"
            },
            "provider": null,
            "name": {
                "fi": "TÄYNNÄ | Metsän taikaa ja ihmeellisiä taidepuita Kantsussa – Lasten ympäristöaiheiset kesätaideleirit",
                "sv": "FULLBOKAT | Skogens magi och underliga konstträd i Gamlasgården – Sommarkonstläger med miljötema för barn",
                "en": "FULLY BOOKED | Environmentally themed summer art camps for children"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59746/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60324",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3970,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:19:05.522429Z",
                    "last_modified_time": "2023-09-07T14:19:05.522461Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730299.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3970/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:19:05.065267Z",
            "last_modified_time": "2023-09-11T21:16:18.177258Z",
            "date_published": null,
            "start_time": "2023-07-28T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A5A7B8FFCBA3C621643DCAD1DBBBEE15/Opal_Ocean_AUS_",
                "en": "http://www.espanlava.fi/en/events/event/A5A7B8FFCBA3C621643DCAD1DBBBEE15/Opal_Ocean_AUS_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Opal Oceanin musiikki yhdistää taiturimaista tekniikkaa, hypnotisoivaa akustista ääntä ja psykedeelisiä vivahteita."
            },
            "description": {
                "fi": "<p>Opal Oceanin musiikki yhdistää taiturimaista tekniikkaa, hypnotisoivaa akustista ääntä ja psykedeelisiä vivahteita.</p><p>Vuonna 2015 australialaiset Alex Champ ja Nadav Tabak herättivät kuulijoiden mielenkiinnon Terra-EP:llään. Tästä alkoi ainutlaatuinen matka kohti menestystä.</p><p>Ensimmäinen single \"J.A.M.\" sai valtavan suosion ja yli 30 miljoonaa toistokertaa eri sosiaalisen median alustoilla. Tämä osoitti heti, että Alex ja Nadav olivat luomassa jotain erityistä.</p><p>Vuonna 2016 he julkaisivat monumentaalisia ja kiehtovia kappaleita sisältävän debyyttialbuminsa Lost Fables. Albumin ansiosta heidän nimensä vakiintui maailmanlaajuisesti. Vuonna 2020 julkaistiin toinen albumi The Hadal Zone.</p>",
                "en": "<p>After tantalizing listeners with a taste of what they were capable of in 2015 with the release of their Terra EP, the Australia- based duo of Alex Champ & Nadav Tabak continued to chart their own unique & extraordinary journey towards success.</p><p>With the incredible response to their lead single “J.A.M.” going viral and racking up an astounding thirty-million hits across their various social media platforms online, it was instantly clear that Alex & Nadav were on to something special with their music as Opal Ocean, and they immediately set forth to craft a professional career & legacy that they could proudly call their own.</p><p>Through their intricate technique and intensely mesmerizing, psychedelically-tinged spin on the acoustic sound, Opal Ocean unleashed a monumental set of captivating songs for their full- length debut record Lost Fables in 2016, which would go on to establish their name across the globe as they toured through Canada, New Zealand, and Europe.</p><p>From significant highlights & achievements along the way like their crowd-funded single “Mexicana,” being featured at festivals, doing interviews, receiving critical acclaim from all corners of the map, and the release of their second album The Hadal Zone in 2020 – Opal Ocean surged throughout the scene with music that spoke volumes on behalf of their chemistry & authenticity.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Opal Ocean (AUS)",
                "en": "Opal Ocean (AUS)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60324/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}