Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&keyword=yso%3Ap4354&page=201
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 7045,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=202",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=200"
    },
    "data": [
        {
            "id": "kulke:61200",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:46/?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/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7537,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-02T14:13:18.598836Z",
                    "last_modified_time": "2024-02-06T13:23:41.996789Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739055.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7537/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-02T14:13:18.579107Z",
            "last_modified_time": "2024-06-12T05:13:21.673558Z",
            "date_published": null,
            "start_time": "2024-05-18T07:00:00Z",
            "end_time": "2024-08-24T13: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D6A55AB6E545C84C2E79F2B7D80E7CB2/Christelle_Mas_Superluonto",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D6A55AB6E545C84C2E79F2B7D80E7CB2/Christelle_Mas_Supernatur",
                "en": "http://www.annantalo.fi/en/events/event/D6A55AB6E545C84C2E79F2B7D80E7CB2/Christelle_Mas_Supernature"
            },
            "provider": null,
            "description": {
                "fi": "<p>Näyttelyssä luonto kohtaa teknologian: Voiko hyönteisellä olla robotin jalat? Tai jonkin koneen kädet? Miltä tulevaisuuden ötökät näyttävät?</p><p>Kuvataiteilija Christelle Masin Superluonto-näyttelyssä uppoudutaan uudenlaiseen maailmaan, jossa pohditaan taideteoksien avulla miten muuttuva ilmasto ja teknologian kehitys vaikuttavat luonnon monimuotoisuuteen.</p><p>Evoluutio vie meitä jatkuvasti eteenpäin, mutta se ei aina pysy ilmaston nopean muuttumisen mukana. Jotkin lajit selviytyvät, toiset eivät. Näyttelyssä mietitään muun muassa sitä, mitä kaikkea hyönteiset tarvitsevat selvitäkseen ilmastonmuutoksesta, ja kuinka teknologian kehittyminen voi näkyä luonnossa tulevaisuudessa.</p><p>Voisivatko näyttelyn teokset kuvata jopa täysin uudenlaisia lajeja?</p><p>Näyttelyn teokset on toteutettu kollaasitekniikalla, joissa yhdistellään videoita ja valokuvia erilaisista koneista, roboteista sekä mikroskoopilla kuvatuista hyönteisistä ja käärmeistä. Lopputuloksena on eri muotoisia, eri värisiä ja mielikuvitusta kutkuttavia taideteoksia, jotka muistuttavat jostain entuudestaan tutusta asiasta luonnossa.</p><p>Ihminen-eläin-suhde on monimutkainen, monisäikeinen ja muutoksessa, mutta ehkä se myös ohjaa suhtautumistamme tulevaisuuden olioihin.</p><p><b>Näyttelyn avajaiset la 18.5. klo 13.30 alkaen - Tervetuloa!</b><br>Avajaiset ovat IKI-TIK TIKI-TAK -tapahtumapäivän yhteydessä - päivän tarkempi ohjelma löytyy <a href=\"https://www.annantalo.fi/fi/tapahtumat/event/6005AB95CEA94AF2CA6B1288E27D59BC/IKI-TIK_TIKI-TAK_-tapahtumap_iv_\"><b>täältä</b></a>.</p><p><b>Christelle Mas</b> (s. 1984) on ranskalainen taiteilija, joka asuu ja työskentelee parhaillaan Oulussa. Mas työskentelee monimuotoisesti valokuvamateriaalin kanssa käyttäen sitä esimerkiksi kollaasissa ja installaatiossa. Hän on tutkinut valokuvausta mediana ja teknologiana sekä totuuden käsitettä suhteessa valokuvaan. Hän luo usein kiehtovia maailmoja, joissa tiede ja mytologia sekä luonnollinen ja keinotekoinen kohtaavat.</p><p>Näyttely on valittu ohjelmistoon avoimen haun kautta. Annantalon ensimmäiseen avoimeen hakuun keväällä 2023 tuli yli 120 hakemusta. Niiden joukosta lapsista ja henkilökunnasta koostuva raati valitsi näyttelykokonaisuuden eteläpäädyn galleriaan.</p><p>Näyttelyä on tukenut Oulun kaupunki sekä Ranskan instituutti Helsingissä.</p>",
                "sv": "<p>I utställningen möts naturen och tekniken: Kan en insekt ha robotben? Kan en maskin ha armar? Hur ser framtidens insekter ut?</p><p>Bildkonstnären Christelle Mas utställning Supernatur fördjupar sig i en ny värld där man med hjälp av konstverk funderar över hur det föränderliga klimatet och den tekniska utvecklingen påverkar den biologiska mångfalden.</p><p><b>Christelle Mas</b> (född 1984) är en fransk konstnär som för närvarande bor och arbetar i Uleåborg. Mas arbetar mångsidigt med fotografiskt material exempelvis i collage och installationer.</p><p>Utställningen har valts till repertoaren genom öppen ansökan. Över 120 ansökningar inkom till Annegårdens första öppna ansökan våren 2023. Bland dessa valde en jury bestående av barn och personal en utställningshelhet till galleriet i södra gaveln.</p>",
                "en": "<p>In the exhibition nature meets technology: Can an insect have the legs of a robot? Or mechanical arms? What will insects look like in the future?</p><p>Visual artist Christelle Mas’s Supernature exhibition immerses the visitor into a new kind of world where artworks are used to reflect on how the changing climate and technological development affect biodiversity.</p><p><b>Christelle Mas</b> (born 1984) is a French artist who currently lives and works in Oulu. Mas uses photographs in a variety of ways in collages and installations, for example.</p><p>The exhibition was selected through an open call procedure. More than 120 applications were submitted for the first open call for Annantalo in the spring of 2023. A jury consisting of children and staff selected the artworks for the exhibition at the southern end of the building.</p>"
            },
            "short_description": {
                "fi": "Näyttelyssä luonto kohtaa teknologian: Voiko hyönteisellä olla robotin jalat? Tai jonkin koneen kädet? Miltä tulevaisuuden ötökät näyttävät?",
                "sv": "I utställningen möts naturen och tekniken: Kan en insekt ha robotben? Kan en maskin ha armar? Hur ser framtidens insekter ut?",
                "en": "In the exhibition nature meets technology: Can an insect have the legs of a robot? Or mechanical arms? What will insects look like in the future?"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Christelle Mas: Superluonto",
                "sv": "Christelle Mas: Supernatur",
                "en": "Christelle Mas: Supernature"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61200/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63291",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:669/?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:p21812/?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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 82047,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-04T08:13:16.278768Z",
                    "last_modified_time": "2024-04-04T08:13:16.278784Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746445.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/82047/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-04T08:13:16.235599Z",
            "last_modified_time": "2024-06-12T05:13:19.869138Z",
            "date_published": null,
            "start_time": "2024-05-14T14:00:00Z",
            "end_time": "2024-05-14T16: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/02329C27F1171FB6325342BD31CD35FB/Husfluga_ljusfluga_och_Rattan_Bettan_och_Masken_Baudelaire_-workshop",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/02329C27F1171FB6325342BD31CD35FB/Husfluga_ljusfluga_och_Rattan_Bettan_och_Masken_Baudelaire_-workshop"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa. Tiistain ohjelma on ruotsinkielinen. Ohjelmassa on tanssiesitys ja työpaja.</p><p><b>KATVE Company: Lamppukärpänen</b><br>klo 17-17.30<br>Kaikenikäisille<br>Annantalon 2.kerros. <br>Ei ennakkoilmoittautumista.</p><p>Lamppukärpänen on tanssiteos maailman isoimmasta kärpäsestä, joka rakastaa kirjoja ja kaikenlaisia hyönteisiä. Maailmassa on ällistyttävä määrä ötököitä kuten esimerkiksi siira, lymymuurahainen, kirjanpainaja, papupiilokas, harsokorento, saksanturilainen, hyppyhäntäinen, kirjatäi ja niin edelleen!</p><p>Pienet hyönteiset pyörittävät maailmaa omalla toiminnallaan; niiden ansiosta kasvit kantavat hedelmää ja ihmiset saavat syödäkseen - eikä maailma tai varsinkaan ihmiset tulisi toimeen ilman pieniä hyönteisiä. Sen tähden Lamppukärpänen lukee ja tutustuu kaikkeen mahdolliseen. Ja kyllä hänkin on sen verran paljon hyönteinen, että saa kokea kiehtovan muodonmuutoksen kelta-vihreästä toukasta komeaksi kärpäseksi.</p><p>Koreografia ja tanssi: Heidi Masalin<br>Runot: Eppu Nuotio<br>Äänisuunnittelu: Olli Havu<br>Äänitehosteet: YLE arkisto, freesound /RTB45, Olli Havu<br>Runojen lausunta (suomi): Olli Havu, Aaron Frösén, Emilia Frösén, Rasmus Frösén, Irene Havu, Hilla Havu<br>Runojen käännös ruotsiksi: Henrik Huldén<br>Runojen lausunta (ruotsi): Henrik Huldén Aaron Frösén, Emilia Frösén, Rasmus Frösén, Irene Havu, Hilla Havu<br>Tuotanto: KATVE [blind spot] yhteistyössä Hanasaaren ruotsalais-suomalaisen Kulttuurikeskuksen kanssa<br>Teoksen tukijat: Helsingin kaupunki, Taiteen Edistämiskeskus, Opetus- ja kulttuuriministeriö</p><p><b>Työpaja: Baudeliero ja Mette-rotta</b><br>Klo: 17.30-19<br>Annantalon 2. kerros<br>Ikäsuositus 5+<br>Ei ennakkoilmoittautumista.</p><p>Tervetuloa runolliseen työpajaan! Luemme yhdessä runoja Annika Sandelinin teoksesta ”Baudeliero ja Mette-rotta”. Työpajan aikana keskustelemme runoista ja luomme niitä itse.</p><p>Lasten lukemiseen keskittyvä hanke Pohjoismainen kirja-ahmatti tarjoaa opetusmateriaalia yli 50 pohjoismaiseen kuvakirjaan osoitteessa https://bokslukaren.org/fi/. Tästä laajasta joukosta inspiraatiota ja lukemiseen innostavaa materiaalia löydät myös Annika Sandelinin hahmot Baudelieron ja Mette-rotan.</p><p>Pohjoismainen kulttuuripiste <br>Pohjoismainen kulttuuripiste on Helsingissä toimiva virallinen pohjoismainen kulttuurilaitos, jolla on toimintaa koko Pohjolassa. Pohjoismainen kulttuuripiste pyrkii vahvistamaan kulttuurialan yhteistyötä ja lisäämään pohjoismaisen kulttuurin tunnettavuutta Suomessa. Osana tätä työtä järjestämme lapsille ja nuorille tapahtumia ja aktiviteetteja tarjotaksemme uusia elämyksiä ja mahdollisuuksia tutustua pohjoismaiseen kulttuuriin.</p>",
                "sv": "<p>Välkommen till Annegården under Barnkulturens festvecka, då vi firar litteratur, läsning och lyssnande! Jubileumsveckans kärna är poesirummet Kirsi Kunnas 100 år, med program under hela veckan. På tisdagen utlovas det dans och en verkstad. Tisdagens program är på svenska.</p><p>KATVE [blind spot] Company: Husfluga, ljusfluga<br>kl. 17-17.30<br>För alla åldrar<br>Annegårdens 2. våningen</p><p>Lär vi känna världens största fluga och hör Eppu Nuotions charmiga insektsrim.</p><p>Husfluga, ljusfluga är ett dansstycke om världens största fluga, som älskar böcker och alla sorters insekter. Det finns ett fantastiskt antal insekter i världen, som gråsugga, kompostmyra, barkborre, bönbagge, guldögonslända, ollonborre, hoppstjärt, bokmal och så vidare!</p><p>De små insekterna driver världen med sin insats; tack vare dem bär plantor frukt som människor äter – och inte skulle världen, eller speciellt människan, klara sig utan insekter. Därför läser och bekantar sig Husflugan med allt möjligt. Och visst är Husflugan så pass mycket insekt att den får uppleva förvandlingen från en gulgrön larv till en ståtlig fluga.</p><p>Koreografi och dans: Heidi Masalin<br>Dikter: Eppu Nuotio<br>Ljuddesign: Olli Havu<br>Ljudeffekter: YLE arkiv, freesound /RTB45, Olli Havu<br>Översättning av dikterna till svenska: Henrik Huldén<br>Recitation av dikter: Henrik Huldén Aaron Frösén, Emilia Frösén, Rasmus Frösén, Irene Havu, Hilla Havu<br>Fo­tog­ra­fi: Tanja Illukka<br>Produktion: KATVE [blind spot] Company med Kulturcentrum Hanaholmen<br>Produktion stöd: Helsingfors stad, Konstfrämjande centrum, Undervisnings- och kulturministeriet</p><p>Workshop: Råttan Bettan och Masken Baudelaire<br>Kl. 17.30-19<br>Annegårdens 2.vånigen<br>Åldersrekommendation: För 5 år och uppåt</p><p>Välkommen med på en poesistund med workshop! Vi läser dikter ur ”Råttan Bettan och Masken Baudelaire” av Annika Sandelin. Vi pratar om dikterna och kommer också att skapa egna dikter.</p><p>Det läsfrämjande projektet Den nordiska bokslukaren har skapat pedagogiskt material till över 50 nordiska bilderböcker som finns tillgängliga på https://bokslukaren.org/. Du hittar inspirationsfrågor även till Råttan Bettan och Masken Baudelaire på webbplatsen.</p><p>Om Nordisk kulturkontakt<br>Nordisk kulturkontakt (NKK) är en officiell nordisk kulturinstitution i Helsingfors med verksamhet i hela Norden. NKK arbetar för att förstärka det nordiska samarbetet inom kulturfältet och öka kännedomen om Norden i Finland. Detta görs genom att bland annat arrangera evenemang och aktiviteter för barn och unga, vilka ger nya upplevelser samt möjligheter att ta del av nordisk kultur.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa. Tiistain ohjelma on ruotsinkielinen. Ohjelmassa on tanssiesitys ja työpaja.",
                "sv": "Välkommen till Annegården under Barnkulturens festvecka, då vi firar litteratur, läsning och lyssnande! Jubileumsveckans kärna är poesirummet Kirsi Kunnas 100 år, med program under hela veckan. På tisdagen utlovas det dans och en verkstad. Tisdagens program är på svenska."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Husfluga, ljusfluga och Råttan Bettan och Masken Baudelaire -workshop – Lastenkulttuurin juhlaviikko",
                "sv": "Husfluga, ljusfluga och Råttan Bettan och Masken Baudelaire -workshop – Barnkulturens festvecka"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63291/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61199",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6172,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T11:13:42.674198Z",
                    "last_modified_time": "2024-02-06T13:23:40.876470Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738964.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6172/?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-11-23T11:13:42.651889Z",
            "last_modified_time": "2024-06-12T05:13:18.626506Z",
            "date_published": null,
            "start_time": "2024-05-10",
            "end_time": "2024-08-24",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/25247D650BFFD167A8295F5FF8885BDB/Kirsi_Kunnas_Runo-olohuone",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/25247D650BFFD167A8295F5FF8885BDB/Kirsi_Kunnas_Diktvardagsrum",
                "en": "http://www.annantalo.fi/en/events/event/25247D650BFFD167A8295F5FF8885BDB/Kirsi_Kunnas_Poetry_Lounge"
            },
            "provider": null,
            "description": {
                "fi": "<p>Istu sohvalle, ota kirja ja anna Haitulan viedä mukanaan! Runo-olohuone on galleriassa sijaitseva runojen valtakunta, soppi, jossa voit uppoutua tarinoihin.</p><p>Kirjailija <b>Kirsi Kunnaksen</b> (1924–2021) 100-vuotisjuhlaa vietetään vuonna 2024. Valtakunnallisen juhlavuoden keskiössä ovat suomalainen lastenrunous, leikki, lukuilo ja lasten kulttuurinen toimijuus. Runo-olohuone pohjautuu Kunnaksen lastenrunoihin ja kuvittaja <b>Jani Ikosen</b> kuviin.</p><p>Ensimmäinen Runo-olohuone avautui Kulttuurikeskus PiiPoossa helmikuussa 2024. Runojen ja kuvitusten lisäksi näyttelyn perustana ovat lasten ja taiteilijoiden yhdessä suunnittelemat runotehtävät. Näyttelykonsepti kiertää eri kokoisilla toteutuksilla lastenkulttuurikeskuksissa, kirjastoissa ja muissa kulttuuritiloissa vuosina 2024–2025.</p>",
                "sv": "<p>Sätt dig på soffan, ta en bok och låt Haitula föra dig till sin värld! Diktvardagsrummet är ett poesirike i galleriet, en hörna där du kan fördjupa dig i berättelser.</p><p>Författaren Kirsi Kunnas (1924–2021) 100-årsjubileum firas 2024. I hjärtat av det riksomfattande jubileumsåret ligger den finländska barnpoesin, leken, läsglädjen och barnens kulturella handlingskraft. Diktvardagsrummet är baserat på Kunnas barndikter och bilder av illustratören <b>Jani Ikonen</b>.</p>",
                "en": "<p>Take a seat on the sofa, grab a book and let Haitula whisk you away! The Poetry Lounge is a realm of poetry inside a gallery, a place where you can immerse yourself in stories.</p><p>The 100th anniversary of author Kirsi Kunnas (1924–2021) will be celebrated in 2024. At the heart of the national centenary year are Finnish children’s poetry, play, the joy of reading and children’s cultural agency. The Poetry Lounge is based on Kunnas’ children’s poems and illustrator <b>Jani Ikonen’s</b> illustrations.</p>"
            },
            "short_description": {
                "fi": "Istu sohvalle, ota kirja ja anna Haitulan viedä mukanaan! Runo-olohuone on galleriassa sijaitseva runojen valtakunta, soppi, jossa voit uppoutua tarinoihin.",
                "sv": "Sätt dig på soffan, ta en bok och låt Haitula föra dig till sin värld! Diktvardagsrummet är ett poesirike i galleriet, en hörna där du kan fördjupa dig i berättelser.",
                "en": "Take a seat on the sofa, grab a book and let Haitula whisk you away! The Poetry Lounge is a realm of poetry inside a gallery, a place where you can immerse yourself in stories."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kirsi Kunnas: Runo-olohuone – Toiminnallinen näyttely runoista ja tarinoista",
                "sv": "Kirsi Kunnas: Diktvardagsrum – Funktionell utställning av dikter och berättelser",
                "en": "Kirsi Kunnas: Poetry Lounge – A functional exhibition about poems and stories"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61199/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61198",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:46/?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/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6170,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T11:13:42.306918Z",
                    "last_modified_time": "2024-02-06T13:23:34.066249Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738846.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6170/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-23T11:13:42.266608Z",
            "last_modified_time": "2024-06-12T05:13:09.273361Z",
            "date_published": null,
            "start_time": "2024-04-13",
            "end_time": "2024-08-31",
            "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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DD81682187C878D28ECDF1E488D85AB2/Liikkuva_laboratorio",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/DD81682187C878D28ECDF1E488D85AB2/Rorliga_laboratoriet",
                "en": "http://www.annantalo.fi/en/events/event/DD81682187C878D28ECDF1E488D85AB2/Moving_Laboratory"
            },
            "provider": null,
            "description": {
                "fi": "<p>Miten liikettä voi kuvata? Tapahtuuko nappia painamalla jotain? Mitä tarkoittaa kineettinen? Entä mikä on mobile?</p><p>Liikkuva laboratorio tutkii! Kaikenlainen käyminen, kulkeminen, tutina ja liitely, mekaaninen tai muunkaltainen ovat suurennuslasin alla. Näyttelyssä perehdytään taiteeseen, joka on tavalla tai toisella liikkeessä tai saanut innoituksensa liikkeestä.</p><p>Syksyllä 2023 Ihmeellinen kone -näyttely käynnisti Annantalolla liikkeen ja vuorovaikutuksen teeman, joka nyt saa jatkoa Liikkuvan laboratorion muodossa.</p><p>Mukana näyttelyssä on KITA – Kineettisen taiteen talo yhdessä Annantalon oppilasryhmien, Lasten ja nuorten säätiön sekä Helsingin katutaidetoimiston nuorten kanssa.</p><p>Näyttelyn avajaisia vietetään 13.4. klo 11:15 Barnfesten-tapahtuman yhteydessä. Tervetuloa mukaan!</p>",
                "sv": "<p>Hur beskriver man en rörelse? Händer det nåt om du trycker på knappen? Vad betyder kinetisk? Vad är en mobil?</p><p>Det rörliga laboratoriet undersöker! Alla slags promenerande, vandring, skakande och flyg, mekaniska eller andra är under förstoringsglaset. Utställningen gör oss bekanta med konst som på ett eller annat sätt är i rörelse eller har fått sin inspiration från rörelse.</p>",
                "en": "<p>How can I describe movement? Will something happen if I push the button? What does kinetic mean? And what is mobile?</p><p>The Moving Laboratory explores! All kinds of movement, walking, trembling and gliding, mechanical or otherwise, are under a magnifying glass. The exhibition explores art that is, in one way or another, in motion or inspired by movement.</p>"
            },
            "short_description": {
                "fi": "Miten liikettä voi kuvata? Tapahtuuko nappia painamalla jotain? Mitä tarkoittaa kineettinen? Entä mikä on mobile?",
                "sv": "Hur beskriver man en rörelse? Händer det nåt om du trycker på knappen? Vad betyder kinetisk? Vad är en mobil?",
                "en": "How can I describe movement? Will something happen if I push the button? What does kinetic mean? And what is mobile?"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Liikkuva laboratorio – Näyttely liikkeestä ja vuorovaikutuksesta",
                "sv": "Rörliga laboratoriet – Utställning om rörelse och växelverkan",
                "en": "Moving Laboratory – An exhibition about movement and interaction"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61198/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63479",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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: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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150840,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-25T15:13:55.720529Z",
                    "last_modified_time": "2024-04-25T15:13:55.720548Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737099.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150840/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-25T15:13:55.665757Z",
            "last_modified_time": "2024-06-11T13:12:43.256836Z",
            "date_published": null,
            "start_time": "2024-06-12T07:00:00Z",
            "end_time": "2024-06-12T16: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AD4E9E107013F50CEA11F8F91F3303F6/Helsinki-paiva_Vuotorilla",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/AD4E9E107013F50CEA11F8F91F3303F6/Helsingforsdagen_i_Nordtorget",
                "en": "http://www.vuotalo.fi/en/events/event/AD4E9E107013F50CEA11F8F91F3303F6/Helsinki_Day_at_Vuotalo_Square"
            },
            "provider": null,
            "description": {
                "fi": "<p>Helsinki-päivänä Vuosaaren iloiselle torille kokoontuu niin pienet kuin suuretkin kaupunkilaiset nauttimaan vauhdikkaasta musiikista ja mahtavasta tunnelmasta!</p><p><b>OHJELMA</b></p><p><b>Klo 10 ja 12<br>Jo's Punch & Judy Show – Nukketeatteria englanniksi</b></p><p>Hauskuutta niin isoille kuin pienillekin lapsille! Aitoa englantilaista käsinukketeatteria, jossa esiintyvät perinteinen Mr. Punch ja monet muut vanhat tutut. Luvassa on hulvatonta pelleilyä! Yleisökin saa osallistua nopeatempoiseen komedianäytökseen. Esitys sopii parhaiten perheille ja 3–11-vuotiaille lapsille.</p><p><b>klo 14 – Mimi ja Kuku</b></p><p>Muusikko Mimi ja hassu pelleleijona Kuku ovat televisiosta tutut hahmot. Mimin ja Kukun liikunnallisessa ja viihdyttävässä esityksessä lapsi kokee onnistumisen ja oivaltamisen riemua. Jokainen lapsi saa olla esityksen sankari omalla tavallaan.</p><p>Vuorovaikutteiset esitykset on erityisesti suunniteltu vahvistamaan pienen ihmisen itsetuntoa, sekä tunne- ja kaveritaitoja. Esityksessä on iloisen vauhdikas meininki, paljon tanssia, tehtäviä, nukketeatteria sekä taikatemppuja. Esitys sopii kaikenikäisille!</p><p><b>klo 16 – Unelmien Helsinki - Tomi Pulkkinen (ruotsiksi) </b></p><p>Tule nauttimaan helsinkiläisten luomista uusista lauluista taiteilija Tomi Pulkkisen vetämissä laulupajoissa!</p><p>Tomi Pulkkinen on pitänyt laulupajoja Helsingissä tänä keväänä. Laulujen lähtökohtana ovat olleet osallistujien lempipaikat, mutta mielikuvitus on virrannut vapaasti, ilman rajoja. Työpajojen osallistujat ovat olleet eri-ikäisiä; luovuus yhdistää meitä kaikkia, myös kieli- ja kulttuuritaustasta riippumatta! Nyt Tomi esittää työpajoissa syntyneitä lauluja, tule mukaan, kuuntele ja laula mukana!</p><p>Tomi Pulkkinen tunnetaan muun muassa Suomen ensimmäisenä kuukausipalkkaisena kirjastotrubaduurina, mutta nykyään hän toimii freelance-lauluntekijänä, esiintyjänä ja kirjailijana. Hän on voittanut Vuoden sillanrakentaja -palkinnon kielirajat ylittävästä kulttuurityöstään. Tomi Pulkkinen on FM Helsingin yliopistosta, pääaineenaan suomalainen kirjallisuus.</p><p>Kesto n. 45 min. Vapaa pääsy</p><p><b>klo 18 – Arppa </b></p><p>Energisistä, improvisaatioon perustuvista keikoistaan tunnettu Arppa yhtyeineen on yksi tämän hetken Suomi-indien kärkinimistä. Arpan ihastuttava musiikki on ajatonta ja tekstit kuin liikkuvaa kuvaa. Oivaltavat, vilpittömät ja tarkkanäköisesti kuvatut tunnelmat liikkuvat Kokkolan Ykspihlajasta aina öisen Helsingin kautta Laila Kinnusen kanssa salakapakkaan heinäkuuhun ’58.</p><p>Arpan yhtyeessä vaikuttavat muusikot Ville-Veikko Airaniemi, Eero Seppä ja Okko Saastamoinen.</p>",
                "sv": "<p>På Nordsjö glada torg samlar såväl små och stora stadsbor som njuter av den fartfyllda musiken och den otroliga stämningen!</p><p><b>PROGRAM</b></p><p><b>kl. 10 och 12<br>Jo's Punch & Judy Show – Dockteater på engelska</b></p><p>Ett spännande skådespel för små och stora barn! Autentisk engelsk handdockteater med den historiskt kända Mr. Punch och hans traditionella vänner i en galen clowndrama!  En fartfylld interaktiv komediakt på scenen. Ideal för familjer och barn mellan 3 och 11 eller äldre!</p><p><b>kl. 14 – Mimi och Kuku</b></p><p>Musiker Mimi och det lustiga clownlejonet Kuku är bekanta figurer från tv. I Mimis och Kukus idrottsliga och underhållande föreställning får barnet uppleva glädjen av att lyckas och inse. Varje barn får vara hjälten i föreställningen på sitt eget sätt.</p><p>De interaktiva föreställningarna har särskilt planerats att stärka en liten människas självkänsla samt känslo- och kompiskunskaper. Föreställningen har en glad fartfylld stämning, mycket dans, uppgifter, dockteater samt trollkonst. Föreställningen lämpar sig för alla åldrar!</p><p><b>kl. 16 – Drömmarnas Helsingfors - Nya verkstadssånger med Tomi Pulkkinen  </b></p><p>Kom och njut av nya sånger som har skapats av helsingforsbor i sångverkstäder under ledning av artist Tomi Pulkkinen!</p><p>Tomi Pulkkinen har under den gångna våren hållit sångverkstäder i Helsingfors. Utgångspunkten för sångerna har varit i deltagarnas favoritställen, men fantasin har flödat fritt, utan gränser. Verkstädernas deltagare har varit av olika åldrar; kreativiteten förenar oss alla, också oavsett språklig eller kulturell bakgrund! Nu uppträder Tomi med de sånger som skapats under verkstäderna, kom med, lyssna och sjung med!</p><p>Tomi Pulkkinen är bl.a. känd som Finlands första månadsavlönade bibliotekstrubadur, men nuförtiden arbetar han som fri låtskrivare, uppträdare och författare. Han har blivit prisbelönt som Årets brobyggare för sitt kulturarbete över språkgränsen. Tomi Pulkkinen är FM från Helsingfors universitet med inhemsk litteratur som huvudämne.</p><p>Längd ca 45 min. Fri entré. Arr. Nordhuset.</p><p><b>kl. 18 – Arppa</b></p><p>Arppa och hens band är kända för sina energiska gigs som baserar sig på inspiration. Arppa är ett av toppnamnen i dagens indie i Finland. Arppas förtjusande musik är tidlös och texterna är som levande bilder. De insiktsfulla, uppriktiga och skarpsynt beskrivna stämningarna varierar mellan Yxpila i Karleby, det nattliga Helsingfors i Laila Kinnunens sällskap och en hemlig krog i juni 1958.</p><p>I Arppas band medverkar musikerna Ville-Veikko Airaniemi, Eero Seppä och Okko Saastamoinen.</p>",
                "en": "<p>The bright Vuotalo square will fill with people of all ages to enjoy the upbeat music and the awesome atmosphere!</p><p><b>PROGRAMME</b></p><p><b>10 am and 12 am<br>Jo's Punch & Judy Show – Puppet theatre in English</b></p><p>An exciting treat for children big and small! Authentic English glove puppet theatre with the historically famous Mr. Punch and a cast of traditional friends in crazy clown-like drama! Fast-paced interactive live comedy show. Ideal for families and children aged 3–11 and beyond!</p><p><b>2 pm – Mimi and Kuku</b></p><p>Musician Mimi and hilarious clown-lion Kuku are characters known to many as seen on TV. Mimi and Kuku’s physically entertaining show lets children feel the joy of success and insight. Every child gets to be the main character in their own way.</p><p>These interactive shows are specially planned to reinforce a small one’s confidence as well as emotional and social skills. The show is fun and fast-paced with lots of dancing, things to do, puppet</p><p><b>4 pm - Helsinki of Dreams - New workshop songs with Tomi Pulkkinen (in Swedish) </b></p><p>Come and enjoy new songs created by Helsinki residents in song workshops led by artist Tomi Pulkkinen!</p><p>Tomi Pulkkinen has been holding song workshops in Helsinki this spring. The starting point for the songs has been in the participants' favorite places, but the imagination has flowed freely, without limits. The participants of the workshops have been of different ages; creativity unites us all, also regardless of linguistic or cultural background! Now Tomi will perform the songs created during the workshops, come along, listen and sing along!</p><p>Tomi Pulkkinen is known, among other things, as Finland's first monthly-paid library troubadour, but nowadays he works as a freelance songwriter, performer and author. He has won the Bridge Builder of the Year award for his cultural work across the language border. Tomi Pulkkinen is an FM from the University of Helsinki with a major in Finnish literature.</p><p>Duration approx. 45 min.</p><p><b>6 pm – Arppa</b></p><p>Arppa and his band are known for their high-energy concerts that are heavy on improvisation, and have become one of the top names of the Finnish indie scene. Arppa’s enchanting music is timeless and his lyrics evoke the cinema. His insightful, sincere and laser-sharp depictions of atmospheres go from Ykspihlaja in Kokkola to night-time Helsinki and onward to a July ‘58 speakeasy with Laila Kinnunen.</p><p>Arppa’s band includes musicians Ville-Ville-Veikko Airaniemi, Eero Seppä and Okko Saastamoinen.</p>"
            },
            "short_description": {
                "fi": "Helsinki-päivänä Vuosaaren iloiselle torille kokoontuu niin pienet kuin suuretkin kaupunkilaiset nauttimaan vauhdikkaasta musiikista ja mahtavasta tunnelmasta!",
                "sv": "På Nordsjö glada torg samlar såväl små och stora stadsbor som njuter av den fartfyllda musiken och den otroliga stämningen!",
                "en": "The bright Vuotalo square will fill with people of all ages to enjoy the upbeat music and the awesome atmosphere!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Helsinki-päivä Vuotorilla – Arppa, Mimi ja Kuku ja paljon muuta",
                "sv": "Helsingforsdagen i Nordtorget",
                "en": "Helsinki Day at Vuotalo Square"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63479/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63419",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:732/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150821,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-25T12:13:22.197231Z",
                    "last_modified_time": "2024-04-25T12:13:22.197251Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746056.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150821/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-25T12:13:22.152909Z",
            "last_modified_time": "2024-06-11T09:12:46.327439Z",
            "date_published": null,
            "start_time": "2024-06-12T06:00:00Z",
            "end_time": "2024-06-12T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7E043B9323FC3E64DB05544FF878767D/Helsinki-paiva_Annantalossa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/7E043B9323FC3E64DB05544FF878767D/Helsingforsdagen_pa_Annegarden",
                "en": "http://www.annantalo.fi/en/events/event/7E043B9323FC3E64DB05544FF878767D/Helsinki_Day_at_Annantalo_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään vauhdikasta Helsinki-päivää Annantalolle!</p><p>Päiväkodeille ja lapsiperheille on tarjolla monipuolista ohjelmaa: konsertteja, työpajoja, näyttelyopastuksia ja teatteria.</p><p>Nuoret pääsevät tekemään katutaidetta Annantalon etupihalle sekä esiintymään Helsinki-päivän Open Mic-illassa Annantalon takapihalla.</p><p><b>klo 9 ja klo 10.30 <br>Onnin orkesteri -konsertti<br>Sibelius Akatemian lastenmusiikin opiskelijat</b><br>A-lava, Annantalon takapiha</p><p>Hyppää mukaan leikkiin yhdessä Onni-Orkesterin kanssa!</p><p>Konsertissa kuullaan Sibelius-Akatemian musiikkikasvattajien säveltämiä, Sanna Pelliccionin Onni-kirjoista inspiroituneita kappaleita.</p><p><b>klo 9.30–11.30 ja klo 15–17<br>Grafiikan taikuri -non-stop-työpaja</b><br>Annantalon grafiikan luokka, 2.krs.<br> <br>Grafiikan tekeminen on kuin tekisi taikatemppua: yhdestä kuvasta saa useampia kuvia, monella eri värillä! <br>Ohjaaja: Tizzi & Marryiam Fib<br>Ikäsuositus: 2+</p><p><b>klo 10 ja 17.15<br>Avoin näyttelyopastus Liikkuva laboratorio -näyttelyyn</b><br>Annantalon galleria, 1 krs.</p><p>Liikkuva laboratorio -näyttely tutkii liikettä ja vuorovaikusta. Avoimella näyttelyopastuksella tutustutaan teoksiin tarkemmin ja tavataan Liikkuvan laboratorion asukas! Opastus on suomeksi ja englanniksi.<br>Kaikenikäisille<br>Kesto 30 min.</p><p><b>klo 10–12 ja 13–15<br>Perheiden kesäkeidas</b><br>Annantalon takapiha</p><p>Mitä ihmettä Annantalon pihalla tapahtuu? Hyppää maalarin takkiin, nappaa pihalta maalausteline kainaloon ja tee olosi mukavaksi Annantalon kesäkeitaalla. <br>Alle seitsemänvuotiaat ovat tervetulleita osallistumaan toimintaan aikuisen kanssa.  <br>Ohjaajina Annantalon taidekasvattajat Anne Rossi-Horto ja Elina Rantasuo</p><p><b>klo 13–13.45<br>Luomuruokaa ja absurdeja aakkosia -työpaja</b><br>A-lava, Annantalon takapiha</p><p>Hauskassa ja mukaansatempaavassa työpajassa herkutellaan luomuruoalla ja kuullaan vauhdikkaita sekä lapsen maailmaa kunnioittavia aakkosrunoja. Työpaja tarjoaa onnistumisen ja oivaltamisen kokemuksia runouden ja luomuruoan parissa.</p><p>Työpajan vetäjänä toimii runoilija Harri Hertell, mukana myös Pro Luomun Pipsa Pörriäinen.</p><p>Ikäsuositus 4-7-vuotiaille lapsille ja heidän vanhemmilleen <br>Työpajaan mahtuu mukaan 15 lapsi-vanhempiparia. Työpaja täytetään saapumisjärjestyksessä</p><p><b>klo 16–18  <br>Rihmasto</b><br>Kuvataideluokka 2</p><p>Mitä jos voisit itse kasvattaa tarvitsemasi tavarat? Sienirihmaston kanssa voit tehdä vaikkapa kulhon, joulukuusenkoristeen tai lampunvarjostimen. Ota mukaan haluamasi muotoinen pieni astia tai esim. piparkakkumuotti ja tule kokeilemaan! Astioita löytyy myös paikan päältä.<br>Ikäsuositus 5+ perheineen</p><p><b>klo 16.30<br>Tanssi- ja miimiteatteri Auraco: HELMIME</b> <br>A-lava, Annantalon takapiha<br> <br>Tanssi- ja miimiteatteri Auracon HELMIME-esityksessä on monta lyhyttä miiminumeroa, joiden aiheet vaihtelevat koomisesta liikuttavaan. Taidokas ja vangitseva sanaton esitys sopii kaikenikäisille ja kaikille kielitaidosta riippumatta. <br>Esiintyjinä miimin ammattilaiset Eliška Kasprzyk ja Tomaš Kasprzyk.<br>Kesto 40 min.</p><p><b>Unelmia ja toiveita</b><br>Annantalon kesätaiteilija, muusikko Jukka Kääriäinen valmistelee koko kesän ääniteosta yhdessä kävijöiden kanssa. Jukka kiertää Helsinki-päivänä Annantalolla ja kysyy kävijöiden unelmia ja toiveita. Niitä voi kertoa puhumalla, laulamalla, piirtämällä tai kirjoittamalla.</p><p><b>klo 14–20 <br>Helsingin katutaidetoimisto: Katutaidekontti</b><br>Annantalon etupiha</p><p>Työpajoissa maalataan, piirretään, ja pidetään hauskaa! Tänä kesänä Annantalon pihalla katutaidetta voi tehdä myös tuftaten. Työpajat ovat avoimia ja maksuttomia kaikille nuorille. Osallistumiseen ei tarvita ennakko-osaamista. Tapahtuman järjestää Annantalo yhdessä Itäisen nuorisotyöyksikön ja Katutaidetoimiston kanssa.<br>Ikäsuositus 13+</p><p><b>klo 18–20<br>Hip Hop Open Mic w/DJ Funkid & Erde</b><br>A-lava, Annantalon takapiha</p><p>Tässä on tilaisuutesi esiintyä lavalla kannustavan yleisön edessä!<br>Ota oma taustamusa mukaan ja tartu mikrofoniin! <br>Tule sellaisena kuin olet!</p><p>Ilmoittaudu esiintymään: https://link.webropol.com/s/HipHopOpenMic</p><p>Yhteistyössä Annantalon kanssa Tiivistämö</p>",
                "sv": "<p>Välkommen att fira en fartfylld Helsingforsdag på Annegården!</p><p>Mångsidigt program utlovas för daghem och barnfamiljer: konserter, workshoppar, guidningar till utställningar och teater. De unga får göra gatukonst framför Annegården och uppträda på Helsingforssdagens Open Mic-kväll på Annegårdens bakgård.</p><p><b>kl. 9 och kl. 10.30 <br>Onnin orkesteri-konserten<br>Barnmusikstuderande från Sibelius-Akademin</b><br>A-scenen, Annegårdens bakgård</p><p>Hör du hur båtdäcket knakar? Har du sett en enhörning? Kom med och leka tillsammans med Onni-Orkesteri! <br>På konserten får vi höra låtar som komponerats av Sibelius-Akademins musikpedagoger och inspirerats av Sanna Peliccionis Onni-böcker. <br>Längd 30 min.</p><p><b>kl. 9.30–11.30 och kl. 15–17<br>Workshopp: Grafisk trollkonstnär</b><br>Grafikklassen på Annegården, 2. vån.<br> <br>Att laga grafik är som att göra trollkonster: en bild blir till flera bilder i olika färger!</p><p>Handledare Tizzi & Marryiam Fib<br>Åldersrekommendation: 2+</p><p><b>kl. 10 och 17.15<br>Öppen guidning till utställningen Rörliga laboratoriet</b> <br>Annegårdens galleri, 1. vån.</p><p>Utställningen Rörliga laboratoriet undersöker rörelse och interaktion. På den öppna guidningen bekantar vi oss närmare med verken och träffar invånaren i det rörliga laboratoriet.</p><p>Guidningen är på finska och engelska.<br>Längd 30 min.</p><p><b>kl. 10–12 och 13–15<br>Sommaroas för familjer</b><br>Annegårdens bakgård<br>Vad sker på Annegårdens gård? Ta på dig mållarrocken, ta med ett staffli från gården och känn dig som hemma i Annegårdens sommaroas.</p><p>Under sjuåringar är välkomna att delta i verksamheten i sällskap av en vuxen. Som handledare fungerar Annegårdens konstpedagoger Anne Rossi-Horto och Elina Rantasuo.</p><p><b>kl.13-13.45<br>Verkstad med ekologisk mat och absurda alfabeten</b> <br>A-scenen, Annegårdens bakgård</p><p>I den roliga och engagerande verkstaden får du njuta av ekologisk mat och lyssna till optimistiska ABC-dikter med hänsyn till barnens värld. Verkstaden leds av poeten Harri Hertell.</p><p>Rekommenderas för barn i åldern 4–7 år och deras föräldrar <br>I verkstaden ryms 15 barn-föräldrapar. Verkstaden fylls i ankomstordning.</p><p><b>kl. 16–18  <br>Mycelium</b><br>Konstklass 2</p><p>Tänk om du själv kunde odla de saker du behöver? Av mycelium kan du exempelvis laga en skål, julgransprydnad eller lampskärm. Ta med dig ett litet kärl av den form du önskar, eller exempelvis en pepparkaksform och kom och pröva! Det finns även kärl på plats.</p><p>Åldersrekommendation 5+ med familj</p><p><b>kl. 16.30<br>Dans- och mimteater Auraco: HELMIME</b> <br>A-scenen, Annegårdens bakgård<br> <br>Dans- och mimteater Auracos HELMIME-föreställning omfattar många korta mimnummer, vars teman växlar från komiska till rörande. Den skickliga och fängslande ordlösa föreställningen passar för alla åldrar och alla oberoende av språkkunskaper. <br>Mimproffsen Eliška Kasprzyk och Tomaš Kasprzyk framträder.<br>Längd 40 min.</p><p><b>Drömmar och önskemål</b><br>Annegårdens sommarkonstnär, musiker Jukka Kämäräinen förbereder hela sommarens ljudverk tillsammans med besökarna. På Helsingforsdagen går Jukka runt i Annegården och frågar besökarna om deras drömmar och önskemål. Man kan berätta om dem genom att prata, sjunga, rita eller skriva. Han vill ge oss en möjlighet att stanna upp vid lyckliga saker under en tid då världen och dess framtid oroar.</p><p><b>kl. 14–20 <br>Katutaidetoimisto Helsinki: Gatukonstcontainer</b><br>Framför Annegården</p><p>I workshopparna målar och ritar vi och har skoj! Denna sommar kan du också göra gatukonst på Annegårdens gård genom att tufta. Workshopparna är öppna och avgiftsfria för alla unga. Inga förhandskunskaper behövs för att delta.</p><p>Evenemanget ordnas av Annegården i samarbete med Östra ungdomsarbetsenheten och Katutaidetoimisto Helsinki.  Specialprogram på Helsingforsdagen.</p><p>Åldersrekommendation 13+</p><p><b>kl. 18–20<br>Hip Hop Open Mic w/DJ Funkid & Erde</b><br>A-scenen, Annegårdens bakgård</p><p>Detta är din chans att uppträda på scenen framför en uppmuntrande publik!<br>Ta med din egen bakgrundsmusik och ta tag i mikrofonen! <br>Kom som du är!</p><p>Anmäl dig a</p>",
                "en": "<p>Come to Annantalo to celebrate an eventful Helsinki Day!</p><p>There’s a wide variety of programmes for day-cares and families with children: concerts, workshops, guided exhibition tours and theatre.</p><p>Young people can make street art at the front yard of the Arts Centre and perform at the Helsinki Day Open Mic event in the back yard.</p><p><b>9 am and 10:30 am <br>Onnin Orkesteri concert<br>Children’s music students from Sibelius Academy</b><br>A stage, Annantalo back yard</p><p>Can you hear the sound a ship’s deck makes? Have you ever seen a unicorn? Join the story with Onnin Orkesteri!</p><p>This concert features compositions by Sibelius Academy music educators, inspired by Sanna Pelliccioni’s Onni novels.<br>Duration: 30 mins</p><p><b> 9:30–11:30 am and 3–5 pm<br>Workshop: Magic of print graphics</b> <br>Annantalo print graphics classroom, 2nd floor.<br> <br>Print graphics is like magic: you can make more than one picture, in many colours, with one slate. <br>Instructor: Tizzi & Marryiam Fib<br>Age recommendation: 2+</p><p><b>10 am and 5:15 pm <br>Open exhibition tours to the Mobile Laboratory exhibition</b><br>Annantalo Gallery, 1st floor.</p><p>The Mobile Laboratory exhibition explores movement and interaction. The open exhibition tour is a closer look at the works and introduces a resident of the Mobile Laboratory!<br>Tour language: English, Finnish.<br>Duration: 30 min.</p><p><b>10 am – 12 noon and 1–3 pm<br>Summer Oasis for families</b> <br>Annantalo back yard</p><p>What on earth is happening in the Annantalo courtyard? Put on a painter’s coat, grab an easel and get comfortable at Annantalo’s Summer Oasis.</p><p>Children under the age of 7 are welcome to participate under the supervision of an adult.  <br>Instructors: Annantalo art instructors Anne Rossi-Horto and Elina Rantasuo</p><p><b>1-1.45pm<br>Organic food and absurd alphabets -workshop</b> <br>A-lava, Annantalo backyard</p><p>In a fun and engaging workshop, you will enjoy organic food and listen to upbeat poems. The workshop will be led by poet Harri Hertell.</p><p>Recommended age range for children aged 4-7 and their parents. <br>The workshop can accommodate up to 15 pairs of parents and children. The workshop will be filled on a first come, first served basis.</p><p><b>4–6 pm <br>Rihmasto (Mycelium)</b><br>Art classroom 2</p><p>What if you could grow the things you need? With mycelium, you can grow a bowl, a Christmas decoration or a lampshade. Bring a small dish that’s the shape you want, or a gingerbread mould and try it out. We’ve also got a selection of dishes here.</p><p>Age recommendation 5+ with family</p><p><b>4:30 pm <br>Dance and mime theatre Auraco: HELMIME</b> <br>A stage, Annantalo back yard<br> <br>HELMIME is back! Dance and mime theatre Auraco’s HELMIME performance is a series of many, short mime acts, which range from comical to touching. This skillful and captivating nonverbal show is suitable for people of all ages and language backgrounds. <br>Performers: mime professionals Eliška Kasprzyk and Tomaš Kasprzyk.<br>Duration: 40 min.</p><p><b>Unelmia ja toiveita (Hopes and Dreams)</b><br>Annantalo’s summer artist, musician Jukka Kääriäinen, will be working on an audio piece all summer with Annantalo visitors. On Helsinki Day, Jukka will be walking around Annantalo, asking for the visitors’ hopes and dreams. You can tell him orally, through song, drawing or writing. He wants to give everyone the chance to pause for happy things in these times of uncertainty and worry for the world’s future.</p><p><b>2–8 pm <br>Helsinki Street Art Office: Street Art Container</b><br>Annantalo front yard</p><p>The workshops are about painting, drawing and having fun! This summer, you can also create street art in the Annantalo front yard by tufting. The workshops are open and free of charge to all young people. No prior skills are required. This event is organised by the Annantalo Arts Centre in cooperation with the Eastern Youth Work Unit and the Street Art Office.  Special events on Helsinki Day.<br>Age recommendation 13+</p><p><b>6–8 pm <br>Hip Hop Open Mic w/DJ Funkid & Erde</b><br>A stage, Annantalo back yard</p><p>This is your chance t</p>"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään vauhdikasta Helsinki-päivää Annantalolle!",
                "sv": "Välkommen att fira en fartfylld Helsingforsdag på Annegården!",
                "en": "Come to Annantalo to celebrate an eventful Helsinki Day!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Helsinki-päivä Annantalossa",
                "sv": "Helsingforsdagen på Annegården",
                "en": "Helsinki Day at Annantalo"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63419/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agh6z2eoxm",
            "has_user_editable_resources": true,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/92/?format=api"
            },
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [
                        {
                            "id": 2,
                            "price_group": {
                                "id": 1,
                                "description": {
                                    "fi": "Aikuinen",
                                    "sv": "Vuxen",
                                    "en": "Adult"
                                }
                            },
                            "price": "1.00",
                            "vat_percentage": "25.50",
                            "price_without_vat": "0.80",
                            "vat": "0.20"
                        }
                    ],
                    "description": {
                        "fi": ""
                    },
                    "info_url": {
                        "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/92/signup-group/create"
                    },
                    "price": {
                        "fi": "1 €"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-06T09:36:55.023347Z",
            "last_modified_time": "2024-06-06T16:01:17.131227Z",
            "date_published": null,
            "start_time": "2024-01-01T10:00:00Z",
            "end_time": "2025-01-01T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2024-01-01T12:00:00+02:00",
            "enrolment_end_time": "2025-01-01T12:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Maksullinen testitestitapahtuma</p>"
            },
            "short_description": {
                "fi": "Maksullinen testitestitapahtuma"
            },
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Maksullinen testitapahtuma"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agh6z2eoxm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63625",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151042,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-08T15:12:44.296136Z",
                    "last_modified_time": "2024-05-08T15:12:44.296154Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751786.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151042/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-05-08T15:12:44.254242Z",
            "last_modified_time": "2024-06-05T08:12:49.544987Z",
            "date_published": null,
            "start_time": "2024-06-08T09:00:00Z",
            "end_time": "2024-06-08T14: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5B4EA86721D5AB753C7FCE33973ED5AB/Perhe-piknik_Orffit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5B4EA86721D5AB753C7FCE33973ED5AB/Familjepicknick_Orffit",
                "en": "http://www.malmitalo.fi/en/events/event/5B4EA86721D5AB753C7FCE33973ED5AB/Family_picnic_Orffit"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tule viettämään hauska piknik-päivä Ala-Malmin puistoon! Luvassa on eläimellistä menoa, kun puistoon saapuvat apinat, alpakat ja kanit! Mukana on myös sirkusta, musiikkia ja luovuutta ruokkivia työpajoja.</p><p>Ota oma viltti ja eväitä mukaan tai nauti nuorten kahvila Malmi Coffeen tarjoiluista. Ala-Malmin puistossa myös vilttikirppistellään joka kesälauantai!</p><p>Sateen sattuessa tapahtumat siirtyvät sisätiloihin Malmitaloon.</p><p><b>OHJELMA</p><p>klo 12–17 Pomppulinna</b></p><p>Lapset ovat tervetulleita pomppimaan pomppulinnaan!</p><p><b>12–12.30<br>Pukinmäen taidekoulut: Apinoiden karkumatka</b></p><p>Apinat ovat karanneet eläintarhasta! Ne viettävät aikaansa salaisessa piilopaikassa. Eläintarhan johtajaa harmittaa, koska kukaan ei tule tyhjään eläintarhaan. Saako johtaja apinat kiinni? Miten apinoiden käy, kun tulee syksy? Tervetuloa katsomaan koko perheen teatteri- ja sirkusesitystä!</p><p>Ohjaus: Pekka Mattila<br>Sirkusohjaus: Jilka Repo</p><p><b>klo 12–15<br>Taito ry: Sorminukke- työpaja</b></p><p>Non-stop työpajassa lapset pääsevät suunnittelemaan ja valmistamaan oman sorminuken eri materiaaleja hyödyntäen. Sorminukke voi olla esimerkiksi koti-, villi-, lemmikki- tai fantasiaeläin. Alle kouluikäiset voivat osallistua työpajaan vanhemman seurassa.</p><p><b>12–15 <br>Kirjasto: Puistosatuja</b></p><p>Tule kuuntelemaan puistosatuja! Malmin kirjaston väki järjestää Pikkuli-puistosatutunnit klo 12 ja 14.</p><p><b>klo 12–15 <br>Pienperheyhdistys: Taidetta napeista ja timangeista -työpaja</b></p><p>Tule tekemään taidetta napeista ja koristetimanteista! Tässä työpajassa luovuus päästetään valloilleen, kun tutuista esineistä tehdään taidetta askartelun myötä.</p><p><b>Klo 12–15<br>Varustamo: Temppu-/liikuntarata ja kivimaalausta</b></p><p>Malmin seurakunta järjestää temppu- ja liikuntaradan eri ikäisille liikkujille ja kivimaalausta kaikenikäisille.</p><p><b>klo 12.30–13<br>Peruttu: Täällä asuu Rohkeus -lastenteatteriesitys</b></p><p><b>klo 13-13:45 ja klo 16-16:45 <br>Sirkustaiteilija Simon Llewelyn:<br>We Are the Champions</b></p><p>We Are the Champions on mukaansatempaava sirkusesitys, jonka teemana ovat saavutukset.</p><p>Englanninkielinen show on sekoitus korkeatasoisia, koreografioituja sirkusnumeroita, jalkapallojongleerausta, sopivan osallistavia osioita ja hilpeitä tanssiliikkeitä.</p><p><b>klo 13.45-14.30<br>Sirkustaiteilija Simon Llewelyn: <br>Freestyle-jalkapallotyöpaja</b></p><p>Haluatko parantaa pallonkäsittelytaitojasi tai tehdä vaikutuksen kavereihin? Tule mukaan hauskaan työpajaan! Jokainen temppu on jaettu yksinkertaisiin vaiheisiin ja vaikeusaste mukautuu osallistujien mukaan aina aloittelijoista alan harrastajiin.<br>Ohjaus englanniksi.</p><p><b>klo 13–15<br>Ali-Ollin Alpakkatilan alpakat ja kanit</b></p><p>Malmin tapahtumakesä saa ihastuttavia pörröisiä vierailijoita, kun Ali-Ollin Alpakkatilalta tulee muutama alpakka ja pari kania vierailulle.</p><p><b>klo 15–16<br>Orffit-konsertti</b></p><p>Orffien konsertin keskiössä ovat puolivillit tarinat, läsnäolo ja monipuoliset sävellykset. Joidenkin tarkkailijoiden mukaan Orffien musiikki auttaa huumorintajuttomuuteen!</p>",
                "sv": "<p>Kom och tillbringa en rolig picknickdag i Nedre Malms park! Djurisk aktivitet utlovas då apor, alpackor och kaniner anländer till parken! Även workshoppar med cirkus, musik och kreativitet finns med.</p><p>Småbarnen får hoppa av glädje i parkens hoppborg. Ta med en egen filt och matsäck eller njut av serveringen på de ungas kafé Malmi Coffee. I Nedre Malms park ordnas även filtloppis varje sommarlördag!</p><p><b>kl. 12–17 Hoppborg</b><br>Barnen är välkomna att hoppa i hoppborgen!</p><p><b>kl.12–12.30<br>Bocksbacka konstskolor: Aporna på rymmen</b><br>Aporna har rymt från djurparken! De gömmer sig på en hemligt plats. Djurparkens direktör är förargad över att ingen vill komma till den tomma djurparken. Kan direktören fånga aporna? Hur ska det gå för aporna när det blir höst? Välkommen och titta på en teater- och cirkusföreställning för hela familjen!</p><p>Regi: Pekka Mattila<br>Cirkusregi: Jilka Repo<br>Plats: Containerscenen<br>Lämpar sig för alla åldrar. Föreställningen är på finska.</p><p><b>kl. 12–15<br>Taito ry: Fingerdocksworkshop</b><br>I fingerdocksworkshoppen får barnen planera och tillverka en egen fingerdocka med hjälp av olika material. Fingerdockan kan exempelvis vara ett husdjur, vilddjur, sällskapsdjur eller fantasidjur. Barn under skolåldern kan delta i workshoppen i sällskap av en vuxen.</p><p>Plats: Workshopområdet i Nedre Malms park <br>Lämpar sig för alla åldrar. Handledning på finska.</p><p><b>kl. 12–15 <br>Pienperheyhdistys: Konst av knappar och dekorationsdiamanter – workshop</b><br>Kom och gör konst av knappar och dekorationsdiamanter! I denna workshop får kreativiteten flöda när vi gör konst av välbekanta föremål genom pyssel.</p><p>Plats: Workshopområdet i Nedre Malms park</p><p><b>kl. 12–15<br>Varustamo: Trick-/motionsbana och stenmålning</b><br>Malms församling ordnar en trick- och motionsbana för motionärer i olika åldrar och stenmålning för alla åldrar.<br>Plats: Workshopområdet i Nedre Malms park</p><p><b>kl. 13–13.45 och 16–16.45 <br>Cirkuskonstnär Simon Llewelyn</b><br>We Are the Champions är en medryckande cirkusföreställningen med prestationer som tema.</p><p>Den engelskspråkiga showen är en blandning av högklassiga koreograferade cirkusnummer, fotbollsjonglering, lämpligt delaktiggörande andelar och uppsluppna dansrörelser.</p><p>Den unika, förtjusande och oförglömliga cirkusföreställningen lämpar sig väl för olika åldrar och underhåller från början till slut.</p><p>Plats: Containerscenen<br>Föreställningen är på engelska.</p><p><b>kl. 13.45–14.30<br>Cirkuskonstnär Simon Llewelyn: Freestylefotboll – workshop</b><br>Vill du förbättra dina bollhanteringsfärdigheter eller göra intryck på dina kompisar? Kom med i en rolig workshop! Varje trick har indelats i enkla skeden och svårighetsgraden anpassas efter deltagarna allt från nybörjare till entusiaster.</p><p>Plats: Containerscenen<br>Lämpar sig för alla åldrar. Handledning på engelska.</p><p><b>kl. 13–15<br>Alpackor och kaniner från Ali-Ollis alpackagård</b><br>Malms evenemangssommar får förtjusande lurviga besökare när några alpackor och kaniner kommer på besök från Ala-Ollis alpackagård. Ali-Ollin Alpakkatila uppföder alpackor för ullproduktion och specialiserar sig på djurassisterade aktiviteter med alpackor.</p><p>Plats: Grönområdet i Nedre Malms park</p><p><b>kl. 15–16<br>Orffit-konsert</b><br>Halvvilda historier, närvaro och mångsidiga kompositioner står i centrum för Orffits konsert. Enligt vissa iakttagare hjälper Orffits musik mot humorlöshet! Bleka rutiner och trista stelnade former lyser med sin frånvaro när trion låter den brokiga mångfalden instrument och den starka musiken ge färg åt den gråa vardagen!</p><p>Plats: Containerscenen</p>",
                "en": "<p>Come and spend a fun summer day at Ala-Malmi Park! See the small animals, as alpacas, monkeys and rabbits join us in the park! You can also see circus acts, listen to music or join a creative workshop.</p><p>Small children get to jump for joy in a bouncy castle. Bring your own blanket and picnic basket, or enjoy the offerings of youth café Malmi Coffee. Ala-Malmi Park is also hosting a blanket flea-market on every summer Saturday!</p><p><b>12 noon to 2 pm Bouncy castle</b><br>Children are invited to jump for joy at the bouncy castle!</p><p><b>12 noon to 12:30 pm<br>Art schools at Pukinmäki: Monkeys on the run</b><br>Monkeys have escaped from the zoo! They’re hiding in a secret location. The zoo’s director is annoyed, since nobody wants to come to an empty zoo. Can the director catch the monkeys? What will happen to the monkeys in autumn? Come and watch this family-friendly theatre and circus act!</p><p>Director: Pekka Mattila<br>Circus director: Jilka Repo<br>Location: Container stage<br>Family-friendly. Language: Finnish.</p><p><b>12 noon to 3 pm<br>Finnish Crafts Organisation Taito: Finger puppet workshop</b><br>In the finger puppet workshop, children get to design and make their own finger puppets from different materials. Finger puppets can be anything: a pet, a farm or wild animal or a fantastic creature. Children under 7 can participate in the workshop with their parent or guardian.</p><p>Location: Ala-Malmi Park workshop area <br>Family-friendly. Instruction in Finnish.</p><p><b>12 noon to 3 pm <br>Single Parents’ Association: Art from buttons and baubles</b><br>Join us and make art from buttons and baubles! This is a workshop to unleash your creativity and make art from familiar objects through handicrafts.</p><p>Location: Ala-Malmi Park workshop area</p><p><b>12 noon to 3 pm<br>Varustamo: Stunt/exercise track and rock painting</b><br>The Malmi congregation is arranging a stunt and exercise track for people of various ages and rock painting for everyone.</p><p>Location: Ala-Malmi Park workshop area</p><p><b>1 pm to 1:45 pm and 4 pm to 4:45 pm <br>Circus artist Simon Llewelyn</b><br>We Are the Champions is an engaging circus show with a theme on achievement.</p><p>This English-language show is a mix of high-quality circus choreography, football juggling, audience engagement and hilarious dance moves.</p><p>A unique, enchanting and unforgettable circus act that is suited for people of all ages that’s guaranteed fun from start to finish.</p><p>Location: Container stage<br>Language: English</p><p><b>1:45 pm to 2:30 pm<br>Circus artist Simon Llewelyn: Freestyle football workshop</b><br>Do you want to get better at ball handling or impress your mates? Join this workshop and have fun!</p><p>Every trick is split into simple phases, and the difficulty depends on the participant, whether beginner or enthusiast.</p><p>Location: Container stage<br>Family-friendly. Instruction in English.</p><p><b>1 pm to 3 pm<br>Alpacas and rabbits from Ali-Olli Alpaca Farm</b><br>The Malmi Summer of Events welcomes new furry friends with some visiting alpacas and rabbits from Ali-Olli Alpaca Farm.</p><p>The Ali-Olli Alpaca Farm grows alpacas for their wool and is specialised in animal-assisted activities with alpacas.</p><p>Location: Ala-Malmi Park green area</p><p><b>3 pm to 4 pm<br>Orffit concert</b><br>At the core of the Orffit concert are half-wild stories, presence and varied compositions.</p><p>Some viewers say their music is the cure for not having a sense of humour! There are no routines or by-the-book approaches here, as this trio uses their extensive lineup of instruments and powerful music apply some colour to your life!</p><p>Location: Container stage</p>"
            },
            "short_description": {
                "fi": "Tule viettämään hauska piknik-päivä Ala-Malmin puistoon! Luvassa on eläimellistä menoa, kun puistoon saapuvat apinat, alpakat ja kanit! Mukana on myös sirkusta, musiikkia ja luovuutta ruokkivia työpajoja.",
                "sv": "Kom och tillbringa en rolig picknickdag i Nedre Malms park! Djurisk aktivitet utlovas då apor, alpackor och kaniner anländer till parken! Även workshoppar med cirkus, musik och kreativitet finns med.",
                "en": "Come and spend a fun summer day at Ala-Malmi Park! See the small animals, as alpacas, monkeys and rabbits join us in the park! You can also see circus acts, listen to music or join a creative workshop."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Perhe-piknik: Orffit – Malmin tapahtumakesä",
                "sv": "Familjepicknick: Orffit – Malms evenemangssommar",
                "en": "Family picnic: Orffit – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63625/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agh43ys5uy",
            "has_user_editable_resources": true,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/90/?format=api"
            },
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/90/signup-group/create",
                        "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/90/signup-group/create",
                        "en": "https://linkedregistrations.test.hel.ninja/en/registration/90/signup-group/create"
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-05-31T09:01:55.505117Z",
            "last_modified_time": "2024-05-31T09:04:53.757565Z",
            "date_published": null,
            "start_time": "2024-01-01T10:00:00Z",
            "end_time": "2024-04-30T09: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": "2024-01-01T12:00:00+02:00",
            "enrolment_end_time": "2024-07-30T12:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Anonymisoinnin testaaminen: loppuaika yli 30pv, ilmoittautumisaika yli 30pv</p>"
            },
            "short_description": {
                "fi": "Anonymisoinnin testaaminen: loppuaika yli 30pv, ilmoittautumisaika yli 30pv"
            },
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Anonymisoinnin testaaminen: loppuaika yli 30pv, ilmoittautumisaika yli 30pv"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agh43ys5uy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agh43xio5y",
            "has_user_editable_resources": true,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/89/?format=api"
            },
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/89/signup-group/create",
                        "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/89/signup-group/create",
                        "en": "https://linkedregistrations.test.hel.ninja/en/registration/89/signup-group/create"
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-05-31T08:56:07.708355Z",
            "last_modified_time": "2024-05-31T08:56:07.708376Z",
            "date_published": null,
            "start_time": "2024-01-01T10:00:00Z",
            "end_time": "2024-07-30T09: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": "2024-01-01T12:00:00+02:00",
            "enrolment_end_time": "2024-07-30T12:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Anonymisoinnin testaaminen: loppuaika alle 30pv, ilmoittautumisaika yli 30pv</p>"
            },
            "short_description": {
                "fi": "Anonymisoinnin testaaminen: loppuaika alle 30pv, ilmoittautumisaika yli 30pv"
            },
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Anonymisoinnin testaaminen: loppuaika alle 30pv, ilmoittautumisaika yli 30pv"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agh43xio5y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63525",
            "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:45/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151024,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-07T12:13:31.300158Z",
                    "last_modified_time": "2024-05-07T12:13:31.300178Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745650.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151024/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-05-07T12:13:31.231491Z",
            "last_modified_time": "2024-05-28T14:12:55.266306Z",
            "date_published": null,
            "start_time": "2024-06-04T11: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/95FD486B50C87FFDB7D77753759C1B54/Aarteitani_Suomesta_-loytoretki",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/95FD486B50C87FFDB7D77753759C1B54/Mina_skatter_fran_Finland_en_upptacktsresa",
                "en": "http://www.vuotalo.fi/en/events/event/95FD486B50C87FFDB7D77753759C1B54/My_favourite_Finnish_things_discovery_tour"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tule mukaan etsimään ja löytämään aarteita lähiluonnosta! Aarre voi olla melkein mitä tahansa, jokaiselle omanlainen.</p><p>Aarre voi olla käsinkosketeltava. Se voi olla ihan pieni tai suuren suuri. Ehkä löydät maailman hienoimman kepin, näet värikkään sateenkaaren tai kuulet iloista linnunlaulua. Jos maltat lahjoittaa löytösi tai tarinasi, se voi päästä osaksi Aarteitani Suomesta -näyttelyä, joka avautuu Vuotalossa elokuussa.</p><p>Aarteitani Suomesta on lukemiseen innostava taidenäyttely- ja työpajakokonaisuus, joka perustuu <b>Satu Kettusen</b> samannimiseen kuvakirjaan. Kirjan ydinviesti on luontoa arvostava ja moninaisuutta syleilevä. Se kutsuu kaikki äänet mukaan pohtimaan erilaisia näkökulmia liittyen Suomeen, kotiin, ja paikkaan, jossa on hyvä olla. Mikä on sinun aarteesi Suomesta?</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Lähtöpaikka: Vuotalon etupiha<br>Kesto: 1 tunti.</p><p>Löytöretkiä järjestetään myös varhaiskasvatuksen ryhmille:<br>to 23.5. klo 09.15–10.00 <br>ma 27.5. klo 09.15–10.00</p><p>Varhaiskasvatusten ryhmät voivat ilmoittautua mukaan osoitteessa: https://kultus.fi/</p>",
                "sv": "<p>Kom med och leta efter och hitta skatter i närnaturen! En skatt kan vara nästan vad som helst, det är olika för alla.</p><p>Skatten kan vara något man kan röra vid. Den kan vara liten eller jättestor. Kanske hittar du världens finaste pinne, ser en färgsprakande regnbåge eller hör glad fågelsång. Om du nänns donera ditt fynd eller din berättelse kan den bli en del av utställningen Mina skatter från Finland, som öppnas i Nordhuset i augusti.</p><p>Mina skatter från Finland är en konstutställnings- och workshophelhet som inspirerar till att läsa och som bygger på <b>Satu Kettunens</b> bilderbok med samma namn. Det centrala budskapet i boken är uppskattning av naturen och välkomnande av mångfald. Den bjuder in alla röster att reflektera över olika perspektiv i anknytning till Finland, hemmet och den plats där det är bra att vara. Vilken är din skatt från Finland?</p><p>Fritt inträde, ingen förhandsanmälan.</p><p>Startpunkt: Gården framför Nordhuset <br>Längd: 1 timme</p>",
                "en": "<p>Come along and find treasures from the nearby nature! A treasure can be almost anything, it is unique to everyone.</p><p>The treasure can be tangible. It can be teeny-tiny or very large. Maybe you’ll find the world’s finest stick, see a colourful rainbow, or hear a joyful bird song. If you can donate your discovery or story, it could become part of the Aarteitani Suomesta exhibition, which opens in Vuotalo in August.</p><p>Aarteitani Suomesta is an art exhibition and workshop ensemble inspiring visitors to read, and it is based on <b>Satu Kettunen’s</b> picture book of the same name. The core message of the book is to appreciate nature and embrace diversity. It invites all voices to reflect on different points of view related to Finland, home, and a good place to be. What is your treasure from Finland?</p><p>Free admission, no advance registration<br>Place of departure: Vuotalo’s front yard</p><p>Duration: 1 hour</p>"
            },
            "short_description": {
                "fi": "Tule mukaan etsimään ja löytämään aarteita lähiluonnosta! Aarre voi olla melkein mitä tahansa, jokaiselle omanlainen.",
                "sv": "Kom med och leta efter och hitta skatter i närnaturen! En skatt kan vara nästan vad som helst, det är olika för alla.",
                "en": "Come along and find treasures from the nearby nature! A treasure can be almost anything, it is unique to everyone."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Aarteitani Suomesta -löytöretki",
                "sv": "Mina skatter från Finland – en upptäcktsresa",
                "en": "My favourite Finnish things discovery tour"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63525/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:e53e9cf7-74d3-4757-9afe-9752bbead210",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Testi_kakkonen455225501",
                        "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Testi_kakkonen455225501",
                        "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Testi_kakkonen455225501",
                        "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Testi_kakkonen455225501"
                    },
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 151273,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-05-22T06:05:16.587835Z",
                    "last_modified_time": "2024-05-22T06:05:16.587854Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/025cb5dd-9b16-ef11-9f89-0022489e55b1",
                    "name": "Elinkeino-osasto kuvateksti",
                    "cropping": "",
                    "photographer_name": "Lars Linssi",
                    "alt_text": "Elinkeino-osasto ALT",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151273/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-05-20T17:31:43.536966Z",
            "last_modified_time": "2024-05-22T06:05:18.942907Z",
            "date_published": "2024-05-20T17:24:31Z",
            "start_time": "2024-05-22T11:00:00Z",
            "end_time": "2024-05-22T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 2,
            "audience_max_age": 4,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 12,
            "minimum_attendee_capacity": 11,
            "enrolment_start_time": "2024-05-01T08:00:00+03:00",
            "enrolment_end_time": "2024-05-21T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": {
                "fi": "Business Helsinki FI",
                "sv": "Business Helsinki SV",
                "en": "Business Helsinki EN",
                "ru": "Venäjä on RU"
            },
            "description": {
                "fi": "<div><p>LM Testi kolmonen by Marcus LinkedEventsiin</p></div>",
                "sv": "<div><div>LM Testi kolmonen by Marcus LinkedEventsiin (SV)</div></div>",
                "en": "<div><div>LM Testi kolmonen by Marcus LinkedEventsiin (EN)</div></div>",
                "ru": "<div><p>Venäjä on RU long desc</p></div>"
            },
            "short_description": {
                "fi": "LM Testi kolmonen by Marcus LinkedEventsiin",
                "sv": "LM Testi kolmonen by Marcus LinkedEventsiin (SV)",
                "en": "LM Testi kolmonen by Marcus LinkedEventsiin (EN)",
                "ru": "Venäjä on RU short desc"
            },
            "location_extra_info": null,
            "name": {
                "fi": "LM Testi kolmonen by Marcus LinkedEventsiin (päivitys 2)",
                "sv": "LM Testi kolmonen by Marcus LinkedEventsiin (SV)",
                "en": "LM Testi kolmonen by Marcus LinkedEventsiin (EN)",
                "ru": "Venäjä on RU"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:e53e9cf7-74d3-4757-9afe-9752bbead210/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:c3854a3b-4a12-4368-8faa-f2062933ede4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/90a5debe-5217-ef11-9f8a-000d3ab59432?readableEventId=LMtest_vitonen2383580494"
                    },
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 151264,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-05-21T12:03:38.747965Z",
                    "last_modified_time": "2024-05-21T12:03:38.747986Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e05bb5dd-9b16-ef11-9f89-0022489e55b1",
                    "name": "kuvatekstii",
                    "cropping": "",
                    "photographer_name": "Lars Linssi",
                    "alt_text": "alttii",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151264/?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/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-05-21T09:39:40.977992Z",
            "last_modified_time": "2024-05-21T12:03:40.673189Z",
            "date_published": "2024-05-21T09:32:09Z",
            "start_time": "2024-05-21T12:30:00Z",
            "end_time": "2024-05-21T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 2,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-05-01T08:00:00+03:00",
            "enrolment_end_time": "2024-05-18T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": {
                "fi": "Liisa Mallat/ Business Helsinki"
            },
            "description": {
                "fi": "<div><p>LMtest vitonen long desc</p></div>"
            },
            "short_description": {
                "fi": "LMtest vitonen short desc"
            },
            "location_extra_info": null,
            "name": {
                "fi": "LMtest vitonen"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:c3854a3b-4a12-4368-8faa-f2062933ede4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61576",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/teatteri-hevosenkenka/konna-ja-konstaapeli-kerttu-3509332/?pnum=2"
                    },
                    "price": {
                        "fi": "14,50 € / 11,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 10749,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-09T12:13:53.448260Z",
                    "last_modified_time": "2024-02-09T12:13:53.448278Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741519.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10749/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-09T12:13:53.424434Z",
            "last_modified_time": "2024-05-20T14:12:45.400893Z",
            "date_published": null,
            "start_time": "2024-05-23T07: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5885F207331F89D8CA0A8F2CD327752C/Konna_ja_Konstaapeli_Kerttu"
            },
            "provider": null,
            "description": {
                "fi": "<p>Huom! muuttunut aika!Kerttu Kakkonen on iloinen ja hyväsydäminen poliisikonstaapeli, joka on päättänyt tehdä tyhjiksi konnien kepulikonstit.</p><p>Kertun poliisiasemalla on tärkeä tehtävä – säilyttää turvallisesti maailman arvokkainta timanttia ja estää kuuluisaa Konnaa saamasta sitä. Kertulla on työtovereinaan apulaiskonstaapelit Rattis ja Musu, ja kun joukkoon liittyy uusi apulainen, arka koira nimeltään Puppe Pelkonen, tiimi on valmis.</p><p>Lisävipellystä tapahtumiin tuovat ovela tikkarivaras Toukkanen, naapurin hupsahtava täti Tyyne Puputti sekä poliisikaksikko Jantunen ja Juntunen. Selvitettävää riittää ja vauhdikkaan rosvojahdin lopuksi Puppe huomaa, ettei enää ole niin pelokas.<br>Ikäsuositus: 3-vuotiaat ja ylöspäin.<br>Kesto: noin 45 min.<br>Ensi-ilta 8.2.2024</p><p>Liput: <br>aamuesitykset 11,50 €<br>ryhmän aikuiset 3,50 € <br>iltaesitykset 14,50 €</p><p>Edullisin tapa ostaa lippu on lippu.fi -verkkokaupan kautta, jossa tilausmaksu on 1,50 €/tilaus (pdf-lippuna).</p>"
            },
            "short_description": {
                "fi": "Huom! muuttunut aika!Kerttu Kakkonen on iloinen ja hyväsydäminen poliisikonstaapeli, joka on päättänyt tehdä tyhjiksi konnien kepulikonstit."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Konna ja Konstaapeli Kerttu – Teatteri Hevosenkenkä"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61576/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:aghzkplrpa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:22/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "15e/hkl, paitsi jos ryhmä, sitten 12e/hkl",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null,
                    "price": {
                        "fi": "15",
                        "sv": "15",
                        "en": "15"
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u4804001020",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:58/?format=api"
                }
            ],
            "created_time": "2024-05-20T09:03:03.042883Z",
            "last_modified_time": "2024-05-20T09:04:06.098325Z",
            "date_published": null,
            "start_time": "2024-05-21T09:12:00Z",
            "end_time": "2024-05-21T10:13:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2024-05-20T12:05:00+03:00",
            "enrolment_end_time": "2024-05-21T12:12:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": null,
            "description": {
                "fi": "<p>Testijonotustapahtuma 2024-05-20</p>\n",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Testijonotustapahtuma 2024-05-20",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "name": {
                "fi": "Testijonotustapahtuma 2024-05-20",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aghzkplrpa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63260",
            "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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 16318,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-20T12:14:23.738906Z",
                    "last_modified_time": "2024-03-20T12:14:23.738925Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739312.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/16318/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-03-20T12:14:23.715300Z",
            "last_modified_time": "2024-05-15T08:12:46.934207Z",
            "date_published": null,
            "start_time": "2024-05-15T07:30:00Z",
            "end_time": "2024-05-15T08:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/289F31C5C25347EF02D5ECBD8821132F/SIIRTYY_ke_29_5_Jussin_lahiosatutuokiot",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/289F31C5C25347EF02D5ECBD8821132F/Jussis_forortssagostunder",
                "en": "http://www.vuotalo.fi/en/events/event/289F31C5C25347EF02D5ECBD8821132F/Jussin_lahiosatutuokiot_Jussi_s_Local_Fairy_Tales_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa löydetään Vuotalon pihapiiristä jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden. Osallistava esitys tapahtuu Vuotalon piha-alueella. Mukana kulkee Jussin uskollinen retkikitara. Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.</p><p>Sopii yli 3-vuotiaille.</p><p>Kokoontumispaikka on Vuotalon etupihalla, pääovien luona ulkona.</p><p>Yhden tuokion kesto on noin 45 minuuttia. <br>Yhteen tuokioon mahtuu enintään 40 lasta.</p><p><b>Ilmoittautumiset ryhmille osoitteessa https://kultus.fi/</b></p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna på Nordhusets gård.</p><p>Ifall det blir storm flyttas sagostunden till en senare tidpunkt.</p><p>Passar för över 3-åriga barn. <br>Mötesplatsen är på Nordhusets främre gård, ute vid huvuddörrarna.<br>Högst 40 barn ryms med på en sagostund.</p>",
                "en": "<p>Join Jussi Ollila to discover exciting fairy tales and magical stories in the yard area of Vuosaari House!</p><p>In case of stormy weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over three years of age. <br>The meeting place is the front yard of the Vuosaari House, outside the main doors.<br>Up to 40 children per event.</p>"
            },
            "short_description": {
                "fi": "Jussi Ollilan kanssa löydetään Vuotalon pihapiiristä jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna på Nordhusets gård.",
                "en": "Join Jussi Ollila to discover exciting fairy tales and magical stories in the yard area of Vuosaari House!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "SIIRTYY ke 29.5. Jussin lähiösatutuokiot – Osallistava satuesitys Vuotalon pihapiirissä",
                "sv": "Jussis förortssagostunder – En delaktiggörande sagoföreställning på Nordhusets gård",
                "en": "Jussin lähiösatutuokiot (Jussi’s Local Fairy Tales) – A participatory fairytale performance in the yard of Vuosaari House"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63260/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:3308bbaa-d706-4d8d-9aec-187ec59e5539",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Todella hyvähintainen tapahtuma"
                    },
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE70_-_Kattotapahtumaksi2605977082"
                    },
                    "price": {
                        "fi": "99"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:b800f64f-2639-4705-addd-b5a104c46d04/?format=api"
                }
            ],
            "images": [
                {
                    "id": 151096,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-13T05:58:20.429274Z",
                    "last_modified_time": "2024-05-13T05:58:20.429294Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/8c0b34ba-8e0e-ef11-9f89-0022489e55b1",
                    "name": "Kalasatama kuvateksti",
                    "cropping": "",
                    "photographer_name": "Liisa Linssi",
                    "alt_text": "Kalasatama alt",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151096/?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/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-05-10T05:36:03.442646Z",
            "last_modified_time": "2024-05-13T05:58:22.649469Z",
            "date_published": "2024-05-10T05:29:15Z",
            "start_time": "2024-05-21T07:00:00Z",
            "end_time": "2024-05-21T08:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 0,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 2,
            "minimum_attendee_capacity": 1,
            "enrolment_start_time": "2024-04-29T08:00:00+03:00",
            "enrolment_end_time": "2024-05-11T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": {
                "fi": "Liisa Mallat"
            },
            "description": {
                "fi": "<div><p>MKtest LE70 - Asetetaan kattotapahtumaksi LONG DESCRIPTION</p></div>"
            },
            "short_description": {
                "fi": "MKtest LE70 - Asetetaan kattotapahtumaksi SHORT DESCRIPTION"
            },
            "location_extra_info": null,
            "name": {
                "fi": "MKtest LE70 test event for Business Helsinki"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:3308bbaa-d706-4d8d-9aec-187ec59e5539/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:39771c60-11cc-4df6-919a-346c0f535d69",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=MKtest_LE733282502221"
                    },
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 151062,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-10T08:08:17.562578Z",
                    "last_modified_time": "2024-05-10T08:08:17.562598Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/8c0b34ba-8e0e-ef11-9f89-0022489e55b1",
                    "name": "Kalasatama kuvateksti",
                    "cropping": "",
                    "photographer_name": "Lars Linssi",
                    "alt_text": "Kalasatama alt",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151062/?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/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-05-10T07:03:46.816207Z",
            "last_modified_time": "2024-05-10T08:08:19.532009Z",
            "date_published": "2024-05-10T07:00:11Z",
            "start_time": "2024-05-11T07:00:00Z",
            "end_time": "2024-05-11T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 2,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 4,
            "minimum_attendee_capacity": 3,
            "enrolment_start_time": "2024-04-29T08:00:00+03:00",
            "enrolment_end_time": "2024-04-30T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": {
                "fi": "Business Helsinki"
            },
            "description": {
                "fi": "<div><p>MKtest LE73 LONG DESC</p></div>"
            },
            "short_description": {
                "fi": "MKtest LE73 short desc"
            },
            "location_extra_info": null,
            "name": {
                "fi": "MKtest LE73"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:39771c60-11cc-4df6-919a-346c0f535d69/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:b800f64f-2639-4705-addd-b5a104c46d04",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:3308bbaa-d706-4d8d-9aec-187ec59e5539/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "ASDF ja yhä edelleen.",
                        "sv": "ASDF ja yhä edelleen."
                    },
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE71_-_Asetetaan_LE70_tmn_tapahtuman_kattotapahtumaksi3649977113",
                        "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE71_-_Asetetaan_LE70_tmn_tapahtuman_kattotapahtumaksi3649977113"
                    },
                    "price": {
                        "fi": "101",
                        "sv": "101"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 151048,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-10T05:50:15.648065Z",
                    "last_modified_time": "2024-05-10T05:50:15.648085Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/8e0b34ba-8e0e-ef11-9f89-0022489e55b1",
                    "name": "botskei kuvateksti",
                    "cropping": "",
                    "photographer_name": "Laars Linssi",
                    "alt_text": "botskei alt",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151048/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-05-10T05:48:20.560651Z",
            "last_modified_time": "2024-05-10T05:50:17.003774Z",
            "date_published": "2024-05-10T05:46:51Z",
            "start_time": "2024-05-13T04:00:00Z",
            "end_time": "2024-05-17T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 2,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 4,
            "minimum_attendee_capacity": 3,
            "enrolment_start_time": "2024-05-06T08:00:00+03:00",
            "enrolment_end_time": "2024-05-11T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": {
                "fi": "Business Helsinki suomeksi",
                "sv": "Business Helsinki ruotsiksi"
            },
            "description": {
                "fi": "<div><p>MKtest LE71 - Asetetaan LE70 tämän tapahtuman kattotapahtumaksi LONG DESC FI</p></div>",
                "sv": "<div><p>MKtest LE71 - Asetetaan LE70 tämän tapahtuman kattotapahtumaksi LONG DESC SV</p></div>"
            },
            "short_description": {
                "fi": "MKtest LE71 - Asetetaan LE70 tämän tapahtuman kattotapahtumaksi SHORT DESC FI",
                "sv": "MKtest LE71 - Asetetaan LE70 tämän tapahtuman kattotapahtumaksi SHORT DESC SV"
            },
            "location_extra_info": null,
            "name": {
                "fi": "MKtest LE71 - Asetetaan LE70 tämän tapahtuman kattotapahtumaksi",
                "sv": "MKtest LE71 - Asetetaan LE70 tämän tapahtuman kattotapahtumaksi SV"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:b800f64f-2639-4705-addd-b5a104c46d04/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:4f0dec54-8d53-45ea-ba5b-858781beacc0",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:311dd2b3-8398-48d2-81f8-08f698cccdb0/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_youtube",
                    "link": "https://youtu.be/bUbA5y1hnFg?si=MWqUiMszUukmrSX5",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/0c7401d9-3d09-ef11-9f8a-000d3ab363c5?readableEventId=MKtest_lomaketest_LE64_Custom_field_testi_no1_Teams-tapahtuma3005082531"
                    },
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 151004,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-06T05:02:11.156122Z",
                    "last_modified_time": "2024-05-06T05:02:11.156146Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e577da3e-2609-ef11-9f8a-000d3ab363c5",
                    "name": "Joku kuva kuvateksti",
                    "cropping": "",
                    "photographer_name": "Lars Linssi",
                    "alt_text": "Joku kuva alt",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151004/?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/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-05-03T11:22:47.998412Z",
            "last_modified_time": "2024-05-06T05:02:14.888501Z",
            "date_published": "2024-05-03T11:19:54Z",
            "start_time": "2024-05-06T05:00:00Z",
            "end_time": "2024-05-06T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 11,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 4,
            "minimum_attendee_capacity": 2,
            "enrolment_start_time": "2024-04-29T08:00:00+03:00",
            "enrolment_end_time": "2024-05-04T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": {
                "fi": "Business Helsinki"
            },
            "description": {
                "fi": "<div><p>MKtest lomaketest LE64_Custom field testi no:1 (Teams-tapahtuma) LONG DESC</p></div>"
            },
            "short_description": {
                "fi": "MKtest lomaketest LE64_Custom field testi no:1 (Teams-tapahtuma) SHORT DESC"
            },
            "location_extra_info": null,
            "name": {
                "fi": "MKtest lomaketest LE65_Custom field testi (Päivitys klo 16:04)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:4f0dec54-8d53-45ea-ba5b-858781beacc0/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}