Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&hide_recurring_children=true&page=159
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 19290,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=160",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=158"
    },
    "data": [
        {
            "id": "espoo_le:agjc2r7l5q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-09-26T07:10:33.088394Z",
            "last_modified_time": "2024-09-26T07:10:33.088417Z",
            "date_published": null,
            "start_time": "2024-10-23T09:00:00Z",
            "end_time": "2024-10-23T15: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,
            "provider": {
                "fi": "A-klinikkasäätiö"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Millaista stigmaa ja syrjintää päihde-, riippuvuus- ja mielenterveysongelmiin liittyy? Entä miten stigmaa ja syrjintää voitaisiin vähentää? Tule tutustumaan aiheeseen Espoon Sellon kirjastoon 23.10.2024 klo 12–18!</p><p>•</p><p>Kirjaston aulassa voit tutustua matalalla kynnyksellä päihde- ja mielenterveyspalveluissa ja järjestöissä tarjolla oleviin apu- ja tukimuotoihin</p><p>•</p><p>Tapahtuman ajan kirjaston aulassa pyörii non-stoppina kokemusasiantuntijavideoita päihde-, riippuvuus- ja mielenterveysongelmiin liittyvästä stigmasta sekä sen vähentämisestä</p><p>•</p><p>Lisäksi tapahtumassa jaetaan tietoa päihde- ja mielenterveysongelmien ennaltaehkäisystä sekä tehdään kansalaiskyselyä palveluiden ja järjestötyön kehittämistarpeista sekä päihde- ja mielenterveysongelmiin liittyvän stigman vähentämisestä</p><p>Tapahtuma on maksuton ja avoin kaikille aiheesta kiinnostuneille. Ennakkoilmoittautumista ei tarvita. Tapahtuman järjestävät yhteistyössä A-klinikkasäätiö, Espoon kaupunginkirjasto sekä muut tapahtumaan osallistuvat toimijat.</p><p>Lisätietoja:</p><p>Tiina Saarinen, kehittämispäällikkö, Järjestölähtöisen päihdetyön kehittäminen,</p><p>A-klinikkasäätiö, tiina.saarinen@a-klinikkasaatio.fi, p. 050 5671173</p>",
                "sv": "<p>I bibliotekets lobby kan du få information om vilken typ av hjälp och stöd som finns att få från organisationer och tjänster som arbetar med missbruk och psykisk ohälsa.</p>",
                "en": "<p>In the library lobby, you can find out about the types of help and support available from addiction and mental health services and organisations.</p>"
            },
            "name": {
                "fi": "Päihde- ja mielenterveystyön kansalaistapahtuma stigman ja syrjinnän vähentämiseksi",
                "sv": "Medborgarmöte om alkohol och psykisk hälsa - arbete för att minska stigmatisering och diskriminering",
                "en": "Citizens' event for drug and mental health work to reduce stigma and discrimination"
            },
            "short_description": {
                "fi": "Kirjaston aulassa voit tutustua matalalla kynnyksellä päihde- ja mielenterveyspalveluissa ja järjestöissä tarjolla oleviin apu- ja tukimuotoihin",
                "sv": "Du kan få information om vilken typ av hjälp och stöd som finns att få från organisationer och tjänster som arbetar med missbruk och psykisk ohälsa.",
                "en": "In the library lobby, you can find out about the types of help and support available from addiction and mental health services and organisations."
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjc2r7l5q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64418",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152245,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-29T08:15:43.804258Z",
                    "last_modified_time": "2024-08-29T08:15:43.804275Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757156.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152245/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-29T08:15:43.778710Z",
            "last_modified_time": "2024-09-25T12:15:56.979477Z",
            "date_published": null,
            "start_time": "2024-10-17T15: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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/98E38DA03009650A6CE3A6B5008915F2/Kirjailijat_Linnea_Kuuluvainen_ja_Mika_Maliranta_keskustelevat_tulevaisuudesta",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/98E38DA03009650A6CE3A6B5008915F2/Forfattarna_Linnea_Kuuluvainen_och_Mika_Maliranta_diskuterar_framtiden",
                "en": "http://www.kanneltalo.fi/en/events/event/98E38DA03009650A6CE3A6B5008915F2/Writers_Linnea_Kuuluvainen_and_Mika_Maliranta_talk_about_the_future"
            },
            "description": {
                "fi": "<p>Helsingin Kirjamessujen teemana on tänä vuonna tulevaisuus. Messujen maistiaisena Helsingin Kirjamessujen viestintäpäällikkö Teija Armanto haastattelee Linnea Kuuluvaista ja Mika Malirantaa, joiden molempien uutuuskirjat luovat katseen tulevaisuuteen.</p><p>Kuuluvaisen Metsän peitto (Gummerus 2024) on maaginen romaani luontosuhteesta ja mielen järkkymisestä. Malirannan Pinnan alta (Docendo 2024) antaa aihetta talousoptimismiin.<br> <br><b>Linnea Kuuluvainen</b> on opiskellut Turun yliopistossa suomen kieltä ja luovaa kirjoittamista. Hän asuu miehensä ja kolmen koiran kanssa suopursumetsän ympäröimänä Turun lähistöllä.</p><p><b>Mika Maliranta</b> (FT) on Työn ja talouden tutkimuksen LABOREn johtaja sekä Jyväskylän yliopiston professori. Hän on keskittynyt talouden kasvun tekijöihin: tuottavuuskasvuun ja työmarkkinoiden toimintaan. Hän toimii myös mm. OECD:n toimiala-analyysityöryhmän puheenjohtajana, lainsäädännön arviointineuvoston varapuheenjohtajana ja tuottavuuslautakunnan jäsenenä. Hän on tehnyt yhdessä Matti Apusen kanssa suosittua talouspoliittista M&A-podcastia vuodesta 2017.</p><p>Kesto: 1 tunti</p><p>Vapaa pääsy</p>",
                "sv": "<p>Temat för årets bokmässa i Helsingfors är framtiden. Som en försmak av mässan intervjuar Teija Armanto, kommunikationschef för Helsingfors bokmässa, Linnea Kuuluvainen och Mika Maliranta, vars nya böcker båda blickar in i framtiden.</p><p>Kuuluvainens Metsän peitto (Gummerus 2024) är en magisk roman om förhållandet till naturen och om hur sinnet börjar vackla. Malirantas Pinnan alta (Docendo 2024) ger anledning till ekonomisk optimism.</p><p>Linnea Kuuluvainen har studerat finska och kreativt skrivande vid Åbo universitet. Hon bor med sin man och tre hundar omgiven av en skog av skvattram i närheten av Åbo.</p><p>Mika Maliranta (FD) är chef för forskningsanstalten för arbete och ekonomi LABORE och professor vid Jyväskylä universitet. Han har fokuserat på drivkrafterna bakom ekonomisk tillväxt: produktivitetstillväxt och arbetsmarknadernas verksamhet. Han är också bland annat ordförande för OECD:s arbetsgrupp för sektoranalys, vice ordförande i rådet för bedömning av lagstiftningen och medlem i produktivitetsnämnden. Sedan 2017 har han tillsammans med Matti Apunen den populära M&A-podden om ekonomisk politik.</p><p>Längd: 1 timme</p><p>Språk: finska<br>Fritt inträde</p>",
                "en": "<p>The theme of this year’s Helsinki Book Fair is the future. As a taster, Teija Armanto, Communications Manager for the Helsinki Book Fair, interviews Linnea Kuuluvainen and Mika Maliranta, whose respective new books show a glimpse into the future.</p><p>Kuuluvainen’s Metsän peitto (Gummerus 2024) is a magical novel about the relationship with nature and how the mind can break. Maliranta’s Pinnan alta (Docendo 2024) gives cause to be optimistic about the economy.</p><p>Linnea Kuuluvainen studied the Finnish language and creative writing at the University of Turku. She, her husband, and their three dogs live in a peat bog forest near Turku.</p><p>Mika Maliranta (PhD) is the director of the Labour Institute for Economic Research LABORE and a professor at the University of Jyväskylä. He has focused on the drivers of economic growth: that of productivity and the functioning of the labour market. He is also chairman of the OECD's Industry Sector Analysis Working Group, vice-chairman of the Finnish Council of Regulatory Impact Analysis and member of the Finnish Productivity Board. Together with Matti Apunen, he is the creator of popular economic policy podcast, M&A, which launched in 2017.</p><p>Duration: 1 hour<br>Language: Finnish<br>Free admission</p>"
            },
            "name": {
                "fi": "Kirjailijat Linnea Kuuluvainen ja Mika Maliranta keskustelevat tulevaisuudesta – Helsingin Kirjamessujen etkot",
                "sv": "Författarna Linnea Kuuluvainen och Mika Maliranta diskuterar framtiden – Förfest till Helsingfors bokmässa",
                "en": "Writers Linnea Kuuluvainen and Mika Maliranta talk about the future – Helsinki Book Fair pre-party"
            },
            "short_description": {
                "fi": "Helsingin Kirjamessujen teemana on tänä vuonna tulevaisuus. Messujen maistiaisena Helsingin Kirjamessujen viestintäpäällikkö Teija Armanto haastattelee Linnea Kuuluvaista ja Mika Malirantaa, joiden molempien uutuuskirjat luovat katseen tulevaisuuteen.",
                "sv": "Temat för årets bokmässa i Helsingfors är framtiden. Som en försmak av mässan intervjuar Teija Armanto, kommunikationschef för Helsingfors bokmässa, Linnea Kuuluvainen och Mika Maliranta, vars nya böcker båda blickar in i framtiden.",
                "en": "The theme of this year’s Helsinki Book Fair is the future. As a taster, Teija Armanto, Communications Manager for the Helsinki Book Fair, interviews Linnea Kuuluvainen and Mika Maliranta, whose respective new books show a glimpse into the future."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64418/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64581",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152438,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-17T10:14:02.566746Z",
                    "last_modified_time": "2024-09-17T10:14:02.566762Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758076.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152438/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-17T10:14:02.553906Z",
            "last_modified_time": "2024-09-25T12:15:55.954865Z",
            "date_published": null,
            "start_time": "2024-10-16T08:00:00Z",
            "end_time": "2024-10-16T10: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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2D00A311C88AC85F6A3049DADB73BEEE/Keskiviikon_lounasjamit",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2D00A311C88AC85F6A3049DADB73BEEE/Jams_till_onsdagslunchen",
                "en": "http://www.kanneltalo.fi/en/events/event/2D00A311C88AC85F6A3049DADB73BEEE/Wednesday_lunch_jams"
            },
            "description": {
                "fi": "<p>Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja miksei iskelmäkin! Luvassa myös paljon muuta sielukasta musiikkia. Tervetuloa nauttimaan ruoasta ja musiikista!</p><p>Kesto 2 tuntia</p><p>Kanneltalon kahvilan stage<br>Vapaa pääsy</p>",
                "sv": "<p>På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.</p><p>Vid lunchtid får vi lyssna till genrer från hela världen. På scenen får du höra anatolisk funk, afrikansk highlife, pop och varför inte också ett par schlagersånger! Massor av annan själfull musik utlovas också. Välkommen till bords!</p><p>Längd 2 timmar<br>Caféscen<br>Fritt inträde</p>",
                "en": "<p>In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage.</p><p>At lunchtime, anyone can come listen to genres from around the world. Anatolian funk, African highlife, pop and why not Finnish iskelmä too! And of course, lots of other soulful music. Come and listen!</p><p>Duration: 2 hours<br>Café stage<br>Free of charge</p>"
            },
            "name": {
                "fi": "Keskiviikon lounasjamit",
                "sv": "Jams till onsdagslunchen",
                "en": "Wednesday lunch jams"
            },
            "short_description": {
                "fi": "Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.",
                "sv": "På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.",
                "en": "In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64581/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64531",
            "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:104/?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: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: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:755/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152611,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-25T12:15:54.664718Z",
                    "last_modified_time": "2024-09-25T12:15:54.664737Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757988.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152611/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-25T12:15:54.637053Z",
            "last_modified_time": "2024-09-25T12:15:54.746181Z",
            "date_published": null,
            "start_time": "2024-10-12T15:00:00Z",
            "end_time": "2024-10-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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0A7EB01F631CA3C91CCAFBD420C8A049/Bangladeshi_Cultural_Event_",
                "en": "http://www.malmitalo.fi/en/events/event/0A7EB01F631CA3C91CCAFBD420C8A049/Bangladeshi_Cultural_Event_"
            },
            "description": {
                "fi": "<p>PROTYASHA järjestää bangladeshin kulttuuriin keskittyvän tapahtuman, jossa kuullaan perinteistä bangladeshilaista musiikkia, tanssia ja runoutta.</p><p>Protyasha ry on Suomessa toimiva tunnettu kulttuurijärjestö, joka on tarjonnut kulttuuritoimintaa bengalilaisille yhteisöille vuodesta 2000 lähtien.</p><p>Toivotamme kaikki sydämellisesti tervetulleiksi tilaisuuteen!</p>",
                "en": "<p>\"PROTYASHA\" is going to arrange a Bangladeshi Cultural Event on 12th of October, 2024. The event consists traditional Bangladeshi music, dance and poetry.</p><p>Protyasha Ry is a renowned cultural organization in Finland that has been serving cultural activities to the Bengali community since 2000.</p><p>You are all cordially invited to the show.</p>"
            },
            "name": {
                "fi": "Bangladeshi Cultural Event – PROTYASHA",
                "en": "Bangladeshi Cultural Event – PROTYASHA"
            },
            "short_description": {
                "fi": "PROTYASHA järjestää bangladeshin kulttuuriin keskittyvän tapahtuman, jossa kuullaan perinteistä bangladeshilaista musiikkia, tanssia ja runoutta.",
                "en": "\"PROTYASHA\" is going to arrange a Bangladeshi Cultural Event on 12th of October, 2024. The event consists traditional Bangladeshi music, dance and poetry."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64531/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64580",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152437,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-17T10:14:00.126679Z",
                    "last_modified_time": "2024-09-17T10:14:00.126695Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758074.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152437/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-17T10:14:00.090905Z",
            "last_modified_time": "2024-09-25T12:15:51.687932Z",
            "date_published": null,
            "start_time": "2024-10-02T08:00:00Z",
            "end_time": "2024-10-02T10: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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0CDEBBD0E4FF7E4C9CBE4F88A46F08E7/Keskiviikon_lounasjamit",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0CDEBBD0E4FF7E4C9CBE4F88A46F08E7/Jams_till_onsdagslunchen",
                "en": "http://www.kanneltalo.fi/en/events/event/0CDEBBD0E4FF7E4C9CBE4F88A46F08E7/Wednesday_lunch_jams"
            },
            "description": {
                "fi": "<p>Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja miksei iskelmäkin! Luvassa myös paljon muuta sielukasta musiikkia. Tervetuloa nauttimaan ruoasta ja musiikista!</p><p>Kesto 2 tuntia</p><p>Kanneltalon kahvilan stage<br>Vapaa pääsy</p>",
                "sv": "<p>På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.</p><p>Vid lunchtid får vi lyssna till genrer från hela världen. På scenen får du höra anatolisk funk, afrikansk highlife, pop och varför inte också ett par schlagersånger! Massor av annan själfull musik utlovas också. Välkommen till bords!</p><p>Längd 2 timmar<br>Caféscen<br>Fritt inträde</p>",
                "en": "<p>In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage.</p><p>At lunchtime, anyone can come listen to genres from around the world. Anatolian funk, African highlife, pop and why not Finnish iskelmä too! And of course, lots of other soulful music. Come and listen!</p><p>Duration: 2 hours<br>Café stage<br>Free of charge</p>"
            },
            "name": {
                "fi": "Keskiviikon lounasjamit",
                "sv": "Jams till onsdagslunchen",
                "en": "Wednesday lunch jams"
            },
            "short_description": {
                "fi": "Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.",
                "sv": "På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.",
                "en": "In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64580/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agiwvhottq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:28401/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-19T11:44:13.950332Z",
            "last_modified_time": "2024-09-25T12:07:26.297345Z",
            "date_published": null,
            "start_time": "2024-10-05T08:00:00Z",
            "end_time": "2024-10-05T11: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,
            "provider": {
                "fi": "Suomen luontokeskus Haltia"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://haltia.com/tapahtumat/"
            },
            "description": {
                "fi": "<p>Elämysauto Välkky päivystää Haltian edustalla Retkilauantaisin. Tervetuloa tutustumaan luontoaiheisiin kirjoihin, lukemaan, lainaamaan ja palauttamaan.</p><p>Lue tarkemmat lisätiedot Haltian Retkilauantaista ja sen muusta ohjelmasta verkkosivuilta (<a href=\"haltia.com/tapahtumat\">haltia.com/tapahtumat</a>).</p>"
            },
            "name": {
                "fi": "Elämysauto Välkky Haltiassa"
            },
            "short_description": {
                "fi": "Elämysauto Välkky päivystää Haltian edustalla Retkilauantaisin. Tervetuloa tutustumaan luontoaiheisiin kirjoihin, lukemaan, lainaamaan ja palauttamaan."
            },
            "location_extra_info": {
                "fi": "Kirjaston elämysauto Välkky"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiwvhottq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64623",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:733/?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: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:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": {
                        "fi": "10,5 € / 8 €",
                        "sv": "10,5 € / 8 €",
                        "en": "10,5 € / 8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152610,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-25T11:16:12.113324Z",
                    "last_modified_time": "2024-09-25T11:16:12.113344Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757674.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152610/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-25T11:16:12.064383Z",
            "last_modified_time": "2024-09-25T11:16:12.240720Z",
            "date_published": null,
            "start_time": "2024-10-16",
            "end_time": "2024-10-20",
            "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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/EC7264C6D1C9FA732A5F91124F4079E5/Cinemaiss_Latin_American_Film_Festival",
                "sv": "http://www.caisa.fi/sv/evenemang/event/EC7264C6D1C9FA732A5F91124F4079E5/Cinemaiss_Latin_American_Film_Festival",
                "en": "http://www.caisa.fi/en/events/event/EC7264C6D1C9FA732A5F91124F4079E5/Cinemaiss_Latin_American_Film_Festival"
            },
            "description": {
                "fi": "<p>Cinemaissí järjestetään tänä vuonna Caisassa!</p><p>Cinemaissí-elokuvafestivaalin tavoitteena on edistää kiehtovaa, ajatuksia herättävää ja uutta latinalaisamerikkalaista elokuvaa Suomessa.</p><p>Elokuvanäytösten, keskustelujen ja muiden kohtaamisten kautta festivaali on luonut alustan Latinalaisen Amerikan kulttuurin, politiikan ja yhteiskunnan nauttimiseen ja pohtimiseen.</p><p>Liput ja lisätiedot: https://www.cinemaissi.com/</p>",
                "sv": "<p>Cinemaissí arrangeras i år på Caisa!</p><p>Mer info: https://www.cinemaissi.com/</p>",
                "en": "<p>Cinemaissí will be hosted this year at Caisa Cultural Center.</p><p>Cinemaissí Latin American Film Festival aims to promote appealing, thought-provoking, and novel Latin American cinema in Finland.</p><p>Through film screenings, conversations, and other encounters, the festival has created a platform for the enjoyment and debate of Latin American culture, politics, and society.<br>Cinemaissí Latin American Film Festival understands that Latin American realities are multiple and varied. It is our privilege and responsibility to offer our audience a carefully curated program that reflects Latin America’s diversity.</p><p>Founded in 2005 by the non-profit association with the same name, the festival welcomes with open arms everyone interested in the Latin American region.</p><p>Tickets and info: https://www.cinemaissi.com/</p>"
            },
            "name": {
                "fi": "Cinemaissí – Latin American Film Festival",
                "sv": "Cinemaissí – Latin American Film Festival",
                "en": "Cinemaissí – Latin American Film Festival"
            },
            "short_description": {
                "fi": "Cinemaissí järjestetään tänä vuonna Caisassa!",
                "sv": "Cinemaissí arrangeras i år på Caisa!",
                "en": "Cinemaissí will be hosted this year at Caisa Cultural Center."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64623/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64619",
            "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: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/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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152606,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-25T10:15:27.386991Z",
                    "last_modified_time": "2024-09-25T10:15:27.387017Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758429.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152606/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-25T10:15:27.359742Z",
            "last_modified_time": "2024-09-25T10:15:27.454716Z",
            "date_published": null,
            "start_time": "2024-10-14T08: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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/687C63B6EE0F1F425D98B7D5EC9A1A67/Musiikillinen_taideseikkailu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/687C63B6EE0F1F425D98B7D5EC9A1A67/Musikaliskt_konstaventyr",
                "en": "http://www.annantalo.fi/en/events/event/687C63B6EE0F1F425D98B7D5EC9A1A67/Musical_Art_Adventure"
            },
            "description": {
                "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Tärkeänä toiminnan keskiössä ovat leikki ja taiteen kokeminen: musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Ikäryhmä: 1–2-vuotiaat  <br>Kieli: suomi<br>Ryhmässä on noin 12 osallistujaa kerralla, 8 lasta ja 8 aikuista. Tuokion pituus noin 30 min.</p><p>Varaa yksi paikka per lapsi+aikuinen.</p><p>Ma 30.9.klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari1 <br>Ma 14.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari2 <br>Ma 28.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari3<br>Ma 11.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari4<br>Ma 25.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari5</p>",
                "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 1–2-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 8 barn och 8 vuxna.</p><p>Anmälningslänkar:<br>Må 30.9, anmäl dig här: https://link.webropol.com/ep/muskari1 <br>Må 14.10, anmäl dig här: https://link.webropol.com/ep/muskari2 <br>Må 28.10, anmäl dig här: https://link.webropol.com/ep/muskari3<br>Må 11.11, anmäl dig här: https://link.webropol.com/ep/muskari4<br>Må 25.11, anmäl dig här: https://link.webropol.com/ep/muskari5</p>",
                "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Session length approx. 30 min <br>Age group: Ages 1–2<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p>Registration links:<br>Mon 30.9. https://link.webropol.com/ep/muskari1</p><p>Mon 14.10. https://link.webropol.com/ep/muskari2</p><p>Mon 28.10. https://link.webropol.com/ep/muskari3</p><p>Mon 11.11. https://link.webropol.com/ep/muskari4</p><p>Mon 25.11.  https://link.webropol.com/ep/muskari5</p>"
            },
            "name": {
                "fi": "Musiikillinen taideseikkailu – 1–2-vuotiaille",
                "sv": "Musikaliskt konstäventyr – för 1–2-åringar",
                "en": "Musical Art Adventure – for 1–2-year-olds"
            },
            "short_description": {
                "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.",
                "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.",
                "en": "We explore and interpret the world through imagination, music and other arts."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64619/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64613",
            "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: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/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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152605,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-25T10:15:22.405578Z",
                    "last_modified_time": "2024-09-25T10:15:22.405598Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758427.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152605/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-25T10:15:22.349662Z",
            "last_modified_time": "2024-09-25T10:15:22.502459Z",
            "date_published": null,
            "start_time": "2024-09-30T08: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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3E5FFD63F96C237FD246EF043F57297E/Musiikillinen_taideseikkailu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/3E5FFD63F96C237FD246EF043F57297E/Musikaliskt_konstaventyr",
                "en": "http://www.annantalo.fi/en/events/event/3E5FFD63F96C237FD246EF043F57297E/Musical_Art_Adventure"
            },
            "description": {
                "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Tärkeänä toiminnan keskiössä ovat leikki ja taiteen kokeminen: musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Ikäryhmä: 1–2-vuotiaat  <br>Kieli: suomi<br>Ryhmässä on noin 12 osallistujaa kerralla, 6 lasta ja 6 aikuista. Tuokion pituus noin 30 min.</p><p>Varaa yksi paikka per lapsi+aikuinen.</p><p>Ma 30.9.klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari1 <br>Ma 14.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari2 <br>Ma 28.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari3<br>Ma 11.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari4<br>Ma 25.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari5</p>",
                "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 1–2-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 6 barn och 6 vuxna.</p><p>Anmälningslänkar:<br>Må 30.9, anmäl dig här: https://link.webropol.com/ep/muskari1 <br>Må 14.10, anmäl dig här: https://link.webropol.com/ep/muskari2 <br>Må 28.10, anmäl dig här: https://link.webropol.com/ep/muskari3<br>Må 11.11, anmäl dig här: https://link.webropol.com/ep/muskari4<br>Må 25.11, anmäl dig här: https://link.webropol.com/ep/muskari5</p>",
                "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Session length approx. 30 min <br>Age group: Ages 1–2<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p>Registration links:<br>Mon 30.9. https://link.webropol.com/ep/muskari1</p><p>Mon 14.10. https://link.webropol.com/ep/muskari2</p><p>Mon 28.10. https://link.webropol.com/ep/muskari3</p><p>Mon 11.11. https://link.webropol.com/ep/muskari4</p><p>Mon 25.11.  https://link.webropol.com/ep/muskari5</p>"
            },
            "name": {
                "fi": "Musiikillinen taideseikkailu – 1–2-vuotiaille",
                "sv": "Musikaliskt konstäventyr – för 1–2-åringar",
                "en": "Musical Art Adventure – for 1–2-year-olds"
            },
            "short_description": {
                "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.",
                "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.",
                "en": "We explore and interpret the world through imagination, music and other arts."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64613/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64348",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152099,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-14T07:14:43.872993Z",
                    "last_modified_time": "2024-08-14T07:14:43.873011Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756280.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152099/?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-08-14T07:14:43.838332Z",
            "last_modified_time": "2024-09-25T08:16:22.571197Z",
            "date_published": null,
            "start_time": "2024-10-09T06:30: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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A586381FCDF970A06D7CF6E8F04DFD17/Vaellus_vehreydessa_-monisukupolvikonsertti",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A586381FCDF970A06D7CF6E8F04DFD17/Vandring_i_det_grona_en_konsert_for_flera_generationer",
                "en": "http://www.kanneltalo.fi/en/events/event/A586381FCDF970A06D7CF6E8F04DFD17/Hiking_in_the_greenery_multi-generational_concert"
            },
            "description": {
                "fi": "<p>Kanneltalon monisukupolvikonsertit ovat maksuttomia konserttikokonaisuuksia, joissa lapset ja etenkin seniorit pääsevät rinnan yhteisen elämyksen äärelle. Varaa maksuton paikkasi konserttiin 30.9. mennessä!</p><p>Ohjelmassa kuullaan englantilaista barokkimusiikkia rakastetuilta säveltäjiltä Händeliltä ja Purcellilltä sekä hieman tuntemattomammalta Elizabeth Turneriltä. Kappaleissa ihmetellään luontoa: lintujen ääniä, ilmojen henkiä, ruusuja ja kukkaisloistoa, yön salaperäisyyttä. Purcellin instrumentaali-tansseissa tanssii mielikuvitushahmoja apinoista vihreisiin miehiin ja heinäntekijöihin. Musiikilla on voima myös nukuttaa ja herättää!</p><p>Suomalaisen barokkiorkesterin esittämän vetävän barokkiohjelman lomassa kuullaan Mirjami Heikkisen lausumia tekstejä. Eikä siinä kaikki! Konserttiin mahtuu myös upouusi Kannelmäen sävellysverstaassa syntynyt lyhyt barokkimusiikista inspiroitunut kappale.<br> <br>Kesto: 45 min.<br>Kieli: suomi</p><p>Vapaa pääsy, pakollinen lippuvaraus: lunasta lippusi www.lippu.fi tai Kanneltalon lipunmyyntipisteestä. Varaa lippusi 30.9. mennessä.</p>",
                "sv": "<p>Gamlasgårdens konserter för flera generationer är avgiftsfria konserthelheter, där barn och i synnerhet seniorer kan träffas för en gemensam upplevelse. Boka din avgiftsfria plats till konserten senast den 30 september!</p><p>På programmet står engelsk barockmusik av de älskade kompositörerna Händel och Purcell, och av den lite mindre kända Elizabeth Turner. Tema för styckena är förundran över naturen: ljudet av fåglar, luftens anda, rosor och blomsterprakt, nattens hemlighetsfullhet. Till Purcells instrumentala danser dansar fantasikaraktärer bestående av allt från apor till gröna män och höbärgare. Musiken har också kraften att söva och väcka!</p><p>Vid sidan av det fartfyllda barockprogrammet som framförs av en finländsk barockorkester får vi höra texter som läses upp av Mirjami Heikkinen. Och inte nog med det! Konserten rymmer också ett kort och sprillans nytt stycke som skapats i Gamlas kompositionsverkstad och är inspirerat av barockmusik.</p><p>Längd: 45 min.<br>Språk: finska</p><p>Fri entré, obligatorisk biljettbokning: lös in din biljett på www.lippu.fi eller på Gamlasgårdens biljettförsäljning Boka dina biljetter senast 30.9.</p>",
                "en": "<p>Kanneltalo's multigenerational concerts are free-of-charge concert ensembles, where children and especially seniors can get together for a shared experience. Book your free seat to the concert by 30 September!</p><p>The programme features English Baroque music by beloved composers Händel and Purcell, as well as the somewhat lesser-known Elizabeth Turner. The songs will marvel at nature: the sounds of birds, the spirits of the air, roses and flowers and the mystery of the night. At Purcell's instrumental dance, imaginary characters from monkeys to green men and haymakers will frolic. Not only can music put you to sleep, it can also wake you up!</p><p>The glamorous baroque programme presented by the Finnish Baroque Orchestra will include texts spoken by Mirjami Heikkinen. And that's not all! The concert also accommodates a brand new piece of Baroque music inspired by a short piece created in the Kannelmäki composition workshop.</p><p>Duration: 45 mins.<br>Language: Finnish</p><p>Free entry, mandatory ticket reservation: redeem your ticket at www.lippu.fi or at the Kanneltalo ticket booth. Reserve your tickets by 30 September.</p>"
            },
            "name": {
                "fi": "Vaellus vehreydessä -monisukupolvikonsertti – Helsinki Early Music Festival",
                "sv": "Vandring i det gröna, en konsert för flera generationer – Helsinki Early Music Festival",
                "en": "Hiking in the greenery multi-generational concert – Helsinki Early Music Festival"
            },
            "short_description": {
                "fi": "Kanneltalon monisukupolvikonsertit ovat maksuttomia konserttikokonaisuuksia, joissa lapset ja etenkin seniorit pääsevät rinnan yhteisen elämyksen äärelle. Varaa maksuton paikkasi konserttiin 30.9. mennessä!",
                "sv": "Gamlasgårdens konserter för flera generationer är avgiftsfria konserthelheter, där barn och i synnerhet seniorer kan träffas för en gemensam upplevelse. Boka din avgiftsfria plats till konserten senast den 30 september!",
                "en": "Kanneltalo's multigenerational concerts are free-of-charge concert ensembles, where children and especially seniors can get together for a shared experience. Book your free seat to the concert by 30 September!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64348/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64336",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/husam-al-ali-and-the-middle-eastern-ensemble-3711887/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/husam-al-ali-and-the-middle-eastern-ensemble-3711887/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/husam-al-ali-and-the-middle-eastern-ensemble-3711887/"
                    },
                    "description": null,
                    "price": {
                        "fi": "25 € / 17 €",
                        "sv": "25 € / 17 €",
                        "en": "25 € / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152032,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-06T08:15:58.950904Z",
                    "last_modified_time": "2024-08-06T08:15:58.950923Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756270.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152032/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-06T08:15:58.902462Z",
            "last_modified_time": "2024-09-25T08:16:19.179775Z",
            "date_published": null,
            "start_time": "2024-09-28T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/191FA9AB2FE19C82B712F677F6A8B611/Husam_Al-Ali_The_Middle_Eastern_Ensemble",
                "sv": "http://www.stoa.fi/sv/evenemang/event/191FA9AB2FE19C82B712F677F6A8B611/Husam_Al-Ali_The_Middle_Eastern_Ensemble",
                "en": "http://www.stoa.fi/en/events/event/191FA9AB2FE19C82B712F677F6A8B611/Husam_Al-Ali_The_Middle_Eastern_Ensemble"
            },
            "description": {
                "fi": "<p>The Middle Eastern Ensemblen lauantain 28.9. konsertin solisti vaihtuu. Lähi-idän alueen kiristyneen tilanteen vuoksi palestiinalainen laulaja Jiana Ghantous on estynyt matkustamaan Suomeen.</p><p>Hänen tilallaan orkesterin solistina esiintyy loistava laulaja Husam Al-Ali. Monipuolinen, arvostettu syyrialainen laulaja on esiintynyt arabimusiikin konserteissa ympäri Eurooppaa ja saapuu nyt Berliinistä täydentämään Ensemblen kokoonpanoa. Heidän valloittavassa esityksessään kuullaan klassisia arabialaisia melodioita ja soinnukkaita kansanlauluja muun muassa Egyptistä, Syyriasta, Irakista, Palestiinasta ja Libanonista.</p><p>Irakilaisen udin soittajan Ali Haithemin johtama orkesteri täyttää ilman lumoavilla rytmeillä ja sävelillä, joissa yhdistyvät Lähi-idän perinteiset instrumentit ja länsimaiset vivahteet.</p><p>Illan aikana on erinomainen tilaisuus uppoutua arabialaisen musiikin rikkaaseen äänimaailmaan!</p><p>Musiikkimatka järjestetään kulttuurikeskus Stoassa osana Nomads Festival -festivaalia.</p><p>Pahoittelemme muutoksesta aiheutuvaa vaivaa. Kiitos ymmärryksestä näinä haastavina aikoina. Lämpimästi tervetuloa konserttiin!</p><p>Jo ostetut liput käyvät sellaisenaan lauantain konserttiin. Mikäli haluat palauttaa lippusi, saat hyvityksen Lippu.fi-palvelusta. Hae hyvitys viimeistään torstaina 26.9.</p><p>Kesto: 2 tuntia</p><p>Liput: 25 € / 17 €</p>",
                "sv": "<p>The Middle Eastern Ensemblen lördagens konsert den 28.9. får en ny solist. På grund av den förvärrade situationen i Mellanöstern kan den palestinska sångerskan Jiana Ghantous inte resa till Finland.</p><p>Den här musikaliska resan äger rum på kulturcentret Stoa som en del av festivalen Nomads Festival.</p><p>Biljetter: 25 € / 17 €</p>",
                "en": "<p>The soloist for the Middle Eastern Ensemble's concert on Saturday, September 28th, has changed. Due to the escalating situation in the Middle East, Palestinian singer Jiana Ghantous is unable to travel to Finland.</p><p>She will be replaced by the brilliant singer Husam Al-Ali as soloist of The Middle Eastern Ensemble. The highly acclaimed, versatile Syrian singer comes from Berlin to complete the Ensemble's line-up. Husam Al-Ali's repertoire covers the rich musical traditions of various Arab countries, including Syria, Egypt and Iraq, and he has performed in Arab music concerts all over Europe.</p><p>We apologise for any inconvenience caused by the change. Thank you for your understanding during these challenging times. A warm welcome to the concert!</p><p>Tickets already purchased are valid for Saturday's concert. If you wish to return your tickets, you can get a refund on Lippu.fi. Request a refund no later than Thursday, September 26th.</p><p>This musical journey will take place at the cultural center Stoa as part of the Nomads Festival.</p><p>Duration: 2 h<br>Tickets: 25 € / 17 €</p>"
            },
            "name": {
                "fi": "Husam Al-Ali & The Middle Eastern Ensemble – Nomads Festival",
                "sv": "Husam Al-Ali & The Middle Eastern Ensemble – Nomads Festival",
                "en": "Husam Al-Ali & The Middle Eastern Ensemble – Nomads Festival"
            },
            "short_description": {
                "fi": "The Middle Eastern Ensemblen lauantain 28.9. konsertin solisti vaihtuu. Lähi-idän alueen kiristyneen tilanteen vuoksi palestiinalainen laulaja Jiana Ghantous on estynyt matkustamaan Suomeen.",
                "sv": "The Middle Eastern Ensemblen lördagens konsert den 28.9. får en ny solist. På grund av den förvärrade situationen i Mellanöstern kan den palestinska sångerskan Jiana Ghantous inte resa till Finland.",
                "en": "The soloist for the Middle Eastern Ensemble's concert on Saturday, September 28th, has changed. Due to the escalating situation in the Middle East, Palestinian singer Jiana Ghantous is unable to travel to Finland."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64336/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agjcqvojd4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-09-25T08:13:49.839109Z",
            "last_modified_time": "2024-09-25T08:13:49.839130Z",
            "date_published": null,
            "start_time": "2024-10-18T11:00:00Z",
            "end_time": "2024-10-18T11:45: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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Pitääkö hauskaksi syntyä vai voiko huumorin kirjoittamista opetella? Kirjailija Kaisa Paasto puhuu huumorista perjantaina 18.10. kello 14. Tilaisuus on tarkoitettu koululaisille ja aikuisille!</p><p>Perhealueella voit myös tutustua Prankenstein- ja Anni kaverinkesyttäjä -kirjojen teksteihin ja kuvituksiin (tekstit Kaisa Paasto, kuvat Mari Ahokoivu).</p>",
                "sv": "<p>Måste man vara född rolig eller kan man lära sig att skriva komedi? Författaren Kaisa Paasto talar om humor fredagen den 18.10. kl. 14.00. Evenemanget är för både skolelever och vuxna!</p><p>I familjeavdelningen kan du också se texterna och illustrationerna till böckerna Prankenstein och Anni kaverinkesyttäjä (texter av Kaisa Paasto, illustrationer av Mari Ahokoivu).</p>",
                "en": "<p>Do you have to be born funny or can you learn to write comedy? Writer Kaisa Paasto will talk about humour on Friday 18.10. at 14.00. The event is for schoolchildren and adults!</p><p>In the family area you can also see the texts and illustrations of the books Prankenstein and Anni kaverinkesyttäjä (texts by Kaisa Paasto, illustrations by Mari Ahokoivu).</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Kaisa Paasto",
                "sv": "Gästförfattare Kaisa Paasto",
                "en": "Kaisa Paasto's author visit"
            },
            "short_description": {
                "fi": "Pitääkö hauskaksi syntyä vai voiko huumorin kirjoittamista opetella? Kirjailija Kaisa Paasto puhuu huumorista perjantaina 18.10. kello 14. ",
                "sv": "Måste man vara född rolig eller kan man lära sig att skriva humor? Författaren Kaisa Paasto talar om humor fredagen den 18.10. kl. 14.00. ",
                "en": "Do you have to be born funny or can you learn to write comedy? Writer Kaisa Paasto will talk about humour on Friday 18.10. at 14:00. "
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcqvojd4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agjcqhhumm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?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:p2149/?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:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-25T06:18:52.684337Z",
            "last_modified_time": "2024-09-25T06:18:52.684364Z",
            "date_published": "2024-09-25T07:00:00Z",
            "start_time": "2024-10-16T14:30:00Z",
            "end_time": "2024-10-16T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Miten hyvinvointialue vastaa ikääntyneiden palvelutarpeeseen? </p><p>Missä viipyy Matinkylän elä ja asu seniorikeskus?</p><p>Mistä saan apua kun en selviä omin voimin? </p><p>Mitä ikääntyneiden palvelut maksavat asiakkaille? </p><p>Palvelualuejohtaja Tuula Suominen, palvelulinjajohtaja Elina kylmänen ja asiakkuuspäällikkö Anne Kvist esittelevät LUVN ikääntyneiden palveluita. </p>",
                "sv": "<p>Hur svarar välfärdsområdet på de äldres servicebehov?</p><p>Var dröjer Mattby Lev och bo seniorcenter?</p><p>Var kan jag få hjälp när jag inte klarar mig själv?</p><p>Vad kostar tjänsterna för äldre för kunderna?</p><p>Serviceområdeschef Tuula Suominen, serviceledare Elina Kylmänen och kundansvarig Anne Kvist presenterar äldreomsorgen inom Västra Nylands välfärdsområde.</p>"
            },
            "name": {
                "fi": "Asukastilaisuus ikääntyneiden palveluista",
                "sv": "Boendemöte om tjänster för äldre"
            },
            "short_description": {
                "fi": "Asukastilaisuus Länsi-Uudenmaan palvelualueen  ikääntyneiden palveluista",
                "sv": "Boendemöte om äldreomsorgen inom Västra Nylands serviceområde"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcqhhumm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agh7e4anhq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4amde/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4amf4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4amiu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4amk4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4amne/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4ampi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4amru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4amuu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4amxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4amzi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4am3u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4am6e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4anai/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4ancy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4anfa/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-07T10:53:30.857932Z",
            "last_modified_time": "2024-09-24T11:36:08.324016Z",
            "date_published": null,
            "start_time": "2024-09-05T15:00:00Z",
            "end_time": "2024-12-12T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tarvitsetko vertaistukea ompelupulmiisi tai apua ompelukoneen käyttöön? Vai kaipaatko vain hyvää seuraa tsemppaamaan ompelu- tai korjaustyön edistämisessä? Tervetuloa Ompeluklinikalle! Tapaamme Lippulaivan kirjaston pajassa torstaisin 5.9.-12.12.2024 klo 18.00-20.00.</p><p>Kirjaston ompelukoneet, saumurit, peitetikkikone ja muut ompeluvälineet ovat osallistujien käytettävissä. Kirjaston työntekijä tarjoaa opastusta laitteiden käyttöön. Lisäksi autetaan ja neuvotaan toinen toisiamme!</p><p>Teemoja:</p><p>5.9. Helpot ja rennot lastenvaatteet</p><p>19.9. Tuftauksen monet muodot 1.</p><p>26.9. Käsilaukut</p><p>3.10. Tuftauksen monet muodot 2.</p><p>10.10. Lastenvaatteiden korjaus</p><p>17.10. Vapaa aihe</p><p>24.10. Ekologiset kangasservetit</p><p>31.10. Vapaa aihe</p><p>7.11. Huolla, korjaa ja kunnosta risat vaatteet</p><p>14.11. Verhojen ompelu ja housujen lyhennys.</p><p>21.11. Brodeeraus kirjontakoneella (tuo oma tuote mukaan)</p><p>28.11. Kirjalle oma kassi (voit tuoda omat vanhat farkut mukaan)</p><p>12.12. Tonttulakkien ompelu</p><p>19.12. Joulusukan ompelu. </p><p><br></p><p>Teemat täydentyvät syksyn aikana.</p>",
                "sv": "<p>Behöver du stöd till dina sömnadsproblem av andra som också syr eller hjälp med att använda symaskin? Eller behöver du bara gott sällskap som uppmuntrar till att främja ett sy- eller reparationsarbete? Välkommen till Sömnadskliniken! Vi träffas i Lippulaivabibliotekets Paja-verkstad på torsdagar 5.9.-12.12.2024 kl. 18.00-20.00.</p><p>Bibliotekets symaskiner, overlockmaskiner, täcksömsmaskin och annan syutrustning står till deltagarnas förfogande. En av bibliotekets personal erbjuder hjälp med att använda maskinerna. Därtill hjälper och rådger man varandra!</p>",
                "en": "<p>Need peer support for your sewing problems or help with your sewing machine? Or do you just need some good company to cheer you on in your sewing or mending? Welcome to the Sewing Clinic! We meet at the Lippulaivan Library workshop on Thursdays 5.9.-12.12.2024 from 18.00-20.00.</p><p>Sewing machines, sewing machines, sewing machines, quilting machines and other sewing equipment will be available for participants. A library staff member will provide guidance on how to use the equipment. We will also help and advise each</p>"
            },
            "name": {
                "fi": "Ompeluklinikka",
                "sv": "Sömnadskliniken",
                "en": "Sewing clinic"
            },
            "short_description": {
                "fi": "Tarvitsetko vertaistukea ompelupulmiisi tai apua ompelukoneen käyttöön?",
                "sv": "Behöver du stöd till dina sömnadsproblem av andra som också syr eller hjälp med att använda symaskin? ",
                "en": "Need peer support for your sewing problems or help with your sewing machine?"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7e4anhq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64609",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-villi-robotti-3735787/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-villi-robotti-3735787/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-villi-robotti-3735787/"
                    },
                    "description": null,
                    "price": {
                        "fi": "5 €",
                        "sv": "5 €",
                        "en": "5 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152592,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-24T11:14:01.198934Z",
                    "last_modified_time": "2024-09-24T11:14:01.198951Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745748.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-24T11:14:01.186876Z",
            "last_modified_time": "2024-09-24T11:14:01.235416Z",
            "date_published": null,
            "start_time": "2024-10-19T12: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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8C44001ECDCCF80FA1731AEDF34F6264/Villi_robotti_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8C44001ECDCCF80FA1731AEDF34F6264/Villi_robotti_7_",
                "en": "http://www.malmitalo.fi/en/events/event/8C44001ECDCCF80FA1731AEDF34F6264/Villi_robotti_7_"
            },
            "description": {
                "fi": "<p>DreamWorks Animation tuo elokuvateattereihin Peter Brownin rakastettuihin lastenkirjoihin perustuvan elokuvan Villi robotti.</p><p>Eeppinen seikkailu seuraa robotti ROZZUM yksikkö 7134:ää, tuttavallisemmin Rozia. Kun robotti haaksirikkoutuu asumattomalle saarelle, täytyy hänen oppia sopeutumaan karuun ympäristöön ja luomaan suhteita saaren eläimiin. Lopulta hän ryhtyy orvon hanhenpoikasen kasvattivanhemmaksi.</p><p>Peter Brownin ensimmäinen Villi robotti-kirja julkaistiin <br>Yhdysvalloissa vuonna 2016 ja siitä tuli välittömästi ilmiö. Kirjasta on sittemmin kasvanut trilogia. Brownin kirjasarja on voittanut lukuisia palkintoja.</p><p>Elokuva on puhuttu suomeksi.</p><p>Kesto 102 min<br>Ikäraja 7<br>Ensi-ilta 27.9.2024</p>",
                "sv": "<p>Från DreamWorks Animation kommer en ny adaption av den litterära sensationen, Peter Browns älskade, prisbelönta bästsäljare, The Wild Robot.</p><p>Det episka äventyret följer en robots (ROZZUM-enhet 7134, förkortat \"Roz\") resa som förlist på en obebodd ö där den måste anpassa sig till de tuffa omgivningarna, bygga relationer med djuren på ön samt bli adoptivförälder till en föräldralös gåsunge.</p><p>Peter Browns The Wild Robot, en illustrerad roman för större barn, publicerades första gången 2016 och blev ett fenomen som hamnade på första plats i New York Times bestsellerlista.</p><p>Filmen talas på finska.</p><p>Längd: 102 min</p>",
                "en": "<p>From DreamWorks Animation comes a new adaptation of a literary sensation, Peter Brown’s beloved, award-winning, #1 New York Times bestseller, The Wild Robot.</p><p>The epic adventure follows the journey of a robot—ROZZUM unit 7134, “Roz” for short — that is shipwrecked on an uninhabited island and must learn to adapt to the harsh surroundings, gradually building relationships with the animals on the island and becoming the adoptive parent of an orphaned gosling.</p><p>Peter Brown’s The Wild Robot, an illustrated middle-grade novel first published in 2016, became a phenomenon, rocketing to #1 on the New York Times bestseller list.</p><p>The film is dubbed in Finnish.</p><p>Duration: 102 min</p>"
            },
            "name": {
                "fi": "Villi robotti (7) – Kino Helios",
                "sv": "Villi robotti (7) – Kino Helios",
                "en": "Villi robotti (7) – Kino Helios"
            },
            "short_description": {
                "fi": "DreamWorks Animation tuo elokuvateattereihin Peter Brownin rakastettuihin lastenkirjoihin perustuvan elokuvan Villi robotti.",
                "sv": "Från DreamWorks Animation kommer en ny adaption av den litterära sensationen, Peter Browns älskade, prisbelönta bästsäljare, The Wild Robot.",
                "en": "From DreamWorks Animation comes a new adaptation of a literary sensation, Peter Brown’s beloved, award-winning, #1 New York Times bestseller, The Wild Robot."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64609/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64608",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-villi-robotti-3735787/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-villi-robotti-3735787/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-villi-robotti-3735787/"
                    },
                    "description": null,
                    "price": {
                        "fi": "5 €",
                        "sv": "5 €",
                        "en": "5 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152591,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-24T11:13:59.361170Z",
                    "last_modified_time": "2024-09-24T11:13:59.361192Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745739.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152591/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-24T11:13:59.346611Z",
            "last_modified_time": "2024-09-24T11:13:59.402575Z",
            "date_published": null,
            "start_time": "2024-10-12T12: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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CA22CB9CA703E3672A62352FBFF34AD0/Villi_robotti_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CA22CB9CA703E3672A62352FBFF34AD0/Villi_robotti_7_",
                "en": "http://www.malmitalo.fi/en/events/event/CA22CB9CA703E3672A62352FBFF34AD0/Villi_robotti_7_"
            },
            "description": {
                "fi": "<p>DreamWorks Animation tuo elokuvateattereihin Peter Brownin rakastettuihin lastenkirjoihin perustuvan elokuvan Villi robotti.</p><p>Eeppinen seikkailu seuraa robotti ROZZUM yksikkö 7134:ää, tuttavallisemmin Rozia. Kun robotti haaksirikkoutuu asumattomalle saarelle, täytyy hänen oppia sopeutumaan karuun ympäristöön ja luomaan suhteita saaren eläimiin. Lopulta hän ryhtyy orvon hanhenpoikasen kasvattivanhemmaksi.</p><p>Peter Brownin ensimmäinen Villi robotti-kirja julkaistiin <br>Yhdysvalloissa vuonna 2016 ja siitä tuli välittömästi ilmiö. Kirjasta on sittemmin kasvanut trilogia. Brownin kirjasarja on voittanut lukuisia palkintoja.</p><p>Elokuva on puhuttu suomeksi.</p><p>Kesto 102 min<br>Ikäraja 7<br>Ensi-ilta 27.9.2024</p>",
                "sv": "<p>Från DreamWorks Animation kommer en ny adaption av den litterära sensationen, Peter Browns älskade, prisbelönta bästsäljare, The Wild Robot.</p><p>Det episka äventyret följer en robots (ROZZUM-enhet 7134, förkortat \"Roz\") resa som förlist på en obebodd ö där den måste anpassa sig till de tuffa omgivningarna, bygga relationer med djuren på ön samt bli adoptivförälder till en föräldralös gåsunge.</p><p>Peter Browns The Wild Robot, en illustrerad roman för större barn, publicerades första gången 2016 och blev ett fenomen som hamnade på första plats i New York Times bestsellerlista.</p><p>Filmen talas på finska.</p><p>Längd: 102 min</p>",
                "en": "<p>From DreamWorks Animation comes a new adaptation of a literary sensation, Peter Brown’s beloved, award-winning, #1 New York Times bestseller, The Wild Robot.</p><p>The epic adventure follows the journey of a robot—ROZZUM unit 7134, “Roz” for short — that is shipwrecked on an uninhabited island and must learn to adapt to the harsh surroundings, gradually building relationships with the animals on the island and becoming the adoptive parent of an orphaned gosling.</p><p>Peter Brown’s The Wild Robot, an illustrated middle-grade novel first published in 2016, became a phenomenon, rocketing to #1 on the New York Times bestseller list.</p><p>The film is dubbed in Finnish.</p><p>Duration: 102 min</p>"
            },
            "name": {
                "fi": "Villi robotti (7) – Kino Helios",
                "sv": "Villi robotti (7) – Kino Helios",
                "en": "Villi robotti (7) – Kino Helios"
            },
            "short_description": {
                "fi": "DreamWorks Animation tuo elokuvateattereihin Peter Brownin rakastettuihin lastenkirjoihin perustuvan elokuvan Villi robotti.",
                "sv": "Från DreamWorks Animation kommer en ny adaption av den litterära sensationen, Peter Browns älskade, prisbelönta bästsäljare, The Wild Robot.",
                "en": "From DreamWorks Animation comes a new adaptation of a literary sensation, Peter Brown’s beloved, award-winning, #1 New York Times bestseller, The Wild Robot."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64608/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64607",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-villi-robotti-3735787/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-villi-robotti-3735787/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-villi-robotti-3735787/"
                    },
                    "description": null,
                    "price": {
                        "fi": "5 €",
                        "sv": "5 €",
                        "en": "5 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152590,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-24T11:13:58.177803Z",
                    "last_modified_time": "2024-09-24T11:13:58.177824Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745730.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152590/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-24T11:13:58.153412Z",
            "last_modified_time": "2024-09-24T11:13:58.235928Z",
            "date_published": null,
            "start_time": "2024-10-05T12: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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CE193E4971FFAC51401F150D7328D9AB/Villi_robotti_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CE193E4971FFAC51401F150D7328D9AB/Villi_robotti_7_",
                "en": "http://www.malmitalo.fi/en/events/event/CE193E4971FFAC51401F150D7328D9AB/Villi_robotti_7_"
            },
            "description": {
                "fi": "<p>DreamWorks Animation tuo elokuvateattereihin Peter Brownin rakastettuihin lastenkirjoihin perustuvan elokuvan Villi robotti.</p><p>Eeppinen seikkailu seuraa robotti ROZZUM yksikkö 7134:ää, tuttavallisemmin Rozia. Kun robotti haaksirikkoutuu asumattomalle saarelle, täytyy hänen oppia sopeutumaan karuun ympäristöön ja luomaan suhteita saaren eläimiin. Lopulta hän ryhtyy orvon hanhenpoikasen kasvattivanhemmaksi.</p><p>Peter Brownin ensimmäinen Villi robotti-kirja julkaistiin <br>Yhdysvalloissa vuonna 2016 ja siitä tuli välittömästi ilmiö. Kirjasta on sittemmin kasvanut trilogia. Brownin kirjasarja on voittanut lukuisia palkintoja.</p><p>Elokuva on puhuttu suomeksi.</p><p>Kesto 102 min<br>Ikäraja 7<br>Ensi-ilta 27.9.2024</p>",
                "sv": "<p>Från DreamWorks Animation kommer en ny adaption av den litterära sensationen, Peter Browns älskade, prisbelönta bästsäljare, The Wild Robot.</p><p>Det episka äventyret följer en robots (ROZZUM-enhet 7134, förkortat \"Roz\") resa som förlist på en obebodd ö där den måste anpassa sig till de tuffa omgivningarna, bygga relationer med djuren på ön samt bli adoptivförälder till en föräldralös gåsunge.</p><p>Peter Browns The Wild Robot, en illustrerad roman för större barn, publicerades första gången 2016 och blev ett fenomen som hamnade på första plats i New York Times bestsellerlista.</p><p>Filmen talas på finska.</p><p>Längd: 102 min</p>",
                "en": "<p>From DreamWorks Animation comes a new adaptation of a literary sensation, Peter Brown’s beloved, award-winning, #1 New York Times bestseller, The Wild Robot.</p><p>The epic adventure follows the journey of a robot—ROZZUM unit 7134, “Roz” for short — that is shipwrecked on an uninhabited island and must learn to adapt to the harsh surroundings, gradually building relationships with the animals on the island and becoming the adoptive parent of an orphaned gosling.</p><p>Peter Brown’s The Wild Robot, an illustrated middle-grade novel first published in 2016, became a phenomenon, rocketing to #1 on the New York Times bestseller list.</p><p>The film is dubbed in Finnish.</p><p>Duration: 102 min</p>"
            },
            "name": {
                "fi": "Villi robotti (7) – Kino Helios",
                "sv": "Villi robotti (7) – Kino Helios",
                "en": "Villi robotti (7) – Kino Helios"
            },
            "short_description": {
                "fi": "DreamWorks Animation tuo elokuvateattereihin Peter Brownin rakastettuihin lastenkirjoihin perustuvan elokuvan Villi robotti.",
                "sv": "Från DreamWorks Animation kommer en ny adaption av den litterära sensationen, Peter Browns älskade, prisbelönta bästsäljare, The Wild Robot.",
                "en": "From DreamWorks Animation comes a new adaptation of a literary sensation, Peter Brown’s beloved, award-winning, #1 New York Times bestseller, The Wild Robot."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64607/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agjchunhba",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-09-24T11:13:58.196765Z",
            "last_modified_time": "2024-09-24T11:13:58.196785Z",
            "date_published": "2024-09-24T11:07:00Z",
            "start_time": "2024-10-16T10:00:00Z",
            "end_time": "2024-10-16T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Oletko sinä Sellon kirjaston Martio Kart mestari? Tervetuloa mukaan kaikille avoimeen pelitapahtumaan.</p>",
                "sv": "<p>Är du mästare i Martio Kart på Sellobiblioteket? Välkommen till detta öppna spelevenemang.</p>",
                "en": "<p>Are you the Martio Kart champion of the Sello library? Welcome to this open gaming event.</p>"
            },
            "name": {
                "fi": "Mario Kart -turnaus",
                "sv": "Mario Kart-turnering",
                "en": "Mario Kart tournament"
            },
            "short_description": {
                "fi": "Mario Kart -turnaus",
                "sv": "Mario Kart-turnering",
                "en": "Mario Kart tournament"
            },
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjchunhba/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64254",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/rno-marco-lundberg-suuri-suomalainen-tangolaulukirja-vol-5-taisto-tammi-3729790/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/rno-marco-lundberg-suuri-suomalainen-tangolaulukirja-vol-5-taisto-tammi-3729790/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/rno-marco-lundberg-suuri-suomalainen-tangolaulukirja-vol-5-taisto-tammi-3729790/"
                    },
                    "description": null,
                    "price": {
                        "fi": "23 €",
                        "sv": "23 €",
                        "en": "23 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151823,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T14:14:56.216566Z",
                    "last_modified_time": "2024-07-24T14:14:56.216581Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755071.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151823/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-24T14:14:56.184303Z",
            "last_modified_time": "2024-09-24T10:15:09.819473Z",
            "date_published": null,
            "start_time": "2024-10-18T15: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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D97E31C9345F764172925E62B84D32EA/RNO_Marco_Lundberg_Suuri_Suomalainen_tangolaulukirja_vol_5_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D97E31C9345F764172925E62B84D32EA/RNO_Marco_Lundberg_Den_stora_finska_tangosangboken_vol_5_",
                "en": "http://www.vuotalo.fi/en/events/event/D97E31C9345F764172925E62B84D32EA/RNO_Marco_Lundberg_The_Great_Finnish_Tango_Songbook_Vol_5"
            },
            "description": {
                "fi": "<p>Juonnetussa konsertissa kuullaan Taisto Tammen levyttämää ja tunnetuksi tekemää musiikkia alkuperäissovituksina. RNO Tango johtajanaan Riku Niemi ja solistinaan Marco Lundberg.</p><p>Taisto Tammi (oik. Taisto Lundberg) ehti lyhyeksi jääneen elämänsä aikana jättää lähtemättömän jäljen suomalaiseen musiikkiin. Taisto Tammen lämmin ääni ja sydämeen käyvät tulkinnat ovat useiden levytysten ansiosta edelleen merkittävä ja elävä osa suomalaista iskelmämusiikkia ja tangokulttuuria. RNO Tango on kutsunut solistikseen Marco Lundbergin, jonka kanssa orkesteri on aiemmin levyttänytkin Taisto Tammen musiikkia. Marco Lundbergin suhde Taisto Tammen musiikkin on poikkeuksellisen läheinen: Lundberg on Taisto Tammen veljenpoika.</p><p>Marco Lundberg tunnetaan monipuolisena laulajana. Suomalaisen tangon esittäjänä hän nousi suuren yleisön tietoisuuteen voitettuaan Tangomarkkinoiden tangokuninkuuden kesällä 2016. Lundberg tunnetaan myös hienostuneista ja sävykkäistä perinteisen viihdemusiikin tulkinnoistaan.</p><p>RNO Tango on vuonna 2005 perustetun Riku Niemi Orchestran (RNO) kymmenhenkinen kokoonpano, jonka toiminta-ajatus perustuu suomalaisen tangon tyylien tutkimiseen ja esittämiseen alkuperäissovituksina ja niitä kunnioittavina orkestraatioina. Useimmissa tapauksissa tämä tarkoittaa sovitusten transkriptointia äänilevyiltä ja muilta historiallisilta taltioinneilta. Kokoonpanon repertuaari on laaja ja kattaa suomalaisia tangoja 1930-luvulta tähän päivään.</p><p>RNO Tango joht. Riku Niemi, solistinaan Marco Lundberg.</p><p>Kesto: 2 t, sis. väliajan</p>",
                "sv": "<p>På den här värdledda konserten får vi höra originalarrangemang av musik som spelats in och gjorts känd av Taisto Tammi. RNO Tango leds av Riku Niemi, solist Marco Lundberg.</p><p>Under sitt korta liv hann Taisto Tammi (egentligen Taisto Lundberg) lämna sin outplånliga prägel på den finländska musiken. Tack vare hans många inspelningar är Taisto Tammis varma röst och innerliga tolkningar fortfarande en viktig och levande del av den finländska schlagermusiken och tangokulturen. Som solist har RNO Tango bjudit in Marco Lundberg som även tidigare har spelat in Taisto Tammis musik tillsammans med orkestern. Marco Lundbergs relation till Taisto Tammis musik är exceptionellt nära: Lundberg är brorson till Taisto Tammi.</p><p>Marco Lundberg är känd som en mångsidig sångare. Den stora publiken blev medveten om honom som tolkare av finländsk tango efter att han kröntes till tangokung på Tangomarknaden sommaren 2016. Lundberg är också känd för sina sofistikerade och nyanserade tolkningar av traditionell underhållningsmusik.</p><p>RNO Tango är Riku Niemi Orchestras (RNO) tiomannaensemble som grundades år 2005. RNO Tangos verksamhetsidé är att utforska stilriktningar inom finsk tango och framföra dem i originalarrangemang och orkestreringar som högaktar dem. I de flesta fall innebär detta transkribering av arrangemang från skivor och andra historiska inspelningar. Ensemblens repertoar är omfattande och omfattar finsk tango från 1930-talet fram till i dag.</p><p>RNO Tango leds av Riku Niemi, solist Marco Lundberg.</p>",
                "en": "<p>The hosted concert will feature music recorded and made famous by Taisto Tammi in original arrangements. RNO Tango led by Riku Niemi, with Marco Lundberg as lead vocalist.</p><p>Taisto Tammi (born Taisto Lundberg) left an indelible mark on Finnish music during his short life. Thanks to several records, Taisto Tammi's warm voice and heartfelt performances are still a significant and lively part of Finnish pop music and tango culture. RNO Tango has invited Marco Lundberg, with whom the orchestra has previously recorded Taisto Tammi's music to be the vocalist. Marco Lundberg has an exceptionally close relationship with Taisto Tammi's music: Lundberg is Taisto Tammi’s nephew.</p><p>Marco Lundberg is known for his versatile singing. As a performer of Finnish tango, he rose to the attention of the general public after winning the prize of the tango king at the Tangomarkkinat festival in the summer of 2016. Lundberg is also known for his sophisticated and tonal interpretations of traditional entertainment music.</p><p>RNO Tango is a ten-piece ensemble of the Riku Niemi Orchestra (RNO), founded in 2005, whose mission is based on studying and presenting the styles of Finnish tango as original arrangements and respectful orchestrations. In most cases, this means transcribing the arrangements from records and other historical recordings. The repertoire of the ensemble is extensive and covers Finnish tango from the 1930s to the present day.</p><p>RNO Tango led by Riku Niemi, with Marco Lundberg as lead vocalist.</p>"
            },
            "name": {
                "fi": "RNO & Marco Lundberg: Suuri Suomalainen tangolaulukirja vol. 5 – Taisto Tammi",
                "sv": "RNO & Marco Lundberg: Den stora finska tangosångboken vol. 5 – Taisto Tammi",
                "en": "RNO & Marco Lundberg: The Great Finnish Tango Songbook Vol. 5 – Taisto Tammi"
            },
            "short_description": {
                "fi": "Juonnetussa konsertissa kuullaan Taisto Tammen levyttämää ja tunnetuksi tekemää musiikkia alkuperäissovituksina. RNO Tango johtajanaan Riku Niemi ja solistinaan Marco Lundberg.",
                "sv": "På den här värdledda konserten får vi höra originalarrangemang av musik som spelats in och gjorts känd av Taisto Tammi. RNO Tango leds av Riku Niemi, solist Marco Lundberg.",
                "en": "The hosted concert will feature music recorded and made famous by Taisto Tammi in original arrangements. RNO Tango led by Riku Niemi, with Marco Lundberg as lead vocalist."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64254/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:07430782-1090-485a-823d-4aab19e4a564",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=MKtest_23092024_no3_TPR-kokonaisuus_ja_LE-tapahtuman_uudet_tiedot_user_story_564245956443"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 152588,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-24T10:14:49.448255Z",
                    "last_modified_time": "2024-09-24T10:14:49.448277Z",
                    "name": "Tämä on kuvatekstiä",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e477da3e-2609-ef11-9f8a-000d3ab363c5",
                    "cropping": "",
                    "photographer_name": "Leif Linssi",
                    "alt_text": "Tämä on alt-tekstiä",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152588/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-09-24T10:14:50.906377Z",
            "last_modified_time": "2024-09-24T10:14:50.906401Z",
            "date_published": "2024-09-24T10:11:29Z",
            "start_time": "2024-09-26T22:30:00Z",
            "end_time": "2024-09-26T23:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 0,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-09-01T08:00:00+03:00",
            "enrolment_end_time": "2024-09-18T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Business Helsinfors"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<div><p>Tämä on tosi pitkä kuvaus</p></div>"
            },
            "name": {
                "fi": "MKtest 24092024 no:1 TPR-kokonaisuus ja LE-tapahtuman uudet tiedot (user story 564"
            },
            "short_description": {
                "fi": "Tämä on tosi lyhyt kuvaus"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:07430782-1090-485a-823d-4aab19e4a564/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}