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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 24654,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=237",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=235"
    },
    "data": [
        {
            "id": "espoo_le:agmk23ex3y",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ey7q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490234,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-29T11:04:17.046656Z",
                    "last_modified_time": "2024-12-29T11:04:17.046676Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cf9fc4bb-3edd-4954-961e-d7bb3ba2ad8a.jpg",
                    "cropping": "426,0,2981,2556",
                    "photographer_name": "",
                    "alt_text": "Askarteluhetki, erilaisia tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490234/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-29T11:09:00.678545Z",
            "last_modified_time": "2024-12-29T11:09:00.678567Z",
            "date_published": null,
            "start_time": "2025-06-04T13:00:00Z",
            "end_time": "2025-06-04T15: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,
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. ",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits. "
            },
            "description": {
                "fi": "<p>Joka keskiviikko Sellon kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina ja ideoijina toimivat kirjastolaiset. Toimintaan ei tarvitse ilmoittauta etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p>",
                "sv": "<p>Varje onsdag bjuder Sello biblioteks verkstad Paja in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p>",
                "en": "<p>Every Wednesday, Sello library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p>"
            },
            "name": {
                "fi": "Askartelua Sellon kirjaston Pajassa",
                "sv": "Hantverk i Sellobibliotekets verkstad",
                "en": "Crafting in Sello Library's Makerspace"
            },
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askartelua_Sellon_kirjaston_Pajassa(277976)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ex3y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23eyhe",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ey7q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490234,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-29T11:04:17.046656Z",
                    "last_modified_time": "2024-12-29T11:04:17.046676Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cf9fc4bb-3edd-4954-961e-d7bb3ba2ad8a.jpg",
                    "cropping": "426,0,2981,2556",
                    "photographer_name": "",
                    "alt_text": "Askarteluhetki, erilaisia tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490234/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-29T11:09:00.528987Z",
            "last_modified_time": "2024-12-29T11:09:00.529012Z",
            "date_published": null,
            "start_time": "2025-05-28T13:00:00Z",
            "end_time": "2025-05-28T15: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,
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. ",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits. "
            },
            "description": {
                "fi": "<p>Joka keskiviikko Sellon kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina ja ideoijina toimivat kirjastolaiset. Toimintaan ei tarvitse ilmoittauta etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p>",
                "sv": "<p>Varje onsdag bjuder Sello biblioteks verkstad Paja in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p>",
                "en": "<p>Every Wednesday, Sello library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p>"
            },
            "name": {
                "fi": "Askartelua Sellon kirjaston Pajassa",
                "sv": "Hantverk i Sellobibliotekets verkstad",
                "en": "Crafting in Sello Library's Makerspace"
            },
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askartelua_Sellon_kirjaston_Pajassa(277976)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eyhe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23eyti",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ey7q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490234,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-29T11:04:17.046656Z",
                    "last_modified_time": "2024-12-29T11:04:17.046676Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cf9fc4bb-3edd-4954-961e-d7bb3ba2ad8a.jpg",
                    "cropping": "426,0,2981,2556",
                    "photographer_name": "",
                    "alt_text": "Askarteluhetki, erilaisia tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490234/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-29T11:09:00.356210Z",
            "last_modified_time": "2024-12-29T11:09:00.356231Z",
            "date_published": null,
            "start_time": "2025-05-21T13:00:00Z",
            "end_time": "2025-05-21T15: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,
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. ",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits. "
            },
            "description": {
                "fi": "<p>Joka keskiviikko Sellon kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina ja ideoijina toimivat kirjastolaiset. Toimintaan ei tarvitse ilmoittauta etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p>",
                "sv": "<p>Varje onsdag bjuder Sello biblioteks verkstad Paja in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p>",
                "en": "<p>Every Wednesday, Sello library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p>"
            },
            "name": {
                "fi": "Askartelua Sellon kirjaston Pajassa",
                "sv": "Hantverk i Sellobibliotekets verkstad",
                "en": "Crafting in Sello Library's Makerspace"
            },
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askartelua_Sellon_kirjaston_Pajassa(277976)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eyti/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23ey7q",
            "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"
                },
                {
                    "@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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23exfa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23exqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ex3y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eyhe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eyti/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490234,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-29T11:04:17.046656Z",
                    "last_modified_time": "2024-12-29T11:04:17.046676Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cf9fc4bb-3edd-4954-961e-d7bb3ba2ad8a.jpg",
                    "cropping": "426,0,2981,2556",
                    "photographer_name": "",
                    "alt_text": "Askarteluhetki, erilaisia tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490234/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-29T11:08:54.805759Z",
            "last_modified_time": "2024-12-29T11:08:54.805780Z",
            "date_published": null,
            "start_time": "2025-01-08T14:00:00Z",
            "end_time": "2025-06-18T15: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,
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. ",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits. "
            },
            "description": {
                "fi": "<p>Joka keskiviikko Sellon kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina ja ideoijina toimivat kirjastolaiset. Toimintaan ei tarvitse ilmoittauta etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p>",
                "sv": "<p>Varje onsdag bjuder Sello biblioteks verkstad Paja in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p>",
                "en": "<p>Every Wednesday, Sello library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p>"
            },
            "name": {
                "fi": "Askartelua Sellon kirjaston Pajassa",
                "sv": "Hantverk i Sellobibliotekets verkstad",
                "en": "Crafting in Sello Library's Makerspace"
            },
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askartelua_Sellon_kirjaston_Pajassa(277976)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ey7q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64937",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:755/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152980,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-06T16:13:59.007457Z",
                    "last_modified_time": "2024-11-06T16:13:59.007473Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760687.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152980/?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-11-06T16:13:58.992590Z",
            "last_modified_time": "2024-12-29T06:13:44.946688Z",
            "date_published": null,
            "start_time": "2024-12-28T11: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,
            "short_description": {
                "fi": "Kaikkien suosikkisupersankariperhe palaa elokuvassa Ihmeperhe 2!"
            },
            "description": {
                "fi": "<p>Kaikkien suosikkisupersankariperhe palaa elokuvassa Ihmeperhe 2!</p><p>Tällä kertaa pääosaan nousee Elli, joka jättää Ilun kotiin selviytymään \"normaalin\" arjen sankarina yhdessä Ilonan ja Esan kanssa. Muutos on mullistava kaikille, ja tilannetta mutkistaa vielä se, ettei perhe tiedä, millaisia supervoimia Jaska-vauvalle vielä kehittyykään. Kun uusi konna punoo nerokkaan ja petollisen juonen, perheen tulee Hyytäjän avustuksella löytää keinot puhaltaa taas yhteen hiileen—mikä on helpommin sanottu kuin tehty, vaikka he nyt Ihmeperhe sattuvatkin olemaan.</p><p>Ohjaajanaan Brad Bird (Rautajätti, Ihmeperhe) ja tuottajina John Walker (Ihmeperhe) ja Nicole Grindle (Sanjay’s Super Team -lyhytelokuva, Toy Story 3 apulaistuottaja) Ihmeperhe 2 rynnistää elokuvateattereihin kesällä 2018.</p><p>Kesto 118 min<br>Ikäraja 7 <br>Elokuva on puhuttu suomeksi<br>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "Joululoman ilmaisleffa: Ihmeperhe 2 (7)",
                "sv": "Joululoman ilmaisleffa: Ihmeperhe 2",
                "en": "Joululoman ilmaisleffa: Ihmeperhe 2"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F297058E88996EDE5C67F8337A0E8B22/Joululoman_ilmaisleffa_Ihmeperhe_2_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F297058E88996EDE5C67F8337A0E8B22/Joululoman_ilmaisleffa_Ihmeperhe_2",
                "en": "http://www.malmitalo.fi/en/events/event/F297058E88996EDE5C67F8337A0E8B22/Joululoman_ilmaisleffa_Ihmeperhe_2"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64937/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64936",
            "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/kulke:755/?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": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152979,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-06T16:13:58.882623Z",
                    "last_modified_time": "2024-11-06T16:13:58.882653Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760686.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-06T16:13:58.843764Z",
            "last_modified_time": "2024-12-29T06:13:44.671424Z",
            "date_published": null,
            "start_time": "2024-12-27T11: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,
            "short_description": {
                "fi": "Mei Lee on 13-vuotias itsevarma nörtti, joka tasapainoilee äitinsä velvollisuudentuntoisena tyttärenä ja murrosiän tuoman kaaoksen keskellä."
            },
            "description": {
                "fi": "<p>Mei Lee on 13-vuotias itsevarma nörtti, joka tasapainoilee äitinsä velvollisuudentuntoisena tyttärenä ja murrosiän tuoman kaaoksen keskellä.</p><p>Hänen suojeleva ja määräilevä äitinsä Ming ei ole koskaan kaukana – mikä ei varsinaisesti ilahduta teini-ikäistä. Ja ihan kuin jatkuvat muutokset harrastuksissa, ihmissuhteissa ja kropassa eivät olisi tarpeeksi, aina kun Mei Lee innostuu liikaa (mitä tapahtuu käytännössä jatkuvasti), hän muuttuu jättimäiseksi kultapandaksi!</p><p>Ikäraja 7<br>Kesto 100 min<br>Elokuva on puhuttu suomeksi<br>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "Joululoman ilmaisleffa: Punainen (7)",
                "sv": "Joululoman ilmaisleffa: Punainen (7)",
                "en": "Joululoman ilmaisleffa: Punainen (7)"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3A0E5A182A355FF04FB16D0143FFE86C/Joululoman_ilmaisleffa_Punainen_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3A0E5A182A355FF04FB16D0143FFE86C/Joululoman_ilmaisleffa_Punainen_7_",
                "en": "http://www.malmitalo.fi/en/events/event/3A0E5A182A355FF04FB16D0143FFE86C/Joululoman_ilmaisleffa_Punainen_7_"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64936/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65017",
            "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:348/?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:755/?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": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153551,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T16:15:16.467699Z",
                    "last_modified_time": "2024-12-27T16:15:16.467742Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763509.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153551/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T16:15:16.429302Z",
            "last_modified_time": "2024-12-27T16:15:16.580512Z",
            "date_published": null,
            "start_time": "2025-02-10T16: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,
            "short_description": {
                "fi": "Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjan kahvilan stagella starttaa vieraileva muusikko Ville ”Lefty” Leppänen.",
                "sv": "Börja veckan med fullt hålligång! Gästmusikern Ville “Lefty” Leppänen inleder vårens Juurilla-klubbserie på caféets stage.",
                "en": "Start your week with some catchy tunes! Visiting musician Ville “Lefty” Leppänen will be the first to start this spring’s At the Roots Club series at the café stage."
            },
            "description": {
                "fi": "<p>Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjan kahvilan stagella starttaa vieraileva muusikko Ville ”Lefty” Leppänen.</p><p>Pitkän linjan juurimuusikko Ville “Lefty” Leppänen esittää bluesin, countryn ja muunkin juurimusiikin klassikoita ja tuntemattomampia kappaleita. Kuulemme myös Leftyn omaa tuotantoa.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut</p><p>Kesto: 1 tunti</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Börja veckan med fullt hålligång! Gästmusikern Ville “Lefty” Leppänen inleder vårens Juurilla-klubbserie på caféets stage.</p><p>Den erfarna rootsmusikern Ville “Lefty” Leppänen framför klassiker inom blues, country och annan rootsmusik samt okända låtar. Vi får även höra Leftys egen produktion.</p><p>Den pulserande kärnan i måndagskvällens favoritklubb är jazz, blues, country, folk, rhythm and blues, bluegrass och americana-rootsmusik. Som förut är Juki Välipakka och The Rooty Toot Toot Band värdar för Juurilla-klubben.</p><p>Den pulserande kärnan i måndagskvällens favoritklubb är jazz, blues, country, folk, rhythm and blues, bluegrass och americana-rootsmusik. Som förut är Juki Välipakka och The Rooty Toot Toot Band värdar för Juurilla-klubben.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – sång & gitarr<br>Lasse Sirkko – bas <br>Tommi Lievemaa – gitarr <br>Olli Haavisto – pedalstål<br>Sirpa Suomalainen – saxofon <br>Kepa Kettunen – trummor</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p><p>Längd: 1 t</p>",
                "en": "<p>Start your week with some catchy tunes! Visiting musician Ville “Lefty” Leppänen will be the first to start this spring’s At the Roots Club series at the café stage.</p><p>Longtime roots musician Ville “Lefty” Leppänen performs classics and lesser-known blues, country, and other roots music. We’ll also hear Lefty’s original music.</p><p>The pulsating heart of everyone’s favourite Monday night club is made of jazz, blues, country, folk, rhythm and blues, bluegrass and Americana roots music. As usual, the club hosts are Juki Välipakka and The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – vocals & guitar<br>Lasse Sirkko – bass <br>Tommi Lievemaa – guitar <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saxophone <br>Kepa Kettunen – drums</p><p>Duration: 1 hour</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "name": {
                "fi": "Juurilla: Ville “Lefty” Leppänen – Maksuttomat maanantait",
                "sv": "Juurilla-klubb: Ville ”Lefty” Leppänen – Kostnadsfria måndagar",
                "en": "At the Roots: Ville ”Lefty” Leppänen – Free Mondays"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/49131E7E64DCD47C58F41C0B6A0C41BF/Juurilla_Ville_Lefty_Leppanen",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/49131E7E64DCD47C58F41C0B6A0C41BF/Juurilla-klubb_Ville_Lefty_Leppanen",
                "en": "http://www.kanneltalo.fi/en/events/event/49131E7E64DCD47C58F41C0B6A0C41BF/At_the_Roots_Ville_Lefty_Leppanen"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65017/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65113",
            "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: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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153355,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T12:14:37.891616Z",
                    "last_modified_time": "2024-12-10T12:14:37.891633Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759412.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153355/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-10T12:14:37.864251Z",
            "last_modified_time": "2024-12-27T15:13:45.766580Z",
            "date_published": null,
            "start_time": "2025-01-08",
            "end_time": "2025-01-12",
            "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,
            "short_description": {
                "fi": "Tennilän fragmentaarista poetiikkaa tapaileva tekstuaalinen valoteos tutkii epigrammin, sisätilan, mielentilan, ulkopuolen ja kirjoituksen välisiä kytkentöjä.",
                "sv": "Olli-Pekka Tenniläs textuella fasadprojektion närmar sig en fragmentarisk poetik och utforskar kopplingarna mellan epigram, inomhusutrymmen, sinnestillstånd, utsidan och skrivande.",
                "en": "Olli-Pekka Tennilä’s textual façade projection, reminiscent of fragmentary poetics, explores the connections between epigrams, interior spaces, states of mind, exterior spaces and writing."
            },
            "description": {
                "fi": "<p>Tennilän fragmentaarista poetiikkaa tapaileva tekstuaalinen valoteos tutkii epigrammin, sisätilan, mielentilan, ulkopuolen ja kirjoituksen välisiä kytkentöjä.</p><p><b>Olli-Pekka Tennilä</b> (s.1980) on jyväskyläläinen runoilija. Hänet tunnetaan fragmentaariseksi kutsutusta tiheästä kielimuodosta. Tennilä on osallistunut lukuisiin eri taidelajeja sekä tieteitä yhdistäviin projekteihin yhteistyössä mm. IC-98:n ja eri yliopistojen kanssa. Paraikaa hän tutkii elämän määritelmien, perimäinformaation ja kirjoituksen käsitteen välisiä kytkentöjä.</p><p>Hänen teoksensa Yksinkeltainen on kaksinkeltaista voitti kirjallisuuden Runeberg-palkinnon.</p><p>Näyttelyn on kuratoinut kuvataiteilija Kirsi Pitkänen ja näyttelyn toteutuksesta vastaa Suomen valotaiteen seura FLASH ry.</p><p>Paikka: Kanneltalon julkisivu ja galleria</p><p><b>8.–12.1. klo 17–20 Lux Helsinki -työpajat</b><br>Heittämällä! – hetken taidetta</p><p>Nyt on sinun vuorosi taiteilla. Tule kokoamaan oma sanaa ja kuvaa yhdistelevä kollaasi ja heijastamaan se Kanneltalon aulaan.</p><p>Luvassa piirtoheittimen taikaa!</p><p>Taidepaja toimii nonstoppina eli voit tulla ja lähteä milloin haluat. Työpaja sopii kaikenikäisille. Taidepajaa ohjaavat taidekasvattaja Aino Malinen, tekstitaituri Venla Niinistö, kuvataiteilija Leena Räsänen ja rap-artisti Anna Tihinen.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Olli-Pekka Tenniläs textuella fasadprojektion närmar sig en fragmentarisk poetik och utforskar kopplingarna mellan epigram, inomhusutrymmen, sinnestillstånd, utsidan och skrivande.</p><p><b>Olli-Pekka Tennilä</b> (f.1980) är en poet från Jyväskylä. Han är känd för sin täta språkform som kallas fragmentarisk. Tennilä har deltagit i talrika projekt som kombinerar olika konstformer och vetenskaper i samarbete med bland annat IC-98 och olika universitet. För tillfället undersöker han kopplingarna mellan olika definitioner, arvsinformation och begreppet skrivande.</p><p>Hans verk Yksinkeltainen on kaksinkeltaista har belönats med Runebergspriset i litteratur.</p><p>Utställningen har kuraterats av bildkonstnär Kirsi Pitkänen och för genomförandet av utställningen svarar Suomen valotaiteen seura FLASH ry.</p><p><b>Lux Helsinki-workshoppar</b><br>NONSTOP-KONSTWORKSHOP<br>Lätt som en plätt! – ögonblickskonst<br>Nu är det din tur att vara konstnärlig. Kom och gör ett eget collage av ord och bilder, och projicera det i Gamlasgårdens lobby. Magi med overheadprojektor utlovas! Konstworkshoppen fungerar nonstop och lämpar sig för alla åldrar. Konstworkshoppen leds av konstpedagog Aino Malinen, textkonstnär Venla Niinistö, bildkonstnär Leena Räsänen och rap-artist Anna Tihinen.</p><p>Fritt inträde</p>",
                "en": "<p>Olli-Pekka Tennilä’s textual façade projection, reminiscent of fragmentary poetics, explores the connections between epigrams, interior spaces, states of mind, exterior spaces and writing.</p><p><b>Olli-Pekka Tennilä</b> (b. 1980) is a poet from Jyväskylä. He is known for his dense, ‘fragmentary’ form of language. Tennilä has participated in numerous projects combining different arts and sciences in collaboration with IC-98 and various universities. He is currently exploring the links between definitions of life, genetic information and the concept of writing.</p><p>His book, Yksinkeltainen on kaksinkeltaista, won the Runeberg Prize for Literature.</p><p>The exhibition is curated by artist Kirsi Pitkänen and organised by the Finnish Light Art Society FLASH ry.</p><p><b>Lux Helsinki workshops</b><br>NONSTOP ART WORKSHOP<br>Heittämällä (projection)! – momentary art<br>Now it’s your turn to make art. Come put together your own collage combining words and images and project it in the Kanneltalo lobby. Experience the magic of overhead projectors! The art workshop runs non-stop and is suitable for all ages. The art workshop will be led by art educator Aino Malinen, text artist Venla Niinistö, visual artist Leena Räsänen and rap artist Anna Tihinen.</p><p>Free admission</p>"
            },
            "name": {
                "fi": "Olli-Pekka Tennilä: Apopteoosi I – fragmentteja ulkopuolelle – Lux Helsinki",
                "sv": "Olli-Pekka Tennilä: Apopteoosi I – fragmentteja ulkopuolelle – Lux Helsinki",
                "en": "Olli-Pekka Tennilä: Apopteoosi I – fragmentteja ulkopuolelle – Lux Helsinki"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F9621215D09DCDDADFD72422D04ADEDE/Olli-Pekka_Tennila_Apopteoosi_I_fragmentteja_ulkopuolelle",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F9621215D09DCDDADFD72422D04ADEDE/Olli-Pekka_Tennila_Apopteoosi_I_fragmentteja_ulkopuolelle",
                "en": "http://www.kanneltalo.fi/en/events/event/F9621215D09DCDDADFD72422D04ADEDE/Olli-Pekka_Tennila_Apopteoosi_I_fragmentteja_ulkopuolelle"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65113/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65112",
            "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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153354,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T12:14:37.693762Z",
                    "last_modified_time": "2024-12-10T12:14:37.693780Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759417.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-10T12:14:37.639070Z",
            "last_modified_time": "2024-12-27T15:13:45.659922Z",
            "date_published": null,
            "start_time": "2025-01-08",
            "end_time": "2025-01-12",
            "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,
            "short_description": {
                "fi": "Lux Helsinki tuo säihkyvää mystisyyttä myös Kanneltalon sisälle. Uskallatko vierailla Totuus-oraakkelissa?",
                "sv": "Besök Totuus-oraklet i Gamlasgårdens galleri!",
                "en": "Visit Kanneltalo Gallery’s Truth oracle!"
            },
            "description": {
                "fi": "<p>Lux Helsinki tuo säihkyvää mystisyyttä myös Kanneltalon sisälle. Uskallatko vierailla Totuus-oraakkelissa?</p><p>Totuus on oraakkelimainen olio, jonka luona ihmiset vierailevat kuullakseen totuuden. Jotta oraakkelin huoneeseen pääsisi sisään, vierailijan on vastattava kysymykseen: Mikä on totuus? Vastaus kirjoitetaan tietokoneelle, ja se voi olla minkäkielinen tahansa. Opimme että totuus on suhteellinen.</p><p>Totuus on interaktiivinen installaatio, jossa kävijät jakavat totuutensa oraakkelin kanssa. Matala tietokoneääni lukee satunnaisessa järjestyksessä ihmisten kirjoittamia totuuksia. Projisoitu valokeila reagoi ääneen, jolloin siitä tulee sekä oraakkelin silmä että suu.</p><p>Installaatio on inspiroitunut, erinäisten oraakkelilegendojen ohella, arkkienkeli Gabrielin torvesta, johon hän puhaltaa tuomiopäivänä. Olion puhuvan suun kartiomainen muoto muistuttaa myös geometrista kuviota, joka on nimetty saman legendan mukaan ”Gabrielin torveksi”. Se on tunnettu matemaattinen paradoksi kuviosta, jolla on ääretön pinta-ala mutta rajallinen tilavuus. Muita inspiraation lähteitä ovat olleet mystinen roomalainen, marmorinen kaivonkansi La Bocca della Verità eli Totuuden suu ja Anthony McCallin Pure Sculpture -teokset.</p><p>Totuus on puhuva ja liikkuva suu tai silmä. Se muodostaa pimeään, teatterisavulla täytettyyn tilaan syvän, hypnoottisen, kolmiulotteisen tunnelin. Valokartion keskustaan, totuuden suuhun tai silmään astuva vierailija kuulee ei yhden vaan useita totuuksia, joita vierailijat ennen häntä ovat jakaneet oraakkelin kanssa.</p><p>Löydät Totuus-oraakkelin Kanneltalon Galleriasta, tervetuloa!</p><p><b>Pietu Pietiäinen</b> (1966) on valo- ja videosuunnittelija ja taiteilija, joka työskentelee pääasiassa suunnittelijana näyttämötuotannoissa ja musiikkiteollisuudessa. Hän toimii myös nykytaidekentällä tarjoten ratkaisuja av-installaatioihin museoihin, gallerioille ja näyttelyihin ympäri maailmaa. Pietiäinen asuu ja työskentelee Helsingissä ja Kotkassa.</p><p><b>Juha Valkeapää</b> (1967) on äänitaiteilija ja esityksentekijä. 30 vuotta kestäneen uransa aikana hän on luonut erimuotoisia, -kuuloisia ja -näköisiä esityksiä, installaatioita, radioteoksia ja äänimaisemia eri puolilla maailmaa.  Hänen taiteensa keskeiset elementit ovat ääni, läsnäolo, leikkisyys, improvisointi ja elävä kontakti yleisöön. Valkeapää asuu Helsingissä.</p><p><b>8.–12.1. klo 17–20 Lux Helsinki -työpajat</b><br>Heittämällä! – hetken taidetta</p><p>Nyt on sinun vuorosi taiteilla. Tule kokoamaan oma sanaa ja kuvaa yhdistelevä kollaasi ja heijastamaan se Kanneltalon aulaan.</p><p>Luvassa piirtoheittimen taikaa!</p><p>Taidepaja toimii nonstoppina eli voit tulla ja lähteä milloin haluat. Työpaja sopii kaikenikäisille. Taidepajaa ohjaavat taidekasvattaja Aino Malinen, tekstitaituri Venla Niinistö, kuvataiteilija Leena Räsänen ja rap-artisti Anna Tihinen.</p>",
                "sv": "<p>Besök Totuus-oraklet i Gamlasgårdens galleri!</p><p>Totuus är ett orakelaktigt väsen, som människor besöker för att få höra sanningen. För att få komma in i oraklets rum ska gästen svara på frågan: Vad är sanning? Svaret skrivs på en dator, och kan vara på vilket språk som helst. Vi lär oss att sanningen är relativ.</p><p>Totuus är en interaktiv installation, där besökarna delar sin sanning med oraklet. En låg datorröst läser upp de sanningar som människor har skrivit in i slumpmässig ordning. Den projicerade ljuskäglan reagerar på rösten och blir då både oraklets öga och mun.</p><p>Utöver av diverse orakellegender har installationen inspirerats av ärkeängeln Gabriels trumpet som han blåser i på domedagen. Väsendets konformiga talande mun påminner också om geometriska figurer, som enligt samma legend har kallats för “Gabriels trumpet”. Det är en känd matematisk paradox med en figur som har en oändlig yta men en begränsad volym. Andra källor till inspiration har varit det mystiska, romerska brunnslocket La Bocca della Verità, det vill säga sanningens mun, och Anthony McCalls verk Pure Sculpture.</p><p>Totuus är en talande och rörlig mun eller ett talande och rörligt öga. Det skapar en djup, hypnotisk, tredimensionell tunnel i det mörka utrymmet som är fyllt av teaterrök. Gästen som stiger in i centrum av ljuskäglan, sanningens mun eller öga får inte höra bara en, utan flera sanningar, som tidigare gäster har delat med oraklet.</p><p><b>Pietu Pietikäinen</b> (1966) är en ljus- och videodesigner och konstnär, som huvudsakligen jobbar som designer för scenproduktioner och inom musikindustrin. Han är också aktiv inom samtidskonsten och erbjuder lösningar till av-installationer för museer, gallerier och utställningar på olika håll i världen. Pietiläinen bor och arbetar i Helsingfors och Kotka.</p><p><b>Juha Valkeapää</b> (1967) är en ljudkonstnär och föreställningsskapare. Under sin 30-åriga karriär har han skapat föreställningar, installationer, radioverk och ljudlandskap av olika former, med olika ljud och utseenden runt om i världen.  De centrala elementen i hans konst är ljud, närvaro, lekfullhet, improvisation och en levande kontakt till publiken. Valkeapää bor i Helsingfors.</p><p><b>Lux Helsinki-workshoppar</b><br>NONSTOP-KONSTWORKSHOP<br>Lätt som en plätt! – ögonblickskonst<br>Nu är det din tur att vara konstnärlig. Kom och gör ett eget collage av ord och bilder, och projicera det i Gamlasgårdens lobby. Magi med overheadprojektor utlovas! Konstworkshoppen fungerar nonstop och lämpar sig för alla åldrar. Konstworkshoppen leds av konstpedagog Aino Malinen, textkonstnär Venla Niinistö, bildkonstnär Leena Räsänen och rap-artist Anna Tihinen.</p><p>Fritt inträde</p>",
                "en": "<p>Visit Kanneltalo Gallery’s Truth oracle!</p><p>Truth is an oracle-like entity that people visit to hear the truth. In order to enter the oracle’s room, a visitor must answer this question: What is truth? The answer is typed into a computer and <br>can be in any language. We learn that truth is relative.</p><p>Truth is an interactive installation where visitors share their truth with the oracle. A low computer voice reads the truths written by people in random order. A projected spotlight responds to sound, becoming both the eye and the mouth of the oracle.</p><p>The installation was inspired, along with various oracle legends, by the Archangel Gabriel’s horn, which he blows on the Day of Judgement. The conical shape of the being’s mouth that speaks also resembles a geometric pattern, which has been named “Gabriel’s horn” in accordance with this legend. It is a well-known mathematical paradox of a pattern with infinite area but finite volume. Other sources of inspiration include the mysterious Roman marble mask, La Bocca della Verità (The Mouth of Truth), and Anthony McCall’s Pure Sculpture pieces.</p><p>Truth is a talking and moving mouth or eye. It creates a deep, hypnotic, three-dimensional tunnel in a dark, theatrical space. A visitor stepping into the centre of the light cone – the mouth or eye of Truth – hears not only one but several truths that have been shared with the oracle by previous visitors.</p><p><b>Pietu Pietiäinen</b> (1966) is a lighting and video designer and artist who works mainly as a designer in stage productions and the music industry. He also works in contemporary art, providing solutions for AV installations for museums, galleries and exhibitions around the world. Pietiäinen lives and works in Helsinki and Kotka.</p><p><b>Juha Valkeapää</b> (1967) is a sound artist and performance creator. In a career spanning 30 years, he has created performances, installations, radio productions and soundscapes of all shapes, sizes and forms around the world.  The central elements of his art are sound, presence, playfulness, improvisation and direct interaction with the audience. Valkeapää lives in Helsinki.</p><p><b>Lux Helsinki workshops</b><br>NONSTOP ART WORKSHOP<br>Heittämällä (projection)! – momentary art<br>Now it’s your turn to make art. Come put together your own collage combining words and images and project it in the Kanneltalo lobby. Experience the magic of overhead projectors! The art workshop runs non-stop and is suitable for all ages. The art workshop will be led by art educator Aino Malinen, text artist Venla Niinistö, visual artist Leena Räsänen and rap artist Anna Tihinen.</p><p>Free admission</p>"
            },
            "name": {
                "fi": "Pietu Pietiäinen & Juha Valkeapää: Totuus – Lux Helsinki",
                "sv": "Pietu Pietiäinen–Juha Valkeapää, Totuus (Sanning) – Lux Helsinki",
                "en": "Pietu Pietiäinen–Juha Valkeapää, Truth – Lux Helsinki"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6E07D07A964F62F4D3295C6CD1F31316/Pietu_Pietiainen_Juha_Valkeapaa_Totuus",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6E07D07A964F62F4D3295C6CD1F31316/Pietu_Pietiainen_Juha_Valkeapaa_Totuus_Sanning_",
                "en": "http://www.kanneltalo.fi/en/events/event/6E07D07A964F62F4D3295C6CD1F31316/Pietu_Pietiainen_Juha_Valkeapaa_Truth"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65112/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23ezlm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p14710/?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:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": 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-12-27T14:42:13.609573Z",
            "last_modified_time": "2024-12-27T14:42:13.609602Z",
            "date_published": "2024-12-27T14:39:00Z",
            "start_time": "2025-05-24T13:00:00Z",
            "end_time": "2025-05-24T13: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,
            "short_description": {
                "fi": "Tervetuloa koko perheen kanssa hauskan ajanvietoon, jossa luemme satuja lapsille ja kaikille arabian kielestä kiinostuneille!"
            },
            "description": {
                "fi": "<p>Tervetuloa koko perheen kanssa hauskan ajanvietoon, jossa luemme satuja lapsille ja kaikille arabian kielestä kiinostuneille!</p>"
            },
            "name": {
                "fi": "Avoin satutunti arabiaksi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ezlm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj5l3qs6i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoerf4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/6rrSCSBJo",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": 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-12-17T17:43:36.193174Z",
            "last_modified_time": "2024-12-23T10:49:32.028352Z",
            "date_published": null,
            "start_time": "2025-05-22T13:00:00Z",
            "end_time": "2025-05-22T15: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,
            "short_description": {
                "fi": "Kaikenikäiset ovat tervetulleita mukaan iloiseen askarteluun Tapiolan kirjastoon! Maksuton, ei ennakkoilmoittautumista.",
                "sv": "Välkommen på en trevlig pysselstund på Hagalunds bibliotek. Evenemanget är gratis, ingen förhandsanmälan krävs.",
                "en": "Welcome to join in the cheerful crafting at Tapiola Library!\nFree of charge, no advance registration required."
            },
            "description": {
                "fi": "<p>Kaikenikäiset ovat tervetulleita mukaan iloiseen askarteluun Tapiolan kirjastoon!</p><p>Maksuton, ei ennakkoilmoittautumista.</p>",
                "sv": "<p>Välkommen på en trevlig pysselstund på Hagalunds bibliotek.</p><p>Evenemanget är gratis, ingen förhandsanmälan krävs.</p>",
                "en": "<p>Welcome to join in the cheerful crafting at Tapiola Library!</p><p>Free of charge, no advance registration required.</p>"
            },
            "name": {
                "fi": "Askartelupaja",
                "sv": "Pysselverkstad",
                "en": "Craft Workshop"
            },
            "info_url": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qs6i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agiojoerf4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/6rrSCSBJo",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoepuu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqb4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqhq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqme/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqq4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqva/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqzq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeq5e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoerbm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qs6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtcu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtha/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtk4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtpa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qts4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qt3u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3quaa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3quem/?format=api"
                }
            ],
            "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-07-24T11:31:00.501603Z",
            "last_modified_time": "2024-12-23T10:49:30.849987Z",
            "date_published": null,
            "start_time": "2024-08-29T13:00:00Z",
            "end_time": "2025-05-22T15: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,
            "short_description": {
                "fi": "Kaikenikäiset ovat tervetulleita mukaan iloiseen askarteluun Tapiolan kirjastoon! Maksuton, ei ennakkoilmoittautumista.",
                "sv": "Välkommen på en trevlig pysselstund på Hagalunds bibliotek. Evenemanget är gratis, ingen förhandsanmälan krävs.",
                "en": "Welcome to join in the cheerful crafting at Tapiola Library!\nFree of charge, no advance registration required."
            },
            "description": {
                "fi": "<p>Kaikenikäiset ovat tervetulleita mukaan iloiseen askarteluun Tapiolan kirjastoon!</p><p>Maksuton, ei ennakkoilmoittautumista.</p>",
                "sv": "<p>Välkommen på en trevlig pysselstund på Hagalunds bibliotek.</p><p>Evenemanget är gratis, ingen förhandsanmälan krävs.</p>",
                "en": "<p>Welcome to join in the cheerful crafting at Tapiola Library!</p><p>Free of charge, no advance registration required.</p>"
            },
            "name": {
                "fi": "Askartelupaja",
                "sv": "Pysselverkstad",
                "en": "Craft Workshop"
            },
            "info_url": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoerf4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "tet:agj6jdplny",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:41835/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:1/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null,
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "tet",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-12-20T14:52:06.398031Z",
            "last_modified_time": "2024-12-20T14:52:06.398049Z",
            "date_published": "2024-12-20T14:52:06.033000Z",
            "start_time": "2024-12-21",
            "end_time": "2024-12-28",
            "custom_data": {
                "spots": "1",
                "org_name": "Bar",
                "website_url": "",
                "contact_email": "fsdf@sdffds.local",
                "contact_phone": "132123123",
                "contact_last_name": "adsffsad",
                "contact_first_name": "asdsfd"
            },
            "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": "Vaisu haamusäätiö sr",
                "sv": "7772192-2"
            },
            "short_description": {
                "fi": "asdasdsaddsa"
            },
            "description": {
                "fi": "asdasdsaddsa"
            },
            "name": {
                "fi": "Foo"
            },
            "info_url": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agj6jdplny/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "tet:agj6jbk7re",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51489/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:1/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null,
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "tet",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-12-20T14:42:46.330308Z",
            "last_modified_time": "2024-12-20T14:42:46.330329Z",
            "date_published": "2024-12-20T14:42:45.893000Z",
            "start_time": "2024-12-21",
            "end_time": "2024-12-22",
            "custom_data": {
                "spots": "1",
                "org_name": "afdsdsf",
                "website_url": "",
                "contact_email": "fdsafds@asfdafds.local",
                "contact_phone": "123213321321",
                "contact_last_name": "asfdsafd",
                "contact_first_name": "afdsafds"
            },
            "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": "Vaisu haamusäätiö sr",
                "sv": "7772192-2"
            },
            "short_description": {
                "fi": "asdfadsf"
            },
            "description": {
                "fi": "asdfadsf"
            },
            "name": {
                "fi": "asfdsafd"
            },
            "info_url": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agj6jbk7re/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "tet:agj6i6qy74",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:72921/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:3/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null,
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "tet",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-12-20T14:30:27.378972Z",
            "last_modified_time": "2024-12-20T14:30:27.378992Z",
            "date_published": "2024-12-20T14:30:26.862000Z",
            "start_time": "2024-12-22",
            "end_time": "2024-12-27",
            "custom_data": {
                "spots": "1",
                "org_name": "sad",
                "website_url": "",
                "contact_email": "safd@adfsasf.local",
                "contact_phone": "132213123",
                "contact_last_name": "asd",
                "contact_first_name": "asad"
            },
            "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": "Vaisu haamusäätiö sr",
                "sv": "7772192-2"
            },
            "short_description": {
                "fi": "asdffds"
            },
            "description": {
                "fi": "asdffds"
            },
            "name": {
                "fi": "ads"
            },
            "info_url": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agj6i6qy74/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64760",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153143,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-03T13:15:38.326950Z",
                    "last_modified_time": "2024-12-03T13:15:38.326966Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760011.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153143/?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-12-03T13:15:38.275509Z",
            "last_modified_time": "2024-12-20T13:14:19.306386Z",
            "date_published": null,
            "start_time": "2025-01-18T09:00:00Z",
            "end_time": "2025-01-18T12: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,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.",
                "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer."
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Kohti kesää</b></p><p>Bzzzzzzzzz, surrrrrrrrrrr, pörrrrrrrrrr...... Muistatko minkälaisia ääniä kukkapenkeistä ja metsistä kuuluu? Nyt siirretään ajatukset jo kohti tulevaa kesää ja kuvitellaan kaikenlaisia rapistelevia, surisevia ja iniseviä otuksia. Tule ja tee oma hyönteisesi osaksi yhteistä taideteosta!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Mot sommaren</b><br>Bzzzzzzzzzzz, surrrrrrrrrrrrrrrrrrr, pörrrrrrrrrrrrrrrr...... Kommer du ihåg vilka ljud man kan höra i blomsterrabatter och skogar? Vi riktar tankarna mot den annalkande sommaren och föreställer oss alla möjliga skrapande, surrande och pipande varelser.</p><p>Kom och gör din egen insekt till en del av ett gemensamt konstverk!</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum.</p><p>Konstlördagen på Annegården är avgiftsfri. <br>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkomna till Annegården på lördagar!</p>",
                "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Towards summer</b><br>Bzzzzzzzzz, hummmmmmm, whirrrrrrrrrrrrr...... Do you remember the sounds of flower beds and forests? We are already shifting our thoughts towards the coming summer and imagining all sorts of crunchy, buzzing and whirling creatures. Come and make your own insect as part of a common work of art!</p><p>No advance skills are required to participate. The language of instruction in the workshops is Finnish, but all languages and language skills are welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space.</p><p>The Annantalo Art Saturday is free of charge.</p><p>A warm welcome to Annantalo on Saturdays!</p>"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Kohti kesää",
                "sv": "Annegårdens konstlördag: Mot sommaren",
                "en": "Annantalo Art Saturday: Towards summer"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/070BFC3A33F593AE0A11C1C9D27CB889/Annantalon_taidelauantai_Kohti_kesaa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/070BFC3A33F593AE0A11C1C9D27CB889/Annegardens_konstlordag_Mot_sommaren_",
                "en": "http://www.annantalo.fi/en/events/event/070BFC3A33F593AE0A11C1C9D27CB889/Annantalo_Art_Saturday_Towards_summer_"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64760/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65115",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153133,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-02T11:13:54.629235Z",
                    "last_modified_time": "2024-12-02T11:13:54.629252Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764065.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153133/?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-12-02T11:13:54.586664Z",
            "last_modified_time": "2024-12-20T13:14:18.666663Z",
            "date_published": null,
            "start_time": "2025-01-16T14:00:00Z",
            "end_time": "2025-01-16T16: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,
            "short_description": {
                "fi": "Tervetuloa Mölymyrsky-kuvakirjan julkaisutilaisuuteen! Ohjelmassa lukuhetki, kasvomaalausta, värityskuvia sekä omien lempi- ja inhokkiäänien jakamista.",
                "sv": "Välkommen till lanseringen av bilderboken Mölymyrsky! I programmet ingår bland annat en lässtund, ansiktsmålning, färgläggning och att dela med sig av ljud som man gillar och ogillar.",
                "en": "Welcome to the release of the Mölymyrsky picture book! The programme includes reading, face painting, colouring pictures and sharing the sounds you love and hate."
            },
            "description": {
                "fi": "<p>Tervetuloa Mölymyrsky-kuvakirjan julkaisutilaisuuteen! Ohjelmassa lukuhetki, kasvomaalausta, värityskuvia sekä omien lempi- ja inhokkiäänien jakamista.</p><p>Juhlan kunniaksi kuunnellaan myös juhlamaljojen kilistelyä ja herkutellaan.</p><p>Mölymyrsky on viisas ja lempeä kuvakirja herkästä Saulista, joka kaipaa hiljaisuutta meluisan arjen keskellä. Kaikkialla on kiljuntaa, mölinää, ölinää, räminää ja ryminää. Sauli taas rakastaa sadepäiviä ja pieniä ääniä, avaimen rapinaa lukossa ja sukkapuikkojen kilahtelua. Kun hän tutustuu äänekkääseen Remiin, hermot joutuvat koetukselle. Onneksi yhteinen sävel on mahdollista löytää – avuksi tarvitaan vain… Shhhmies!</p><p>Teos on suunnattu 3-vuotiaasta ylöspäin ja se on WSOY:n kustantama.</p><p>Tilaisuudessa on mahdollista ostaa kirjoja julkkarihintaan.</p><p>Kirjajulkkarit järjestävät kirjantekijät Heli Rantala ja Netta Lehtola yhdessä Annantalon kanssa.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p>",
                "sv": "<p>Välkommen till lanseringen av bilderboken Mölymyrsky! I programmet ingår bland annat en lässtund, ansiktsmålning, färgläggning och att dela med sig av ljud som man gillar och ogillar.</p><p>Festen till ära kommer vi också att klinga i glasen och njuta av läckerheter.</p><p>Mölymyrsky är en klok och mild bilderbok om den känslige Sauli, som längtar efter tystnad mitt i den bullriga vardagen. Överallt är det skrik, vrål, tjut, skräll och dunk. Men Sauli älskar regniga dagar och små ljud, skrapet av en nyckel i låset och klinket av strumpstickor. När han träffar den högljudda Remi sätts hans nerver på prov. Lyckligtvis går det att hitta en gemensam melodi – man behöver bara hjälp av... Shhhmannen!</p><p>Boken är riktad till barn från 3 år och uppåt och ges ut av WSOY.<br>På evenemanget finns böcker att köpa till lanseringspris.</p><p>Boklanseringen arrangeras av bokens upphovsmän Heli Rantala och Netta Lehtola tillsammans med Annegården.</p><p>Fritt inträde, ingen förhandsanmälan.</p>",
                "en": "<p>Welcome to the release of the Mölymyrsky picture book! The programme includes reading, face painting, colouring pictures and sharing the sounds you love and hate.</p><p>In honour of the celebration, we will also listen to the clinking of festive drinks and feast.</p><p>Mölymyrsky is a wise and gentle picture book of the sensitive Sauli, who needs some peace and quiet in the middle of a noisy everyday life. Wherever you go, there is so much screaming, rumbling, clamouring, rattling and clattering. Sauli, on the other hand, loves rainy days and small noises, like the rattling of a key in the lock and the clinking of knitting needles. When he gets to know the noisy Remi, his nerves are put to the test. Fortunately, it is possible to find a common tune. All it takes is… Shhhmies!</p><p>The book is meant for children aged 3 and up. The book is published by WSOY.</p><p>The book will be on sale at a special release price at the event.<br>The book launch is organised by authors Heli Rantala and Netta Lehtola together with Annantalo.</p><p>Free admission, no advance registration.</p>"
            },
            "name": {
                "fi": "Meteliä hiljaisuuden puolesta! – Mölymyrsky-kirjan julkaisutilaisuus",
                "sv": "Meteliä hiljaisuuden puolesta! (Oväsen för tystnaden!) – Boklansering av Mölymyrsky-boken",
                "en": "Make some noise for silence! – Book release for Mölymyrsky"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D81F88D0EB34B3B7AF2C3AC3B656C1EC/Metelia_hiljaisuuden_puolesta_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D81F88D0EB34B3B7AF2C3AC3B656C1EC/Metelia_hiljaisuuden_puolesta_Ovasen_for_tystnaden_",
                "en": "http://www.annantalo.fi/en/events/event/D81F88D0EB34B3B7AF2C3AC3B656C1EC/Make_some_noise_for_silence_"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65115/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65013",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?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:755/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153373,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T13:14:17.593133Z",
                    "last_modified_time": "2024-12-10T13:14:17.593148Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763499.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153373/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-12-10T13:14:17.557161Z",
            "last_modified_time": "2024-12-20T01:14:51.114369Z",
            "date_published": null,
            "start_time": "2025-05-19T15: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,
            "short_description": {
                "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!",
                "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!",
                "en": "Nothing is more fun than singing – except for singing together!"
            },
            "description": {
                "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko <b>Mari Kätkä.</b></p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Kesto: 1 tunti<br>Vapaa pääsy</p>",
                "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. <b>Mari Kätkä</b> leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by <b>Mari Kätkä.</b></p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p><p>Duration: 1 h</p>"
            },
            "name": {
                "fi": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/66A42D118DE83DC8D2AFB68AD83554EB/Nyt_lauletaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/66A42D118DE83DC8D2AFB68AD83554EB/Nu_sjunger_vi_",
                "en": "http://www.kanneltalo.fi/en/events/event/66A42D118DE83DC8D2AFB68AD83554EB/Let_us_sing_"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65013/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65303",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153505,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T14:14:59.987277Z",
                    "last_modified_time": "2024-12-18T14:14:59.987293Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760136.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153505/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-12-18T14:14:59.958797Z",
            "last_modified_time": "2024-12-20T01:14:50.591465Z",
            "date_published": null,
            "start_time": "2025-05-06T11: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,
            "short_description": {
                "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.",
                "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.",
                "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa."
            },
            "description": {
                "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Kesto: 1 tunti<br>Ohjauskieli: suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde</p>",
                "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>"
            },
            "name": {
                "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa",
                "sv": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa",
                "en": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/3C272CE22EB094FF2CBF703E0C3FBC81/Paivatanssit",
                "sv": "http://www.stoa.fi/sv/evenemang/event/3C272CE22EB094FF2CBF703E0C3FBC81/Paivatanssit",
                "en": "http://www.stoa.fi/en/events/event/3C272CE22EB094FF2CBF703E0C3FBC81/Paivatanssit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65303/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65302",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153504,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T14:14:57.772855Z",
                    "last_modified_time": "2024-12-18T14:14:57.772869Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760135.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153504/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-12-18T14:14:57.746423Z",
            "last_modified_time": "2024-12-20T01:14:47.297541Z",
            "date_published": null,
            "start_time": "2025-04-08T11: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,
            "short_description": {
                "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.",
                "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.",
                "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa."
            },
            "description": {
                "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi<br>Vapaa pääsy.</p>",
                "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde</p>",
                "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>"
            },
            "name": {
                "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa",
                "sv": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa",
                "en": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/60007D37346B063102E3783A1DFDA99D/Paivatanssit",
                "sv": "http://www.stoa.fi/sv/evenemang/event/60007D37346B063102E3783A1DFDA99D/Paivatanssit",
                "en": "http://www.stoa.fi/en/events/event/60007D37346B063102E3783A1DFDA99D/Paivatanssit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65302/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}