Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 18628,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=194",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=192"
    },
    "data": [
        {
            "id": "espoo_le:aghoc4onc4",
            "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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-11T09:21:20.460407Z",
            "last_modified_time": "2024-04-11T09:21:20.460431Z",
            "date_published": "2024-04-11T07:27:00Z",
            "start_time": "2024-06-19T13:00:00Z",
            "end_time": "2024-06-19T14: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,
            "name": {
                "fi": "Juhannustanssit",
                "sv": "Midsommar danser",
                "en": "Midsummer dances"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Estradi",
                "sv": "Estradi",
                "en": "Estradi"
            },
            "short_description": {
                "fi": "Viihdeorkesteri JarmosBand tempaa mukaansa tanssin pyörteisiin.",
                "sv": "Underhållningsorkestern JarmosBand sveper med dig in i dansens virvlar.",
                "en": "The entertainment orchestra JarmosBand sweeps you into the whirlwind of dance."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Viihdeorkesteri JarmosBand tempaa mukaansa tanssin pyörteisiin.</p>",
                "sv": "<p>Underhållningsorkestern JarmosBand sveper med dig in i dansens virvlar.</p>",
                "en": "<p>The entertainment orchestra JarmosBand sweeps you into the whirlwind of dance.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onc4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63115",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://web.lippu.fi/palautus/"
                    },
                    "description": null,
                    "price": {
                        "fi": "28,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11098,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-28T10:14:03.998662Z",
                    "last_modified_time": "2024-02-28T10:14:03.998684Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745007.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11098/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-28T10:14:03.956582Z",
            "last_modified_time": "2024-04-11T09:12:54.213653Z",
            "date_published": null,
            "start_time": "2024-04-13T15: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,
            "name": {
                "fi": "Visa - Karim Gharbi – TAPAHTUMA ON PERUTTU!"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Baltimex Events"
            },
            "location_extra_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2517B5833773F976BC7C7366F0E830B8/Visa_-_Karim_Gharbi"
            },
            "description": {
                "fi": "<p><b>La 13.4.2024 Visa - Karim Gharbi -esitys Savoy-teatterissa on peruttu.</b></p><p>Jo maksetuista lipuista tulee hakea rahanpalautusta sunnuntaihin 21.4.2024 mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelu- tai toimitusmaksuja.</p><p>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/<br> <br>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br> <br>Tapahtumajärjestäjä Baltimex Events sekä Savoy-teatteri ja Lippupiste pahoittelevat peruuntumisesta aiheutuvaa harmia.</p><p>****</p><p>Arabiankielinen stand up show</p><p>Ikäsuositus: 4+</p><p>Kesto n. 2 h, ei väliaikaa</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63115/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61648",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3551539",
                        "en": "https://www.lippu.fi/eventseries/name-3551539"
                    },
                    "description": null,
                    "price": {
                        "fi": "39,50/56,20 €",
                        "en": "39,50/56,20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6680,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-16T11:14:30.448165Z",
                    "last_modified_time": "2024-02-06T13:23:36.783117Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742118.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6680/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-16T11:14:30.394376Z",
            "last_modified_time": "2024-04-10T14:13:42.287560Z",
            "date_published": null,
            "start_time": "2024-04-22T16: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,
            "name": {
                "fi": "Marcos Ayala Tango Company (Argentiina): Tango in the Shadows",
                "en": "Marcos Ayala Tango Company (Argentiina): Tango in the Shadows"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "General Bass",
                "en": "General Bass"
            },
            "location_extra_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A61EE4D6CCDC167DBE4236787D61486C/Marcos_Ayala_Tango_Company_Argentiina_Tango_in_the_Shadows",
                "en": "http://www.savoyteatteri.fi/en/events/event/A61EE4D6CCDC167DBE4236787D61486C/Marcos_Ayala_Tango_Company_Argentiina_Tango_in_the_Shadows"
            },
            "description": {
                "fi": "<p>MARCOS AYALA<br>Tanssija, koreografi ja ohjaaja.</p><p>Hänen nimensä on jo päässyt tango-skenen suurten miestaiteilijoiden listalle. Hänen esityksensä ovat jälleen kerran heidän maineensa mukaisia.<br>Kansalliset ja kansainväliset palkinnot ovat edistäneet hänen uraansa tanssijana kuten esimerkiksi: \"World Tango Champion\" (Japani, 2006). Kriitikot pitivät myös hänen roolistaan \"Tangon paljastus\"  \"Chauntecleer Tango\"-musikaalissa (Argentiina, 2012–2014 ja Ranska, 2013).</p><p>Koreografisilla teoksillaan hän on voittanut kaksi Latin Ace -palkintoa: yhden hänen urastaan tanssijana ja toisen työstään ”Tango Lovers”, joka myös palkittiin vuoden parhaaksi musiikkiohjelmaksi (New York, USA, 2015). Ayala sai vuonna 2016 Starfish Award -ehdokkuuden hänen tanssiesityksestään \"Tango Buenos Aires\"<br>Vuodesta 2011 lähtien hän on kiertänyt ympäri maailmaa oman ryhmänsä kanssa ja esiintynyt maailman tärkeimmillä näyttämöillä.</p><p>Kuten kriitikotkin ovat todenneet, Marcos Ayala on epäilemättä yksi tämän hetken suurimmista tangoesiintyjistä ja hänen jatkuvat etsinnät innovatiivisten ja määrätietoisten tapojen välillä, toimivat taiteellisena vertailukohteena kansallisella näyttämöllä.</p><p>Ensimmäinen tanssija: PAOLA CAMACHO</p><p>Vuonna 2015 hän liittyi Marcos Ayala Tango -ryhmään.<br>Paola Camachosta tuli hänen taiteensa, taitojensa ja taiteellisten ominaisuuksiensa ansiosta ryhmän ensimmäinen tanssija.</p><p>Tango Company</p><p>Marcos Ayala perusti oman ryhmänsä nimeltä ”Tango” vuonna 2012. Buenos Airesin parhaiden muotivaatteiden suunnittelijoiden huolella valitut ja suunnittelemat vaatteet ovat eksklusiivisesti suunniteltu hänen esityksiään varten. Marcos Ayalan ryhmä on epäilemättä yksi monipuolisimmista ryhmistä, joka kykenee esittämään perinteistä tangoa sekä uskaltaa kehittää myös modernimpaa tangoa.</p><p>Ikäsuositus: 12+</p><p>Kesti n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>Katso video: https://www.dropbox.com/s/kn211blihg31v70/Trailer%20corto%2045%20seg-Shadows.mp4?dl=0</p>",
                "en": "<p>MARCOS AYALA<br>Dancer, Choreographer and Director.</p><p>His name is already part of the great male artists of tango stage. His shows reaffirm their own mark. <br>National and international awards were strutting his career as a dancer, as being named; \"World Champion Tango\" (Japan, 2006) or be proclaimed by critics as \"revelation of Tango\" for his role and performance in the Musical \"Chantecler Tango\" (Argentina, 2012- 2014 and France 2013) Critical among others.<br>While on his choreographic works he won two \"Latin Ace Award\" one for his career and the other for his work; \"Tango Lovers\" which was considered best musical show of the year (New York, USA 2015). also obtained nominations Starfish (2016) Awards as best dance show for his creation \"Tango Buenos Aires\".<br>Since 2011, non-stop tours internationally with his own company, having brought their creations to the most important stages in the world. <br>As noted by critics, no doubt Marcos Ayala is currently one of the great artists of tango, and his constant quest innovative committed and creative gender, which differ substantially from their peers, posesionándolo as artistic reference on the national scene.</p><p>First Dancer Company: PAOLA CAMACHO</p><p>In 2015 she joined the Marcos Ayala Tango Company.<br>Paola Camacho became, through her art, technique, hertrionics and artistic quality, the company's First Dancer.</p><p>The Tango Company</p><p>Marcos Ayala created his Tango Company in 2012.<br>With a display of wardrobe carefully selected and designed by the best fashionistas of Buenos Aires, illumination created exclusively for each one of his spectacles and a panel of 12 artists on scene possessing overwhelming energy, without a doubt Marcos Ayala’s company marks a before and after in the history of tango, being one of the most versatile companies, able to show the tango of yesterday and daring to revolutionize the tango of today.</p><p>Age limit: 12+</p><p>Duration about 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>Watch the video: https://www.dropbox.com/s/kn211blihg31v70/Trailer%20corto%2045%20seg-Shadows.mp4?dl=0</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61648/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4onle",
            "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:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-10T13:49:42.480951Z",
            "last_modified_time": "2024-04-10T13:49:42.481006Z",
            "date_published": "2024-04-10T13:34:00Z",
            "start_time": "2024-05-14T14:30:00Z",
            "end_time": "2024-05-14T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Samanarvoinen elämäni -näyttelyn avajaiset ja Bangladesh-ilta ",
                "sv": "Invigningen av utställningen \"Equal Life\" och Bangladesh-kvällen",
                "en": "The opening of the \"Equal Life\" exhibition and the Bangladesh evening"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Estradi",
                "sv": "Estradi",
                "en": "Estradi"
            },
            "short_description": {
                "fi": "Tutustumme GMB Akashin koskettaviin kuviin ja kuvissa olevien henkilöiden tarinoihin. ",
                "sv": "Vi lär känna GMB Akashis gripande bilder och berättelserna om personerna på bilderna.",
                "en": "We get to know GMB Akashi's touching pictures and the stories of the people in the pictures."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa tutustumaan bangladeshilaiseen arkeen ja siirtotyöläisen haasteisiin. Tutustumme GMB Akashin koskettaviin kuviin ja kuvissa olevien henkilöiden tarinoihin. Kuulemme myös terveisiä Caritaksen kehitysyhteistyökohteesta. Siinä ehkäistään ihmisiä joutumasta ihmiskaupan uhreiksi ja tuetaan uhreiksi jo joutuneita.<br>Samanarvoinen elämäni -näyttely esittelee lähes kaksikymmentä Akashin valokuvaa, joihin liittyy tarinoita yhteiskunnan reunamilla elävistä ihmisistä. Se on avoinna Entressen kirjastossa 7.–25.5.2024.<br>GMB Akash on ikuistanut yhteiskunnan marginaalissa elävien ihmisten elämää jo yli 20 vuoden ajan. Näyttelyssä pääset tutustumaan koululaisiin, lapsityöläisiin, vanhuksiin ja kehitysvammaisiin kuvien ja tarinoiden välityksellä. Akash pyrkii luomaan syvän yhteyden ja luottamuksen kuvattaviinsa ennen valokuvien ottamista, mikä tekee hänen kuvistaan poikkeuksellisen inhimillisiä ja vaikuttavia.<br></p>",
                "sv": "<p>Välkommen att lära känna Bangladeshs vardag och utmaningarna för en migrantarbetare. Vi lär känna GMB Akashis gripande bilder och berättelserna om personerna på bilderna. Vi hör också hälsningar från Caritas mål för utvecklingssamarbete. Den hindrar människor från att bli offer för människohandel och stöder dem som redan har blivit offer.<br>My Equal Life-utställningen presenterar nästan tjugo fotografier av Akash, som åtföljs av berättelser om människor som lever i samhällets utkanter. Det är öppet på Entresse-biblioteket från 7 till 25 maj 2024.<br>GMB Akash har förevigat livet för människor som lever i samhällets utkanter i över 20 år. I utställningen kan du genom bilder och berättelser lära känna skolbarn, barnarbetare, äldre och personer med utvecklingsstörning. Akash strävar efter att skapa en djup koppling och förtroende med sina motiv innan han tar fotografierna, vilket gör hans bilder exceptionellt mänskliga och rörande.</p>",
                "en": "<p>Welcome to get to know Bangladeshi everyday life and the challenges of a migrant worker. We get to know GMB Akashi's touching pictures and the stories of the people in the pictures. We also hear greetings from Caritas' development cooperation target. It prevents people from becoming victims of human trafficking and supports those who have already become victims.<br>My Equal Life exhibition presents almost twenty photographs of Akash, which are accompanied by stories of people living on the fringes of society. It is open at the Entresse library from 7 to 25 May 2024.<br>GMB Akash has been immortalizing the lives of people living on the margins of society for over 20 years. In the exhibition, you can get to know schoolchildren, child laborers, the elderly and people with developmental disabilities through pictures and stories. Akash strives to create a deep connection and trust with his subjects before taking the photographs, which makes his images exceptionally human and moving.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onle/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:aghmpviicy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:22/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:9/?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:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "kultus:6",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:56/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:58/?format=api"
                }
            ],
            "created_time": "2024-04-10T11:46:51.047621Z",
            "last_modified_time": "2024-04-10T11:48:45.643024Z",
            "date_published": null,
            "start_time": "2024-04-12T09:12:00Z",
            "end_time": "2024-04-12T13:16:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2024-04-10T14:50:00+03:00",
            "enrolment_end_time": "2024-04-12T15:15:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Testijonotustapahtuma 2024-04-10",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Testijonotustapahtuma 2024-04-10",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "https://www.example.org/testikuva/",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Testijonotustapahtuma 2024-04-10</p>\n",
                "sv": "",
                "en": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aghmpviicy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4ooeu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onsm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onwa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onzy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4on5e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ooba/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150337,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-12T12:14:26.890553Z",
                    "last_modified_time": "2024-03-12T12:14:26.890574Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/caee3c5ee9e7890bf880a407bccd54afdc5d12a711a859e47680b7cc923cad7c.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on venytteleviä senioreita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150337/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-10T11:20:32.616600Z",
            "last_modified_time": "2024-04-10T11:20:32.616626Z",
            "date_published": null,
            "start_time": "2024-05-14T07:00:00Z",
            "end_time": "2024-06-18T07:45: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,
            "name": {
                "fi": "Tuolijumppa (kesäkausi)"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Espoon kaupungin liikuntapalvelut "
            },
            "location_extra_info": {
                "fi": "Stage tai VOX (lasten- ja nuortentila) "
            },
            "short_description": {
                "fi": "Tiistaisin Espoon liikuntapalveluiden ohjaamaa tuolijumppaa kirjastolla klo 10-10.45 "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tiistaisin Espoon liikuntapalveluiden ohjaamaa tuolijumppaa kirjastolla klo 10-10.45 (ei ennakkoilmoittautumista).</p><p>Tuolijumpan kesäkausi</p><p>tiistai 7.5. ei tuolijumppaa kirjastolla <br>(liikuntapalvelut pitävät ulkokuntosalikiertuetta)</p><p>14.5.2024 kirjaston Stagella<br>10.00-10.45 Tuolijumppa</p><p>21.5.2024 kirjaston Stagella<br>10.00-10.45 Tuolijumppa</p><p>28.5.2024 kirjaston lasten- ja nuortentila VOX <br>10.00-10.45 Tuolijumppa</p><p>4.6.2024 kirjaston lasten- ja nuortentila VOX<br>10.00-10.45 Tuolijumppa</p><p>11.6.2024 kirjaston Stagella<br>10.00-10.45 Tuolijumppa</p><p>18.6.2024 kirjaston Stagella<br>10.00-10.45 Tuolijumppa<br></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ooeu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oozu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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:p3917/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ooiq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oonm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oori/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oov4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4pwtq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4pwxm/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T13:25:31.367836Z",
            "last_modified_time": "2024-04-10T10:42:02.488604Z",
            "date_published": null,
            "start_time": "2024-03-28T14:30:00Z",
            "end_time": "2024-05-09T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Flamencokitaran alkeisjatkokurssi",
                "en": "Flamenco Guitar Course"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "soittohuone",
                "en": "music room"
            },
            "short_description": {
                "fi": "Flamencokitaran alkeisjatkokurssi Iso Omenan kirjastossa torstaisin. Olisi hienoa, jos voisit tuoda oman kitarasi. Osallistuminen on maksutonta.",
                "en": "Early Intermediate Flamenco Guitar Course at Iso Omena Library in Spring 2024. The course will be held in English and Finnish. Course is free from of charge. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Flamenco kitaran alkeisjatkokurssi Iso Omenan kirjastossa torstaisin.<br>Olisi hienoa, jos voisit tuoda oman kitarasi, mutta jos et ole vielä ostanut kitaraa, ei hätää! Kirjastossa on joitakin kitaroita, joita voi lainata Helmet-kirjastokortilla. Kurssi pidetään suomeksi ja englanniksi. </p><p>Ennakkoilmoittautuminen kurssille. Osallistuminen on maksutonta. </p><p>Ennakkoilmoittautuminen osoitteessa: https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Tapahtumat/Flamenco_kitarakurssi(282638)</p><p>21.3 Soittohuone klo 17.00-18.00.<br>28.3 Soittohuone klo 16.30-17.30.<br>4.4 Soittohuone klo 17.00-18.00.<br>11.4 Soittohuone klo 17.00-18.00. (PERUUTETTU 11.4)<br>18.4 Soittohuone klo 17.00-18.00.<br>25.4 Soittohuone klo 17.00-18.00.<br>2.5 Soittohuone klo 17.00-18.00.<br>9.5 Soittohuone klo 16.30-17.30.</p><p><br>Session 1: Introduction to Flamenco Basics<br> - Overview of Flamenco: Origins and cultural context<br> - Introduction to Flamenco guitar techniques: Rasgueado, Golpe, Alzapúa<br> - Basic hand positioning and posture</p><p>Session 2: Palos (Flamenco Styles) - Soleá<br> - Understanding the Soleá rhythm and compás<br> - Basic Soleá chord progressions<br> - Introduction to simple Soleá falsetas (melodic phrases)</p><p>Session 3: Technique Building - Rasgueado Mastery<br> - In-depth study of Rasgueado technique<br> - Practice exercises to improve Rasgueado speed and control<br> - Applying Rasgueado to simple Soleá patterns</p><p>Session 4: Introduction to Compás (Rhythm) - Bulerías<br> - Exploring the Bulerías rhythm and compás<br> - Basic Bulerías chord progressions<br> - Simple Bulerías falsetas and improvisation</p><p>Session 5: Melodic Development - Alegrias<br> - Introduction to the Alegrias style<br> - Alegrias compás and chord progressions<br> - Learning a basic Alegrias falseta and variations</p><p>Session 6: Rhythmic Variety - Tangos<br> - Understanding Tangos rhythm and compás<br> - Basic Tangos chord progressions<br> - Tangos falsetas and rhythmic variations</p><p>Session 7: Technique Refinement - Golpe and Alzapúa<br> - In-depth study of Golpe and Alzapúa techniques<br> - Exercises to enhance Golpe and Alzapúa precision<br> - Applying Golpe and Alzapúa to various palos</p><p>Session 8: Putting it All Together - Performance Preparation<br> - Review of previously learned palos and techniques<br> - Integration of different techniques into a mini-performance piece<br>- Tips on stage presence and connecting with the audience</p><p>#kitara #musiikki #kurssi #musiikkiryhmä</p>",
                "en": "<p>Early Intermediate Flamenco Guitar Course at Iso Omena Library in Spring 2024. It would be great if you could bring your own guitar, but if you haven't bought one yet, don't worry! There are some guitars in the Library that can be borrowed with your Helmet Library card. The course will be held in English and Finnish.</p><p>Pre-registration is required for a maximum of 10 people and the course is free from of charge.</p><p>Pre-registration:  https://www.helmet.fi/en-US/Events_and_tips/Events/Events/Flamenco_Guitar_Course(282645)</p><p>21.3 Music room at 5pm to 6pm.<br>28.3 Music room at 4.30pm to 5.30pm.<br>4.4 Music room at 5pm to 6pm.<br>11.4 Music room at 5pm to 6pm.<br>18.4 Music room at 5pm to 6pm.<br>25.4 Music room at 5pm to 6pm.<br>2.5 Music room at 5pm to 6pm.<br>9.5 Music room at 4.30pm to 5.30pm.</p><p>Session 1: Introduction to Flamenco Basics<br> - Overview of Flamenco: Origins and cultural context<br> - Introduction to Flamenco guitar techniques: Rasgueado, Golpe, Alzapúa<br> - Basic hand positioning and posture</p><p>Session 2: Palos (Flamenco Styles) - Soleá<br> - Understanding the Soleá rhythm and compás<br> - Basic Soleá chord progressions<br> - Introduction to simple Soleá falsetas (melodic phrases)</p><p>Session 3: Technique Building - Rasgueado Mastery<br> - In-depth study of Rasgueado technique<br> - Practice exercises to improve Rasgueado speed and control<br> - Applying Rasgueado to simple Soleá patterns</p><p>Session 4: Introduction to Compás (Rhythm) - Bulerías<br> - Exploring the Bulerías rhythm and compás<br> - Basic Bulerías chord progressions<br> - Simple Bulerías falsetas and improvisation</p><p>Session 5: Melodic Development - Alegrias<br> - Introduction to the Alegrias style<br> - Alegrias compás and chord progressions<br> - Learning a basic Alegrias falseta and variations</p><p>Session 6: Rhythmic Variety - Tangos<br> - Understanding Tangos rhythm and compás<br> - Basic Tangos chord progressions<br> - Tangos falsetas and rhythmic variations</p><p>Session 7: Technique Refinement - Golpe and Alzapúa<br> - In-depth study of Golpe and Alzapúa techniques<br> - Exercises to enhance Golpe and Alzapúa precision<br> - Applying Golpe and Alzapúa to various palos</p><p>Session 8: Putting it All Together - Performance Preparation<br> - Review of previously learned palos and techniques<br> - Integration of different techniques into a mini-performance piece<br>- Tips on stage presence and connecting with the audience</p><p>#guitar #music #course #playing</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oozu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4opiu",
            "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:p8743/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-10T08:08:40.663165Z",
            "last_modified_time": "2024-04-10T08:08:40.663190Z",
            "date_published": null,
            "start_time": "2024-04-16T15:00:00Z",
            "end_time": "2024-04-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,
            "name": {
                "fi": "Leppävaaran tulevaisuus",
                "sv": "Framtiden för Alberga",
                "en": "The future of Leppävaara"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Suur-Leppävaaran Vihreät"
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "short_description": {
                "fi": "Mikäli olet miettinyt Leppävaaran tulevaisuuteen liittyviä kysymyksiä, tervetuloa 16. huhtikuuta kello 18 Sellon kirjastoon keskustelemaan alueen kehityksestä!",
                "sv": "Om du har funderat på framtiden för Leppävaara, välkommen till Sellobiblioteket den 16 april kl. 18.00 för att diskutera utvecklingen av området!",
                "en": "If you have been wondering about the future of Leppävaara, welcome to Sello Library on 16 April at 18:00 to discuss the development of the area!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Miten valmistelussa oleva yleiskaava vaikuttaa Leppävaaraan? Miten Läkkitorin aluetta kuuluisi kehittää? Miten pidetään huoli asukkaiden viihtyvyydestä kaupunkiradan rakentamisen aikana? </p><p>Mikäli olet miettinyt tällaisia tai muita Leppävaaran tulevaisuuteen liittyviä kysymyksiä, tervetuloa 16. huhtikuuta kello 18 Sellon kirjastoon keskustelemaan alueen kehityksestä! </p><p>Mukana keskustelemassa:</p><p>Tiina Elo - kansanedustaja ja kaupunginhallituksen jäsen<br>Mika Rantala - projektinjohtaja, Espoon kaupunki<br>Arja Salmi - puheenjohtaja, Leppävaara-seura<br></p>",
                "sv": "<p>Om du har funderat på framtiden för Leppävaara, välkommen till Sellobiblioteket den 16 april kl. 18.00 för att diskutera utvecklingen av området! Evenemanget är på finska.</p>",
                "en": "<p>If you have been wondering about the future of Leppävaara, welcome to Sello Library on 16 April at 18:00 to discuss the development of the area! The event is in Finnish.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4opiu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4opua",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-10T07:12:08.948697Z",
            "last_modified_time": "2024-04-10T07:12:08.948723Z",
            "date_published": null,
            "start_time": "2024-04-17T14:00:00Z",
            "end_time": "2024-04-17T16: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,
            "name": {
                "fi": " Musiikkiopisto Tauko - Kevätmatinea Stagella ",
                "sv": " Musiikkiopisto Tauko - Vårmatiné på Stagella",
                "en": " Musiikkiopisto Tauko - Spring Matinee at Stagella"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Rytmimusiikkiopisto Tauko",
                "sv": " Rytmikmusikskolan Tauko",
                "en": "Rhythm music school Tauko"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage "
            },
            "short_description": {
                "fi": " Rytmimusiikkikopisto Taukon oppilaita esiintymässä, tervetuloa kuuntelemaan! ",
                "sv": "Elever från Rytmikmusikskolan Tauko uppträder, välkommen att lyssna! ",
                "en": "Students from Tauko School of Rhythmic Music performing, welcome to listen!"
            },
            "info_url": {
                "fi": "https://tauko.com/",
                "sv": "https://tauko.com/",
                "en": "https://tauko.com/"
            },
            "description": {
                "fi": "<p><br>Kevätmatinea Stagella: Rytmimusiikkikopisto Taukon oppilaita esiintymässä, tervetuloa kuuntelemaan! </p><p>Tiistaina 16.4. klo 17.00 - 19.15 <br>(puhaltajia, viulisteja, kitaristeja, rumpaleita, laulajia ja bändiesityksiä)</p><p>Keskiviikkona 17.4. klo 17.00 - 19.00 <br>(pianisteja, kitaristeja ja laulajia)<br></p>",
                "sv": "<p>Vårmatiné på Stage: Elever från  Rytmikmusikskolan Tauko uppträder, välkomna att lyssna!</p><p>Tisdagen den 16 april kl. 17.00 - 19.15 <br>(blåsare, violinister, gitarrister, trummisar, sångare och bandframträdanden) </p><p>Onsdagen den 17 april kl. 17.00 - 19.00 <br>(pianister, gitarrister och sångare)</p>",
                "en": "<p>Spring Matinee at Stage: Students from Tauko School of Rhythmic Music performing, welcome to listen!</p><p>Tuesday, April 16th, from 17:00 to 19:15 <br>(wind instrumentalists, violinists, guitarists, drummers, singers, and band performances) </p><p>Wednesday, April 17th, from 17:00 to 19:00 <br>(pianists, guitarists, and singers)</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4opua/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4opxy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-10T07:11:35.119123Z",
            "last_modified_time": "2024-04-10T07:11:35.119148Z",
            "date_published": null,
            "start_time": "2024-04-16T14:00:00Z",
            "end_time": "2024-04-16T16:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": " Musiikkiopisto Tauko - Kevätmatinea Stagella ",
                "sv": " Musiikkiopisto Tauko - Vårmatiné på Stagella",
                "en": " Musiikkiopisto Tauko - Spring Matinee at Stagella"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Rytmimusiikkiopisto Tauko",
                "sv": " Rytmikmusikskolan Tauko",
                "en": "Rhythm music school Tauko"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage "
            },
            "short_description": {
                "fi": " Rytmimusiikkikopisto Taukon oppilaita esiintymässä, tervetuloa kuuntelemaan! ",
                "sv": "Elever från Rytmikmusikskolan Tauko uppträder, välkommen att lyssna! ",
                "en": "Students from Tauko School of Rhythmic Music performing, welcome to listen!"
            },
            "info_url": {
                "fi": "https://tauko.com/",
                "sv": "https://tauko.com/",
                "en": "https://tauko.com/"
            },
            "description": {
                "fi": "<p><br>Kevätmatinea Stagella: Rytmimusiikkikopisto Taukon oppilaita esiintymässä, tervetuloa kuuntelemaan! </p><p>Tiistaina 16.4. klo 17.00 - 19.15 <br>(puhaltajia, viulisteja, kitaristeja, rumpaleita, laulajia ja bändiesityksiä)</p><p>Keskiviikkona 17.4. klo 17.00 - 19.00 <br>(pianisteja, kitaristeja ja laulajia)<br></p>",
                "sv": "<p>Vårmatiné på Stage: Elever från  Rytmikmusikskolan Tauko uppträder, välkomna att lyssna!</p><p>Tisdagen den 16 april kl. 17.00 - 19.15 <br>(blåsare, violinister, gitarrister, trummisar, sångare och bandframträdanden) </p><p>Onsdagen den 17 april kl. 17.00 - 19.00 <br>(pianister, gitarrister och sångare)</p>",
                "en": "<p>Spring Matinee at Stage: Students from Tauko School of Rhythmic Music performing, welcome to listen!</p><p>Tuesday, April 16th, from 17:00 to 19:15 <br>(wind instrumentalists, violinists, guitarists, drummers, singers, and band performances) </p><p>Wednesday, April 17th, from 17:00 to 19:00 <br>(pianists, guitarists, and singers)</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4opxy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4op3q",
            "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:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T13:53:12.650646Z",
            "last_modified_time": "2024-04-09T14:46:29.992712Z",
            "date_published": "2024-03-19T23:00:00Z",
            "start_time": "2024-04-11T05:00:00Z",
            "end_time": "2024-04-11T17: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,
            "name": {
                "fi": "Espoon kirjastojen Ympäristökevät",
                "sv": "Esbobibliotekens Miljövår",
                "en": "The Espoo libraries' Environmental Spring"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta.",
                "sv": "Ett intressant och underhållande program om en mer hållbar livsstil.",
                "en": "An interesting and entertaining program about a more sustainable lifestyle. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Toista kertaa toteutettava Espoon kirjastojen Ympäristökevät sisältää taas kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta. Esitysten sisällöistä vastaavat HSY, Omnia, Luontoliitto, Kestävän kehityksen osaamiskeskus, Villa Elfvik sekä Espoon ympäristöyhdistys. Ohjelma sijoittuu viiteen kirjastoon. </p><p><br>Sello </p><p>Energiakiertokävelyt Sellossa to 11.4. klo 12–13.30 ja 16–17.30 Kävelykierroksella esitellään Kauppakeskus Sellon energiatehokkaita ja älykkäitä ratkaisuja, SPARCS-hankkeen innovaatioita sekä kerrotaan, kuinka kiinteistö toimii virtuaalivoimalaitoksena tasapainottaen valtakunnallisen sähköverkon toimintaa. Tutustumme myös suuren kokoluokan konehuoneeseen laitteistoineen, ja halukkaat pääsevät näkemään katon aurinkopaneelikentän lähietäisyydeltä. Ilmoittaudu mukaan https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505 </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttelyssä kerrotaan hulevedestä ja siitä, miten se liittyy Itämeren roskaantumiseen. Omnia esittelee huleveden hyödyntämistä pihoissa ja puutarhoissa. Toinen osa näyttelystä kertoo typpikuormasta, eli kuinka liiallinen proteiinin syönti rehevöittää Itämerta. Näyttely on esillä 24.6. - 15.7. </p><p>Lippulaiva </p><p>Energiakiertokävelyt Lippulaivassa ti 9.4. klo 12–13 ja ke 10.4. klo 16–17. Ilmoittaudu mukaan https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564</p><p>Espoon kaupungin energiailtama ke 10.4. klo 17–19.30. Tule inspiroitumaan ja oppimaan kestävästä energiasta Espoon kaupungin energiailtamaan! Katso lisätiedot ja tarkempi ohjelma https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi</p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 10. - 24.6. </p><p>Entresse </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat Entressen kirjastoon yhteisnäyttelyn. Näyttely on esillä Entressen kirjastossa 8.-29.4. </p><p>Lumoudu kaupunkiluonnosta -näyttely. 8. - 14.4. Järjestää Villa Elfvik.  </p><p>Tunnista pörriäiset. Ti 9.4. klo 17. Esityksen Entressen kirjaston Estradilla järjestää Espoon ympäristöyhdistys. </p><p>Luontoliiton Kevätseuranta ja tutustumista lepakonpönttöihin. Ke 10.4. klo 13-18. </p><p>Hulevesi- ja roskakävely. Ke 10.4. klo 17.00 lähdemme liikkeelle Entressen kirjastosta. Tule mukaan hulevesi- ja roskakävelylle!  Kävelyn kesto on noin 1,5 tuntia. Tapahtuman järjestää HSY yhteistyössä Espoon kaupungin kanssa. </p><p>Iso Omena </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 29.4.-18.5. </p><p>Tapiola </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 20.5. - 10.6. </p>",
                "sv": "<p>Esbobibliotekens Miljövår, som hålls för andra gången, innehåller återigen ett intressant och underhållande program om en mer hållbar livsstil. HRM, Omnia, Luontoliitto, Centrum för hållbar utveckling, Villa Elfvik och Esbo Miljöförening ansvarar för innehållet i presentationerna. Programmet äger rum på fem bibliotek.</p><p>Sello</p><p>Energicykelvandringar i Sello tors 11.4. 12–13:30 och 16–17:30. Rundturen presenterar Sello Shopping Centers energieffektiva och smarta lösningar, innovationerna i SPARCS-projektet, och förklarar hur fastigheten fungerar som ett virtuellt kraftverk som balanserar driften av det nationella elnätet. Vi kommer också att ta en rundtur i det storskaliga maskinrummet med dess utrustning och den som önskar kommer att kunna se solpanelsfältet på taket på nära håll. Anmäl dig här https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HSY och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen berättar om dagvatten och hur det är relaterat till nedskräpningen av Östersjön. Omnia presenterar användningen av dagvatten i gårdar och trädgårdar. Den andra delen av utställningen berättar om kvävebelastningen, det vill säga hur överdriven proteinkonsumtion gör Östersjön frodig. Utställningen visas den 24.6. - 15.7.</p><p>Lippulaiva</p><p>Energicykelvandringar i flaggskeppet tis 9.4. 12–13 och ons 10.4. kl 16–17.  Anmäl dig https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564</p><p>Esbo stads energikväll onsdagen den 10.4. från 17:00 till 19:30. Kom och låt dig inspireras och lär dig om hållbar energi på Esbo stads energikväll! Se mer information och ett mer detaljerat program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HSY och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas 10-24 juni.</p><p>Entresse</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med en gemensam utställning till Entresse bibliotek. Utställningen visas på Entresse bibliotek 8-29 april.</p><p>Bli förtrollad av urban naturutställning. 8. - 14.4. Arrangeras av Villa Elfvik. Utställningen \"Bli förtrollad av urban natur\" visar verk av naturen som du kan använda för att hjälpa naturen att bevara sin prakt. Låt oss tillsammans stoppa naturens förstörelse!</p><p>Identifiera pälsen. Tis 9.4. kl 17. Föreställningen arrangeras av Esbo miljöförening på Entresse biblioteks Estradi. Låt oss lära oss att identifiera humlor och andra insekter som surrar runt blommor.</p><p>Luontoliittos Vårövervakning och bekantskap med fladdermusen. Ons 10.4. från 13:00 till 18:00. </p><p>Dagvatten och sopvandring. Ons 10.4. kl 17:00 går vi från Entresse bibliotek. Följ med till dagvatten och sopvandring! Evenemanget arrangeras av HRM i samarbete med Esbo stad.</p><p>Iso Omena</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas från 29 april till 18 maj.</p><p>Tapiola</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 20.5. - 10.6.</p>",
                "en": "<p>The Espoo libraries' Environmental Spring, which will be held for the second time, again contains an interesting and entertaining program about a more sustainable lifestyle. HSY, Omnia, Luontoliitto, Center for Sustainable Development, Villa Elfvik and the Espoo Environmental Association are responsible for the content of the presentations. The program takes place in five libraries.</p><p>Sello</p><p>Energy cycle walks in Sello Thu 11.4. 12–1:30 p.m. and 4–5:30 p.m. The walking tour presents the energy-efficient and smart solutions of the Sello Shopping Center, the innovations of the SPARCS project, and explains how the property works as a virtual power plant, balancing the operation of the national electricity grid. We will also take a tour of the large-scale machine room with its equipment, and those who wish will be able to see the solar panel field on the roof up close. Sign up https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition tells about stormwater and how it is related to the littering of the Baltic Sea. Omnia presents the use of stormwater in yards and gardens. The second part of the exhibition tells about the nitrogen load, i.e. how excessive protein consumption makes the Baltic Sea lush. The exhibition will be on display on 24.6. - 15.7.</p><p>Entresse</p><p>Exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's educational municipality association Omnia are bringing a joint exhibition to the Entresse library. The exhibition is on display at the Entresse library from 8 to 29 April.</p><p>Be enchanted by urban nature exhibition. 8. - 14.4. Organized by Villa Elfvik. The \"Be enchanted by urban nature\" exhibition presents works of nature that you can use to help the natural world preserve its splendor. Let's stop the destruction of nature together!</p><p>Identify the furries. Tue 9.4. at 5 p.m. The performance is organized by Espoo's environmental association at Entresse library's Estradi. </p><p>The Finnish Nature Association's Kevätseuranta and getting to know the bat roosts Wed 10.4. from 13:00 to 18:00. </p><p>Stormwater and trash walk. Wed 10.4. at 17:00 we leave from Entresse library. Come along to the stormwater and trash walk! The event is organized by HSY in cooperation with the city of Espoo.</p><p>Iso Omena</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 29 April to 18 May.</p><p> Tapiola</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 20.5. - 10.6.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4op3q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63331",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 113437,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-09T14:13:38.913762Z",
                    "last_modified_time": "2024-04-09T14:13:38.913782Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743716.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/113437/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-09T14:13:38.874536Z",
            "last_modified_time": "2024-04-09T14:13:38.995519Z",
            "date_published": null,
            "start_time": "2024-04-17T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kimpassa 99 (K7) – Keskiviikkokino",
                "sv": "Tillsammans99 (F7) – Onsdagsbio",
                "en": "Together 99 (7) – Keskiviikkokino"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Kimpassa 99 on elokuva ajan kulumisesta ja elämän luonteesta, joka koskettaa ja liikuttaa katsojaa huumorillaan, ilollaan ja jopa surullaan.",
                "sv": "Tillsammans 99 är en film som vill beröra och rycka med biopubliken med sin humor, glädje och även sorg. En komedi och en allvarlig berättelse om tidens gång och om hur det är att leva.",
                "en": "Together 99 (Swedish: Tillsammans 99) is a 2023 Swedish-Danish comedy-drama film written and directed by Lukas Moodysson."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/91A39571C802ADF4370894D536E8B857/Kimpassa_99_K7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/91A39571C802ADF4370894D536E8B857/Tillsammans99_F7_",
                "en": "http://www.vuotalo.fi/en/events/event/91A39571C802ADF4370894D536E8B857/Together_99_7_"
            },
            "description": {
                "fi": "<p>Kimpassa 99 on elokuva ajan kulumisesta ja elämän luonteesta, joka koskettaa ja liikuttaa katsojaa huumorillaan, ilollaan ja jopa surullaan.</p><p>Vuonna 1975 Kimpassa-kollektiivi oli suurperhe. 24 vuotta myöhemmin, vuonna 1999 se on kutistunut kovin pieneksi. Jäljellä on enää maailman ystävällisin ihminen Göran ja räsymattoja kutova Klasse.</p><p>Kun Klasse kutsuu salaa kaikki Göranin syntymäpäiväjuhliin, kokoontuvat he taas yhteen yhdeksi illaksi. Mitä heidän elämässään on tapahtunut sitten viime näkemän? Onko elämä kohdellut heitä hyvin vai huonosti? Kenestä tuli kuuluisa kirjailija ja kuka päätyi mielisairalaan? Ovatko 70-luvun unelmat yhä elossa? Kuka muistaa Peterin? Syökö Göran yhä puuroa?</p><p>Ohjaus: Lukas Moodysson<br>Pääosissa: Gustaf Hammarsten, Shanti Roney, Anja Lundqvist, Olle Sarri, Jessica Liedberg, Lisa Lindgren, Cecilia Frode, Lars Frode, Henrik Lundström, Sten Ljunggren, David Dencik, Jonas Karlsson, Julia Heveus, Clara Christiansson Drake.</p><p>Kesto: 1h 55 min<br>Kieli: ruotsi<br>Tekstitys: suomi<br>Ikäraja: K7<br>Vapaa pääsy</p>",
                "sv": "<p>Tillsammans 99 är en film som vill beröra och rycka med biopubliken med sin humor, glädje och även sorg. En komedi och en allvarlig berättelse om tidens gång och om hur det är att leva.</p><p>1975 var kollektivet Tillsammans en storfamilj. 24 år senare, 1999, har det förvandlats till världens minsta. Kvar finns bara Göran, världens snällaste, och Klasse, som väver sina trasmattor. När Klasse i hemlighet bjuder in till Görans födelsedag, återförenas alla för en kväll.</p><p>Vad har hänt i deras liv sen sist? Har det gått bra eller dåligt för dem? Vem blev känd författare och vem hamnade på mentalsjukhus? Lever drömmarna från sjuttiotalet? Vem minns Peter? Äter Göran fortfarande gröt?</p><p>Längd 115 min. <br>Svenskt tal, finsk text. <br>F7<br>Fritt inträde</p>",
                "en": "<p>Together 99 (Swedish: Tillsammans 99) is a 2023 Swedish-Danish comedy-drama film written and directed by Lukas Moodysson.</p><p>A sequel to his 2000 film Together (Tillsammans), the film revisits the commune of Together in 1999 when Göran (Gustaf Hammarsten) and Klasse (Shanti Roney), as the only remaining residents of the community, decide to organize a reunion of their old friends.</p><p>The film entered production in 2022.</p><p>Most of the original actors returned, with the exception of the children, Michael Nyqvist, who passed away in 2017, and Ola Rapace, whose role of Lasse was recast with actor Jonas Karlsson.</p><p>Duration 115 min. <br>Film is in Swedish, subtitles in Finnish. <br>Age limit 7. <br>Free entry.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63331/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63222",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 41713,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-28T08:13:10.190104Z",
                    "last_modified_time": "2024-03-28T08:13:10.190123Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746100.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/41713/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-28T08:13:10.167559Z",
            "last_modified_time": "2024-04-09T12:13:51.758213Z",
            "date_published": null,
            "start_time": "2024-04-26T14: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,
            "name": {
                "fi": "CaisaKallio esittää: Tanssin lukiodiplomit – Caisan ja Kallion lukion yhteinen taidefestivaali"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "CaisaKallio esittää!"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/7A8442D32A80C20F17CEC8C736A22F1C/CaisaKallio_esittaa_Tanssin_lukiodiplomit"
            },
            "description": {
                "fi": "<p>CaisaKallio esittää!</p><p>Tanssin lukiodiplomiin kuuluu kaksi osaa: taiteellinen osuus, jossa opiskelija luo 3-10 min kestävän oman teoksen tai tanssii toisen opiskelijan teoksessa, toinen osa on kirjallinen tutkielma.</p><p>CaisaKalliossa nähdään seuraavien opiskelijoiden taiteelliset osuudet: Emma Aalto, Meeti Assefa, Amelie Bangura, Inkeri Hiltunen, Saara Huuskonen, Enni Hyytiäinen, Lotta Ikäläinen, Ella Jaanu, Pinja Karjalainen, Senni Kuuramaa, Roope Lappalainen, Meeri Lehikoinen, Helmi Linnanen, Venla Majander, Aava Mikkilä, Bigga-Risten Pieski, Salla Piira, Helka Tanskanen, Anniina Taponen, Lotta Tuomikoski ja Krista Viitanen.</p><p>Kesto noin 2h<br>Ole ajoissa, paikkoja on rajoitetusti!</p><p><b>CaisaKallio</b><br>Tarvitsetko piristystä tähän harmaaseen arkeen? Oletko aina unelmoinut pääseväsi kokemaan maailmasi mullistavan taide-elämyksen?</p><p>Nyt on tilaisuutesi sukeltaa taiteen maailmaan nuorten taiteilijoiden johdattelemana. Kallion lukion taiteenopiskelijat herättävät kulttuurikeskus Caisan tilat henkiin mahtavilla esityksillään. Luvassa on musiikkia, puhetaidetta, lyhytelokuvia, sekä tanssia. Tätä et halua missata!</p><p>Kaikkiin CaisaKallio -viikon tapahtumiin on vapaa pääsy, lämpimästi tervetuloa mukaan!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63222/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63256",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 16415,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-20T13:14:07.448604Z",
                    "last_modified_time": "2024-03-20T13:14:07.448621Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746092.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/16415/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-20T13:14:07.415284Z",
            "last_modified_time": "2024-04-09T12:13:50.528582Z",
            "date_published": null,
            "start_time": "2024-04-23T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "CaisaKallio esittää: kosml – Caisan ja Kallion lukion yhteinen taidefestivaali"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "CaisaKallio esittää!"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/36A5DBA840F6C00452B2BCC54894A4DE/CaisaKallio_esittaa_kosml"
            },
            "description": {
                "fi": "<p>CaisaKallio esittää!</p><p>Esitys on <b>Ines Koposen</b> musiikin lukiodiplomityö, itsenäisesti suunniteltu erityyppisistä kappaleista koostuva musiikillinen kokonaisuus.</p><p>Diplomityöt ovat osoituksia tekijänsä erityisestä musiikillisesta harrastuneisuudesta.</p><p>Kesto on n. 40 min.</p><p>Ole ajoissa, paikkoja on rajoitetusti!</p><p><b>CaisaKallio</b><br>Tarvitsetko piristystä tähän harmaaseen arkeen? Oletko aina unelmoinut pääseväsi kokemaan maailmasi mullistavan taide-elämyksen?</p><p>Nyt on tilaisuutesi sukeltaa taiteen maailmaan nuorten taiteilijoiden johdattelemana. Kallion lukion taiteenopiskelijat herättävät kulttuurikeskus Caisan tilat henkiin mahtavilla esityksillään. Luvassa on musiikkia, puhetaidetta, lyhytelokuvia, sekä tanssia. Tätä et halua missata!</p><p>Kaikkiin CaisaKallio -viikon tapahtumiin on vapaa pääsy, lämpimästi tervetuloa mukaan!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63256/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:d33525f9-b329-4c42-a392-d56d993fdbd0",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/04099dd3-86eb-ee11-a203-000d3ad9ea65?readableEventId=MKtest_2632024_saavutettavuusarvioty_Unicus_Oylle4270466986",
                        "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/04099dd3-86eb-ee11-a203-000d3ad9ea65?readableEventId=MKtest_2632024_saavutettavuusarvioty_Unicus_Oylle4270466986"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 112659,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-09T11:18:50.129549Z",
                    "last_modified_time": "2024-04-09T11:18:50.129567Z",
                    "name": "Tämä on kuvatekstiä",
                    "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=d33525f9-b329-4c42-a392-d56d993fdbd0&Timestamp=638470650219838570&Full=true",
                    "cropping": "",
                    "photographer_name": "Farbourg Linssi",
                    "alt_text": "Tämä on kuvan alt-tekstiä",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/112659/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-03-26T15:53:26.447978Z",
            "last_modified_time": "2024-04-09T11:18:53.024794Z",
            "date_published": "2024-03-26T15:09:33Z",
            "start_time": "2024-04-12T09:00:00Z",
            "end_time": "2024-04-12T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 2,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 101,
            "minimum_attendee_capacity": 100,
            "enrolment_start_time": "2024-03-27T08:00:00+02:00",
            "enrolment_end_time": "2024-04-10T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "MKtest 12.04.2024 saavutettavuusarviotyö Unicus Oy:lle",
                "sv": "MKtest 26.3.2024 saavutettavuusarviotyö Unicus Oy:lle SV"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Business Helsinki",
                "sv": "Business Helsingfors"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "MKtest 26.3.2024 saavutettavuusarviotyö Unicus Oy:lle SHORT DESC",
                "sv": "MKtest 26.3.2024 saavutettavuusarviotyö Unicus Oy:lle SHORT DESC SV"
            },
            "info_url": null,
            "description": {
                "fi": "<div>\n<div>MKtest 26.3.2024 saavutettavuusarviotyö Unicus Oy:lle LONG DESCK</div>\n\n<div>- Muutettu ajastusta 5.4. &gt; 12.4. MK</div>\n</div>",
                "sv": "<div><div>MKtest 26.3.2024 saavutettavuusarviotyö Unicus Oy:lle LONG DESCK SV</div></div>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:d33525f9-b329-4c42-a392-d56d993fdbd0/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4op7i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-21T11:39:11.113135Z",
            "last_modified_time": "2024-04-09T10:10:36.358286Z",
            "date_published": null,
            "start_time": "2024-05-08T14:00:00Z",
            "end_time": "2024-05-08T16: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,
            "name": {
                "fi": "Hapanjuurileipäpaja",
                "sv": "Workshop om surdeg ",
                "en": "Sourdough workshop"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Yhteisökeittiö Kapyysi",
                "sv": "Gemensamt kök Kapyysi",
                "en": "Community kitchen Kapyysi"
            },
            "short_description": {
                "fi": "Pajan aikana käydään läpi teoriaa, harjoitellaan leivän muotoilua ja lopuksi valmistetaan leipätaikina, jonka asiakas saa viedä kotiin paistettavaksi. ",
                "sv": "Under workshopen kommer du att lära dig om teorin, hur man formar brödet och slutligen gör vi en deg att ta med hem för att baka. ",
                "en": "During the workshop you will learn about the theory, how to shaping the bread and finally we make a dough to take home to bake. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa tutustumaan hapanjuuren saloihin. Pajan aikana käydään läpi teoriaa, harjoitellaan leivän muotoilua ja lopuksi valmistetaan leipätaikina, jonka asiakas saa viedä kotiin paistettavaksi. </p><p>Ilmoittaudu mukaan alla olevasta ennakkoilmoittautumislinkistä. Pajaan mahtuu 15 henkeä. Paja on suunnattu aikuisille ja sopii kaiken tasoisille kotikokeille. </p><p>Ilmoittautumislinkki: https://link.webropol.com/s/Hapanjuurileipakurssi</p>",
                "sv": "<p>Välkommen att upptäcka hemligheterna med surdegsbakning. Under workshopen kommer du att lära dig om teorin, hur man formar brödet och slutligen gör vi en deg att ta med hem för att baka. </p><p>Vänligen registrera dig via länken för förhandsregistrering nedan. Det finns kapacitet för 15 personer.  Workshopen riktar sig till vuxna och är lämplig för hemmakockar på alla nivåer.</p><p>Länk till registrering:<br>https://link.webropol.com/s/Hapanjuurileipakurssi</p>",
                "en": "<p>Welcome to discover the secrets of sourdough baking. During the workshop you will learn about the theory, how to shaping the bread and finally we make a dough to take home to bake. </p><p>Please register using the pre-registration link below.  There is capacity for 15 people. The workshop is aimed at adults and is suitable for home cooks of all levels.</p><p>Registration link:<br>https://link.webropol.com/s/Hapanjuurileipakurssi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4op7i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oqc4",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ozou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ozry/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ozuy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ozya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oz3i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o3fm/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150344,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-09T08:14:38.377739Z",
                    "last_modified_time": "2024-04-09T08:14:38.377774Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/paja_linked.png",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Kaksi lasta leikkaa saksilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150344/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-03-13T13:26:00.981100Z",
            "last_modified_time": "2024-04-09T08:18:55.655571Z",
            "date_published": "2024-03-19T23:00:00Z",
            "start_time": "2024-04-02T13:00:00Z",
            "end_time": "2024-05-28T15: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,
            "name": {
                "fi": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "short_description": {
                "fi": "Tervetuloa perhepajaan oppimaan virkkausta ja ompelua sekä tutustumaan kirjaston tarjoamiin välineisiin",
                "sv": "Välkommen till en familjeworkshop för att lära dig virka och sy och utforska de verktyg som biblioteket har att erbjuda",
                "en": "Welcome to Workshop for learning crochet, sewing, and to know about our library free offers"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa perhepajaan oppimaan virkkausta ja ompelua sekä tutustumaan kirjaston tarjoamiin välineisiin kuten saumuri, vinyylileikkuri ja 3D-tulostin.</p><p>Paja on ilmainen. Puhumme suomea, arabia ja englantia. Voit ottaa myös lapsesi mukaan. </p>",
                "sv": "<p>Välkommen till en familjeworkshop för att lära dig virka och sy och utforska de verktyg som biblioteket har att erbjuda, såsom en symaskin, vinylskärare och 3D-skrivare.</p><p>Workshopen är kostnadsfri. Vi talar finska, arabiska och engelska. Du kan också ta med dig ditt barn. </p>",
                "en": "<p>Welcome to Workshop for learning crochet, sewing, and to know about our library free offers like saumuri sewing machine, vinyl cutter, and 3D-printers. The workshop language is in Finnish, English and Arabic. It is for free and you could join with your children.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oqc4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oqgy",
            "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:p8743/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-09T08:11:35.145822Z",
            "last_modified_time": "2024-04-09T08:11:35.145849Z",
            "date_published": null,
            "start_time": "2024-04-25T15:00:00Z",
            "end_time": "2024-04-25T16: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,
            "name": {
                "fi": "Stoppi ylikulutukselle – Mikä on EU:n rooli? Entä kuluttajan?",
                "sv": "Stoppa överkonsumtion - Vilken roll spelar EU? Hur är det med konsumenterna?",
                "en": "Stop overconsumption - What role for the EU? What about the consumer?"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "short_description": {
                "fi": "Tervetuloa kuuntelemaan ja keskustelemaan näistä kysymyksistä yhdessä mainion asiantuntijajoukon kanssa. Keskustelua juontaa Vihreiden kansanedustaja Tiina Elo.",
                "sv": "Välkommen att lyssna och diskutera dessa frågor tillsammans med en framstående expertpanel. Debatten kommer att modereras av Tiina Elo.",
                "en": "Welcome to listen and discuss these issues together with a distinguished panel of experts. The debate will be moderated by Green MEP Tiina Elo."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Olemme täysin riippuvaisia luonnosta. Jotta maapallo säilyy elinkelpoisena, on luonnon reunaehdot otettava kaiken toiminnan lähtökohdaksi. </p><p>Ilmastokriisin ja luontokadon ratkaiseminen edellyttää luonnonvarojen käytön merkittävää vähentämistä. Se tarkoittaa muutoksia siihen, mitä tuotamme, miten elämme ja mitä kaupasta ostamme.</p><p>Esimerkiksi vaatteita tuotetaan ja ostetaan merkittävästi enemmän kuin aiempina vuosikymmeninä, ja samalla niiden käyttöikä on huomattavasti lyhentynyt. Tällä hetkellä vaate- ja tekstiiliteollisuus tuottaa noin 4–10 prosenttia globaaleista ilmastopäästöistä, ja vuosittain maailmassa syntyy 92 miljoonaa tonnia tekstiilijätettä.</p><p>Miten voisimme kääntää luononnvarojen ylikulutuksen suunnan? Yksi ratkaisu siihen on kiertotalous, jossa ei enää tuoteta ja kuluteta jatkuvasti lisää, vaan hyödynnetään jo käytössä olevien tuotteiden arvo mahdollisimman pitkään.</p><p>Mikä on EU:n rooli luontokadon pysäyttäjänä, kiertotalouden edistäjänä ja kestävän kulutuksen ajurina? Entä kuluttajan?</p><p>Tervetuloa kuuntelemaan ja keskustelemaan näistä kysymyksistä yhdessä mainion asiantuntijajoukon kanssa. Keskustelua juontaa Vihreiden kansanedustaja Tiina Elo.</p><p>Ohjelma:</p><p>18:00 Tilaisuuden avaus, kansanedustaja Tiina Elo<br>18:05 Alustuspuheenvuoro<br>Projektijohtaja Kari Herlevi, Sitra<br>18:15 Paneelikeskustelu: Miten pysäytämme ilmastoa kuumentavan ja luontokatoa aiheuttavan ylikulutuksen?<br>                          Kari Herlevi, projektijohtja, Sitra<br>                          Timo Huhtamäki, toimitusjohtaja, Emmy Clothing <br>                          Company Oy<br>                          Maria Ohisalo, Vihreiden kansanedustaja<br>                          Aku Varamäki, yrittäjä ja kirjailija<br>19:00 Tilaisuus päättyy</p><p></p>",
                "sv": "<p>Välkommen att lyssna och diskutera dessa frågor tillsammans med en framstående expertpanel. Debatten kommer att modereras av Tiina Elo, EU-parlamentariker för de gröna. Evenemanget är på finska.</p>",
                "en": "<p>Welcome to listen and discuss these issues together with a distinguished panel of experts. The debate will be moderated by Green MEP Tiina Elo. Event is in Finnish.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oqgy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oqki",
            "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:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-09T07:04:56.486749Z",
            "last_modified_time": "2024-04-09T07:04:56.486774Z",
            "date_published": "2024-04-09T06:58:00Z",
            "start_time": "2024-04-19T15:30:00Z",
            "end_time": "2024-04-19T16: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,
            "name": {
                "fi": "Harppumatinea",
                "sv": "Harpmatiné",
                "en": "Harp Matinee"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Espoon musiikkiopisto (EMO)",
                "sv": "Espoon musiikkiopisto (EMO)",
                "en": "Espoo Music Institute (EMO)"
            },
            "location_extra_info": {
                "fi": "Kaija",
                "sv": "Kaija",
                "en": "Kaija"
            },
            "short_description": {
                "fi": "Meeri Suila ja Nanna Ahonen Espoon musiikkiopistosta esiintyvät.",
                "sv": "Meeri Suila och Nanna Ahonen från Esbo musikinstitut uppträder.",
                "en": "Meeri Suila and Nanna Ahonen from the Espoo Music Institute perform."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Meeri Suila ja Nanna Ahonen Espoon musiikkiopistosta esiintyvät.</p>",
                "sv": "<p>Meeri Suila och Nanna Ahonen från Espoon musiikkiopisto uppträder.</p>",
                "en": "<p>Meeri Suila and Nanna Ahonen from the Espoo Music Institute perform.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oqki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:89a353c2-d24b-4c44-a988-37a3e16e16b5",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_youtube",
                    "link": "https://youtu.be/5TUtRRfAOMs?si=L8GmERT8DpNKcbBj",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=MKtest_Lsntapahtuma_LE47_JA_Sanna_Moisan_validoitavaksi382444833",
                        "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=MKtest_Lsntapahtuma_LE47_JA_Sanna_Moisan_validoitavaksi382444833",
                        "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=MKtest_Lsntapahtuma_LE47_JA_Sanna_Moisan_validoitavaksi382444833",
                        "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=MKtest_Lsntapahtuma_LE47_JA_Sanna_Moisan_validoitavaksi382444833",
                        "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=MKtest_Lsntapahtuma_LE47_JA_Sanna_Moisan_validoitavaksi382444833",
                        "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=MKtest_Lsntapahtuma_LE47_JA_Sanna_Moisan_validoitavaksi382444833"
                    },
                    "description": {
                        "fi": "Todella edullinen hinta",
                        "sv": "Todella edullinen hinta",
                        "en": "Todella edullinen hinta",
                        "ru": "Todella edullinen hinta",
                        "zh_hans": "Todella edullinen hinta",
                        "ar": "Todella edullinen hinta"
                    },
                    "price": {
                        "fi": "99,99",
                        "sv": "99,99",
                        "en": "99,99",
                        "ru": "99,99",
                        "zh_hans": "99,99",
                        "ar": "99,99"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 111386,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-09T06:05:35.253076Z",
                    "last_modified_time": "2024-04-09T06:05:35.253091Z",
                    "name": "Tämä on kuvan kuvatekstiä",
                    "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=89a353c2-d24b-4c44-a988-37a3e16e16b5&Timestamp=638482388073726509&Full=true",
                    "cropping": "",
                    "photographer_name": "Nils Linssi",
                    "alt_text": "Tämä on kuvan alt-tekstiä",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/111386/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2024-04-09T05:55:50.842393Z",
            "last_modified_time": "2024-04-09T06:05:38.036190Z",
            "date_published": "2024-04-09T05:48:20Z",
            "start_time": "2024-04-09T06:00:00Z",
            "end_time": "2024-04-09T06:08:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 16,
            "audience_max_age": 22,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": 10,
            "enrolment_start_time": "2024-04-04T08:00:00+03:00",
            "enrolment_end_time": "2024-04-09T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "MKtest Läsnätapahtuma LE48_DatetimeTest",
                "sv": "MKtest Läsnätapahtuma LE48_DatetimeTest SWE",
                "en": "MKtest Läsnätapahtuma LE48_DatetimeTest ENG",
                "ru": "MKtest Läsnätapahtuma LE48_DatetimeTest RUS",
                "zh_hans": "MKtest Läsnätapahtuma LE48_DatetimeTest CHN",
                "ar": "MKtest Läsnätapahtuma LE48_DatetimeTest ARA"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "suomenkielinen",
                "sv": "ruotsinkielinen",
                "en": "britannialainen",
                "ru": "venäläinen",
                "zh_hans": "kiinalainen",
                "ar": "arabialainen"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "MKtest Läsnätapahtuma LE48_DatetimeTest SHORT DESC FIN",
                "sv": "MKtest Läsnätapahtuma LE48_DatetimeTest SHORT DESC SWE",
                "en": "MKtest Läsnätapahtuma LE48_DatetimeTest SHORT DESC ENG",
                "ru": "MKtest Läsnätapahtuma LE48_DatetimeTest SHORT DESC RUS",
                "zh_hans": "MKtest Läsnätapahtuma LE48_DatetimeTest SHORT DESC CHN",
                "ar": "MKtest Läsnätapahtuma LE48_DatetimeTest SHORT DESC ARA"
            },
            "info_url": null,
            "description": {
                "fi": "<div>\n<div>MKtest Läsnätapahtuma LE48_DatetimeTest LONG DESC FIN</div>\n</div>",
                "sv": "<div>\n<div>MKtest Läsnätapahtuma LE48_DatetimeTest LONG DESC SWE</div>\n</div>",
                "en": "<div>\n<div>MKtest Läsnätapahtuma LE48_DatetimeTest LONG DESC ENG</div>\n</div>",
                "ru": "<div>\n<div>MKtest Läsnätapahtuma LE48_DatetimeTest LONG DESC RUS</div>\n</div>",
                "zh_hans": "<div>\n<div>MKtest Läsnätapahtuma LE48_DatetimeTest LONG DESC CHN</div>\n</div>",
                "ar": "<div><div>MKtest Läsnätapahtuma LE48_DatetimeTest LONG DESC ARA</div></div>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:89a353c2-d24b-4c44-a988-37a3e16e16b5/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}